So, here we are!
I have the following structure:
-Panel
--Control_0
---Button
---TextureFrame
--Control_1
---Button
---TextureFrame
--Control_2
---Button
---TextureFrame
--Control_3
---Button
---TextureFrame
--Control_4
---Button
---TextureFrame
And I try to reorganize it like
-Panel
--Control_0
---Button
---TextureFrame
---Control_1
--------Button
--------TextureFrame
---Control_2
--------Button
--------TextureFrame
--------Control_3
-----------Button
-----------TextureFrame
-----------Control_4
-------------------Button
-------------------TextureFrame
What I do is:
var my_node = get_node( "path" );
remove_child( my_node );
new_parent.add_child( my_node )
Why when doing "newparent.addchild(mynode)" the children of mynode are not visible? How can I make the TextureFrame and the Button appear again?
Thank you in advance, I don't really know how to debug this issue.
EDIT: I found that the nodes appear actually, but they are moved to places like 3478,6102
What is happening? I don't modify their position at all