| 1234567891011121314151617181920212223 |
- // 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
- }
- }
|