more working with saves, tweaked ladder, made a mug and wet floor sign

This commit is contained in:
derek
2024-12-03 16:59:21 -06:00
parent ad11da38f8
commit dd960cc00e
22 changed files with 460 additions and 153 deletions

View File

@@ -197,7 +197,7 @@ func _physics_process(delta):
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)
#ladder movement
elif is_climbing:
elif is_climbing and !is_on_floor():
gravity = 0.0
if direction:
velocity.y = -direction.z * speed * .75