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 a1f48d9ef0 - Show all commits
+1 -1
View File
@@ -60,7 +60,7 @@ func load_model(path: String) -> void:
print("SkinnedPlayerModel: WARNING - no AnimationPlayer found in scene tree")
func _print_tree(node: Node, depth: int) -> void:
var indent = " " * depth
var indent = " ".repeat(depth)
print("%s%s (%s)" % [indent, node.name, node.get_class()])
for child in node.get_children():
_print_tree(child, depth + 1)