Limit entity speed to 250m/s.

Let's just call it "terminal" velocity.
This commit is contained in:
Auke Kok 2016-03-29 23:09:47 -07:00 committed by paramat
parent e6cef57661
commit 8114c3dbab
1 changed files with 6 additions and 0 deletions

View File

@ -120,6 +120,12 @@ local function calc_velocity(pos1, pos2, old_vel, power)
-- Add old velocity
vel = vector.add(vel, old_vel)
-- Limit to terminal velocity
dist = vector.length(vel)
if dist > 250 then
vel = vector.divide(vel, dist / 250)
end
return vel
end