Push project up

This commit is contained in:
2026-08-23 12:38:19 -05:00
parent a348e975e3
commit dcd3b0525c
45 changed files with 1429 additions and 0 deletions

15
import_manager.gd Normal file
View File

@@ -0,0 +1,15 @@
@tool class_name ImportManager extends EditorScenePostImport
# NOTE: Example of editing an import
#func _post_import(scene: Node) -> Object:
# if scene.name == "balls":
# scene.name = "bodies"
# setup_balls_scene(scene)
# return scene # NOTE: Must return the scene no matter what
#func setup_balls_scene(scene: Node) -> void:
# for node in scene.get_children():
# # NOTE: Would do further logic here
# setup_balls_scene(node)