Merge branch 'master' into 'master'

Prevent the symptoms of Issue #33

See merge request VanessaE/pipeworks!31
This commit is contained in:
Vanessa Dannenberg 2020-12-18 21:44:11 +00:00
commit 8322f256c5
1 changed files with 2 additions and 0 deletions

View File

@ -340,6 +340,8 @@ local move_entities_globalstep_part2 = function(dtime)
entity._velocity = master_entity:get_velocity()
entity._acceleration = master_entity:get_acceleration()
else
entity._velocity = entity._velocity or vector.new(0,0,0)
entity._acceleration = entity._acceleration or vector.new(0,0,0)
entity._pos = vector.add(vector.add(
entity._pos,
vector.multiply(entity._velocity, dtime)),