rogerdv
After a quick look at docs, I couldnt find a way to get a node from the scene by its name, is that possible?
After a quick look at docs, I couldnt find a way to get a node from the scene by its name, is that possible?
Scene or Node have a method called GetNode(String name, bool recursive)
Take also a look at GetChild() function (it is used in various samples).
According to docs, scene doesnt has such GetNode implementation, only one that uses node id. But node does has GetChild in all flavours.
Scene inherits all the GetChild() methods from Node class.