i got a little question about signals here
is there a way i can connect signals dynamically?
because, i want one of my controls to emit a custom signal that gets picked up by a node wich just gets added as its parent later...is that possible or do i need to find another solution to this
i already got the signal emitted in the control node and i theoretically got the function that should listen to it in the node above...the signal gets emitted, but the parent node dont seem to listen to it
here are the two lines in the control node called "selection_menu":
[....]
emit_signal("create_new_menu","load")```
and here from the function that should listen to it:
```func _on_selection_menu_create_new_menu(to):```
Thank you for your help :)