I have a main play scene structured like this:
PlayNode
|------BGNode
|.......|----CloudScene1
|.......|----CloudScene2
Now, the CloudScene1,2 are scene instances. It is like this:
CloudScene
|------Sprite
|------Timer
In my main play scene, I want to instantiate different types of clouds. I want to change the texture of Sprite in CloudScene for different children from the main play scene itself. How to do that? Is it not possible without coding?
If the scene instance node was expandable, it would have been really useful.