From f0fe1091639cf6d11d71f292380d613c944221ac Mon Sep 17 00:00:00 2001 From: mikatomik Date: Mon, 12 Sep 2022 07:26:03 -0400 Subject: Fix bug with ladder mat not showing at runtime --- character/fps_controller/fps_controller.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'character') diff --git a/character/fps_controller/fps_controller.gd b/character/fps_controller/fps_controller.gd index ecd8871..09ef556 100644 --- a/character/fps_controller/fps_controller.gd +++ b/character/fps_controller/fps_controller.gd @@ -45,7 +45,7 @@ func get_input(): dir = dir.normalized() - #Pull X and Z values from directional input. Velocity.y will be handled in physics loop + #Pull X and Z values from directional input. Velocity.y will be handled in physics loop unless climbing. if is_climbing: velocity.y = lerp(velocity.y, dir.y * walk_speed, accel) -- cgit v1.2.3