I want to set the z order of one CCNode but I have been trying this three options and it doesn't working:
myNode.zOrder = 10;
myNode.physicsNode.zOrder = 10;
[myScene reorderChild:myNode z:10];
Also the myNode.physicsNode.zOrder sets de z orders of all CCNodes that are inside the CCPhysicsNode, no matter what Node is myNode.
Thanks for all!