I have a root node with a timer as a child. I wrote a GDScript code that adds new instances of a scene to this root as children. However, I need the newly added children to recieve the timeout signal emitted by the timer node. How can I connect them to the timer as soon as they enter the root scene?
The tree organization is as follows:
-Root
---Timer
---...(children are added here)
---...
---...