fix magic number

This commit is contained in:
fnicon 2026-03-21 11:36:46 +09:00
parent 30168029d2
commit eb9374ad10

View File

@ -234,11 +234,11 @@ end
local magic_n = {
tire_c = 1.0,
floor_c = 1.5,
scale_x = 100000.0,
scale_y = 100000.0,
scale_x = 1000.0,
scale_y = 1000.0,
centrifugal_r = 1.0,
magic_slowdown = 10.0,
magic_boost = 5000.0
magic_boost = 1000.0
}
function system:update(dt)