ExperimentBase.js 255 B

123456789
  1. import { buildConfig } from '@/functions'
  2. // This will apply to all the scenes
  3. export const defaultConfig = {}
  4. // This will overwrite the config for the given scene
  5. export const scenesConfig = {}
  6. export default buildConfig(defaultConfig, scenesConfig)