ExperimentBaseExtracts.js 458 B

1234567891011121314151617181920212223
  1. import { buildConfig } from '@/functions'
  2. // This will apply to all the scenes
  3. export const defaultConfig = {
  4. // showHoverBorder: false,
  5. // extractConfig: {
  6. // x: 4,
  7. // y: 6
  8. // }
  9. }
  10. // This will overwrite the config for the given scene
  11. export const scenesConfig = {
  12. // bathroom: {
  13. // showHoverBorder: false,
  14. // extractConfig: {
  15. // x: 4,
  16. // y: 10
  17. // }
  18. // }
  19. }
  20. export default buildConfig(defaultConfig, scenesConfig)