Added mapping tool, reworked scene structure, and added test data.

This commit is contained in:
2026-09-06 16:50:32 -07:00
parent ab632f455d
commit a7ba813c81
20 changed files with 350 additions and 12 deletions
+11
View File
@@ -0,0 +1,11 @@
extends Node
func _on_map_button_button_up() -> void:
$UI/VBox/GraphEdit.clear_connections()
for child in $UI/VBox/GraphEdit.get_children():
if child is GraphFileNode :
$UI/VBox/GraphEdit.remove_child(child)
child.queue_free()
var startNode : GraphFileNode = GraphFileNode.new("test_scene1.json")
$UI/VBox/GraphEdit.add_child(startNode)
startNode.map($UI/VBox/GraphEdit)
$UI/VBox/GraphEdit.arrange_nodes()