1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-07 19:53:17 +00:00

Removed redundant code in the kinematic 3D demo.

This commit is contained in:
Nathan Warden
2015-05-10 17:39:38 -05:00
parent a2b8b92a6e
commit 67bf14bbbb

View File

@@ -46,9 +46,8 @@ func _fixed_process(delta):
vel.x=hvel.x;
vel.z=hvel.z
var motion = vel*delta
motion=move(vel*delta)
var motion = move(vel*delta)
var on_floor = false
var original_vel = vel