Drawing Order
I really want to implement drawing order in my node based graphics engine in vsge.
Node based meaning, that I actually have a nodetree, each node containing a pointer to the parent and a children list. This means that each node handles drawing of the children, so the graphics engine …