feat: update

This commit is contained in:
2026-06-12 18:05:04 +08:00
parent 8a2fb36a98
commit 9dd3c59edf
67 changed files with 2298 additions and 74 deletions
+6 -1
View File
@@ -1254,7 +1254,12 @@ func _create_tekton(pos: Vector2i, tekton_id: int, is_static: bool = false):
var node_name = "Tekton_%d" % tekton_id
if has_node(node_name): return
var tekton_scene = load("res://scenes/tekton.tscn")
var tekton_scene
if is_static:
tekton_scene = load("res://scenes/static_tekton.tscn")
else:
tekton_scene = load("res://scenes/tekton.tscn")
var tekton = tekton_scene.instantiate()
tekton.name = node_name
add_child(tekton)