progress
This commit is contained in:
14
template_scene.gd
Normal file
14
template_scene.gd
Normal file
@@ -0,0 +1,14 @@
|
||||
extends Scene
|
||||
|
||||
func _ready() -> void:
|
||||
_register_setpiece_defaults()
|
||||
super._ready()
|
||||
|
||||
func _register_setpiece_defaults() -> void:
|
||||
for sp in get_tree().get_nodes_in_group("transition-set-piece"):
|
||||
print("SET PIECE", sp)
|
||||
sp.interacted.connect(func():
|
||||
print("HELE")
|
||||
sp.default_script(self)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user