I have a gui that includes a template. It looks roughly like this:
- Gui
- Nodes
- hud (template)
- foo
From my gui script, I’m able to get the foo node:
gui.get_node('hud/foo')
But I’m not able to get the hud node, which is the instance of the template:
gui.get_node('hud') -- Gives error "No such node: hud"
Is this intended behaviour? It seems like I should be able to get and programatically manipulate the template node, since it has a position, rotation, scale, etc, just like every other node in the gui. Specifically, I am trying to animate the position of the template so it slides on/off screen.