Rename to OMA-LANDER in title bar and title screen. Retune lander physics for a gentler, original-feel experience (lower gravity, slower rotation, reduced fuel burn, speed cap, top-of-world clamp) and fix thrust vx sign. Rework camera to frame lander and terrain together with a smoother altitude-based zoom. Simplify terrain: pads at fixed zones, cleaner generation loop, zoom-invariant multiplier labels. Stronger abort burst (kills horizontal speed, halves downward vy). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
11 lines
294 B
Lua
11 lines
294 B
Lua
function love.conf(t)
|
|
t.window.title = "OMA-LANDER"
|
|
t.window.width = 1024
|
|
t.window.height = 768
|
|
t.window.resizable = true
|
|
t.window.vsync = 1
|
|
t.window.fullscreen = false
|
|
t.window.fullscreentype = "desktop"
|
|
t.window.minwidth = 512
|
|
t.window.minheight = 384
|
|
end
|