Open sudara opened 1 year ago
I believe the tree is actually implicitly organized by z order, as it should just be built via getChildren.
getChildren
Unfortunately z-order isn't stored as a property, as its the implicit position of a child within a component's private childComponentList.
childComponentList
Worst case: when displaying properties, figuring out the index via testing against parent->getChildren() is probably the way to go.
parent->getChildren()
I believe the tree is actually implicitly organized by z order, as it should just be built via
getChildren
.Unfortunately z-order isn't stored as a property, as its the implicit position of a child within a component's private
childComponentList
.Worst case: when displaying properties, figuring out the index via testing against
parent->getChildren()
is probably the way to go.