What effect addChild and zPosition really have on a scene?
I mean this: suppose I do this
sprite1.zPosition = 50;
sprite2.zPosition = 10;
sprite3.zPosition = 30;
and later do this
[self addChild:sprite1];
[self addChild:sprite2];
[self addChild:sprite3];
according to SpriteKit and considering zPosition order, sprite1 should be rendered over sprite3 over sprite2 but spriteKit ignores that and renders 3 over 2 over 1.
am I missing something?
If they have the same parent that would be true. In case they can different parents, the z order of parents is also taken into account.
The standard behavior for scene rendering follows a simple pair of rules:
When you take z positions into account, here is how the node tree is rendered:
You can find it well explained here under Understanding the Drawing Order for a Node Tree
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With