beta-1.5 (#4)

Reviewed-on: #4
This commit was merged in pull request #4.
This commit is contained in:
2026-03-28 20:34:59 -06:00
parent 5fb4a96159
commit 7cd34cb07e
32 changed files with 445 additions and 66 deletions

View File

@@ -0,0 +1,8 @@
extends Node
# Public Methods
func GetMovementComponent(container: Node) -> MovementComponent:
for node in container.get_children():
if node is MovementComponent:
return node
return null