I want to know if there is a move_to_back() function. I couldn’t find one. But I want to move a body to the top of the tree (meaning it is shown in the back) and I don’t want to be using Z Index for this. Just like move_to_front() but opposite. Thanks!
I want every new body spawned as a child of a certain node to be spawned behind all its siblings without messing with it’s index relative to other nodes. (There will be hundreds spawned)
You almost certainly will run into problems then as moving nodes around a tree is not performative in any way. Because if you are moving something to the top of the tree , you are moving everything down.