Currently, all nodes are looped through in a single loop where the tick and draw callbacks for each node are called at the same time. This order can cause issues where a node is seen twice if it is drawn and ticked on layer 0, but the tick callback moved it to layer 1.
Currently, all nodes are looped through in a single loop where the
tick
anddraw
callbacks for each node are called at the same time. This order can cause issues where a node is seen twice if it is drawn and ticked on layer0
, but the tick callback moved it to layer1
.