app.config.toml 633 B

123456789101112131415161718192021222324252627282930313233343536
  1. [window]
  2. title = "GamePlay - Editor"
  3. width = 1920
  4. height = 1080
  5. fullscreen = false
  6. hints = "NONE"
  7. [logging]
  8. level = "INFO"
  9. file = "gameplay.log"
  10. [[resource.alias]]
  11. name = "fonts"
  12. path = "@app.dir/../../../_deps/imgui/misc/fonts"
  13. [[resource.alias]]
  14. name = "icons"
  15. path = "@data/icons"
  16. [[resource.alias]]
  17. name = "images"
  18. path = "@data/images"
  19. [[resource.alias]]
  20. name = "shaders"
  21. path = "@data/shaders"
  22. [[resource.alias]]
  23. name = "scenes"
  24. path = "@data/scenes"
  25. [input]
  26. gamepad_mappings_db = "@app.dir/../../../config/gamecontrollerdb.txt"
  27. [graphics]
  28. validation = false
  29. minImageCount = 2
  30. [ui]
  31. defaultFont = "@fonts/Roboto-Medium.ttf"