Added NPC ArrowGirl

This commit is contained in:
2026-03-11 14:42:01 +11:00
parent a9f1fd48c9
commit 935125de83
11 changed files with 122 additions and 6 deletions

View File

@@ -40,7 +40,7 @@ func _physics_process(_delta) -> void:
buffer_jumping -= 1
#process coyote and jump buffers
if buffer_grounded > 0 and buffer_jumping > 0:
if buffer_grounded > 0 and buffer_jumping > 0 and just_bounced == false:
velocity.y = -JUMP_FORCE
buffer_grounded = 0
buffer_jumping = 0