Feat/14 movement overhaul #20

Merged
Dotts merged 86 commits from feat/14-movement-overhaul into main 2026-07-17 10:44:23 -07:00
Showing only changes of commit 2537ad19c0 - Show all commits
+2 -1
View File
@@ -73,7 +73,8 @@ func _fresh() -> void:
sm.input_dash = false sm.input_dash = false
fake_player.velocity = Vector3.ZERO fake_player.velocity = Vector3.ZERO
for c in sm.get_children(): for c in sm.get_children():
sm.remove_child(c.queue_free()) sm.remove_child(c)
c.queue_free()
func _expect(cond: bool, msg: String) -> void: func _expect(cond: bool, msg: String) -> void: