Fixed player double jumps not working. and added a dash

This commit is contained in:
2026-02-12 06:56:01 -05:00
parent 83a4a8f374
commit 5518f3ce79
12 changed files with 129 additions and 108 deletions

View File

@@ -18,6 +18,6 @@ static func fall_input() -> bool:
var fallInput: bool = Input.is_action_just_pressed("force_fall")
return fallInput
static func wall_cling_input() -> bool:
var wallClingInput: bool = Input.is_action_just_pressed("wall_cling")
return wallClingInput
static func dash_input() -> bool:
var dashInput: bool = Input.is_action_just_pressed("dash")
return dashInput