Node visibility

If you move a node inside another node, then it simply disappears.

If a node was created inside another node and if you move it outside, then it also disappears.

How to make the node that I moved to be visible. I don’t want to unnecessarily create a node inside a node, because I will have to redo a lot.

One thing I noticed is that you’ve set a z-value on one of the nodes. Please reset it to 0.

Render order in a GUI is not decided by z-value. Instead it is either the order or is listed in the hierarchy or which layer or is assigned.

Read more about this here: GUI scenes in Defold

I did as you said, but it didn’t help.

Hey
I think you are moving and not changing their positions based on the new hierarchy. Child and stuff. A element with x -100 y 500 will be using its location based on its main node (parent).
Try to focus on the element (select node, go to the editor and press f)

Edit: you move (hierarchy) the nodes / elements by holding alt + up or down. Test it. Elements on the bottom are rendered on front.

Edit2:

4 Likes

Thanks. I didn’t know it worked that way. =)