delete unnecessary print

This commit is contained in:
fnicon 2026-03-22 15:00:47 +09:00
parent 805a1d1a23
commit afd7edd93d

View File

@ -85,7 +85,6 @@ local function forward_velocity(dt, force, mass, velocity, max_speed, min_speed,
new_velocity = 0
end
new_velocity = vm.clamp(new_velocity, min_speed, max_speed)
print(new_velocity)
return new_velocity
end