I got missing triangles for CCPageTurnTransition at the left side of Ipad when i replace the scene.
Note that I have used :
[[CCDirector sharedDirector] setDepthBufferFormat:kDepthBuffer16];
and put at delegate method but my app crash and shown this error
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'A Director was alloced. setDirectorType must be the first call to Director
i also try to change cocos2d/CCPageTurn3DAction.m but still got the triangle. Currently im using cocos2d version 0.99.4-rc3.
// Stop z coord from dropping beneath underlying page in a transition
if( p.z<0.9f )
p.z = 0.9f;