ExperimentBase.js 327 B

123456789101112131415
  1. import { buildConfig } from '@/functions'
  2. // This will apply to all the scenes
  3. export const defaultConfig = {
  4. // lockConfig: true
  5. }
  6. // This will overwrite the config for the given scene
  7. export const scenesConfig = {
  8. // bathroom: {
  9. // lockConfig: true
  10. // }
  11. }
  12. export default buildConfig(defaultConfig, scenesConfig)