Fix forwards/backwars tilt in all directions

This commit is contained in:
teknomunk 2024-03-13 13:07:58 +00:00
parent fd6f4ee80e
commit 1618693726

View File

@ -111,6 +111,9 @@ local function update_cart_orientation(self,staticdata)
if ( staticdata.rot_adjust or 0 ) < 0.01 then
rot.x = -rot.x
end
if dir.z ~= 0 then
rot.x = -rot.x
end
self.object:set_rotation(rot)
end