| 12345678910111213141516171819202122232425262728 |
- // Lua script to launch on boot
- boot_script = "core/game/boot"
- // Package to load on boot
- boot_package = "boot"
- window_title = "01-physics"
- // Linux-only configs
- linux = {
- renderer = {
- resolution = [ 1280 720 ]
- vsync = true
- }
- }
- // Windows-only configs
- windows = {
- renderer = {
- resolution = [ 1280 720 ]
- vsync = true
- }
- }
- physics = {
- step_frequency = 240
- max_substeps = 4
- }
|