way too many changes to list, oops. big rewrite.

This commit is contained in:
2025-05-27 03:38:03 +10:00
parent 16951a9beb
commit 4a21701a35
663 changed files with 7389 additions and 3283 deletions

11
ladder.gd Normal file
View File

@ -0,0 +1,11 @@
class_name Ladder extends Area3D
func _on_body_entered(body: Node3D) -> void:
if body is Hero:
body.movement.enable_climbing()
func _on_body_exited(body: Node3D) -> void:
if body is Hero:
body.movement.disable_climbing()