boot.config 391 B

12345678910111213141516171819202122232425262728
  1. // Lua script to launch on boot
  2. boot_script = "core/game/boot"
  3. // Package to load on boot
  4. boot_package = "boot"
  5. window_title = "01-physics"
  6. // Linux-only configs
  7. linux = {
  8. renderer = {
  9. resolution = [ 1280 720 ]
  10. vsync = true
  11. }
  12. }
  13. // Windows-only configs
  14. windows = {
  15. renderer = {
  16. resolution = [ 1280 720 ]
  17. vsync = true
  18. }
  19. }
  20. physics = {
  21. step_frequency = 240
  22. max_substeps = 4
  23. }