From 187784ed1f8698d3b5c7d35cbbf3444ed36f20c2 Mon Sep 17 00:00:00 2001 From: sebashtioon Date: Sat, 28 Sep 2024 16:45:44 +1000 Subject: [PATCH] spelling error --- Scenes and Scripts/Scenes/Player/Player_SCRIPT.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scenes and Scripts/Scenes/Player/Player_SCRIPT.gd b/Scenes and Scripts/Scenes/Player/Player_SCRIPT.gd index 3bf390f5..a4b1bc56 100644 --- a/Scenes and Scripts/Scenes/Player/Player_SCRIPT.gd +++ b/Scenes and Scripts/Scenes/Player/Player_SCRIPT.gd @@ -106,7 +106,7 @@ The keyword @export means that they can be accessed in the inspector panel (righ @export_subgroup("Crouching") @export var CROUCH_JUMP_VELOCITY = 4.5 ## How much velocity the player has when jumping. The more this value is, the higher the player can jump. @export var CROUCH_SPEED := 5.0 ## The speed of the player when the user is pressing/holding the Crouch input. -@export var CROUCH_INTERPOLATION := 6.0 ## How long it take to go to the crouching stance or return to normal stance. +@export var CROUCH_INTERPOLATION := 6.0 ## How long it takes to go to the crouching stance or return to normal stance. @export_subgroup("Gravity") @export var gravity = 12.0 ## Was originally 9.8 but I felt it to be too unrealistic. We all know what gravity is... right?