config.js 459 B

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