started work on doors and switches

This commit is contained in:
derek
2024-10-09 15:17:13 -05:00
parent d1090e4a6b
commit 3356454d78
4 changed files with 91 additions and 6 deletions

View File

@@ -166,7 +166,6 @@ func _physics_process(delta):
else:
velocity.x = lerp(velocity.x, direction.x * speed, delta * 6.5) + (direction.x * DASH_SPEED)
velocity.z = lerp(velocity.z, direction.z * speed, delta * 6.5) + (direction.z * DASH_SPEED)
elif is_climbing:
gravity = 0.0
if direction: