views:

38

answers:

1

http://www.youtube.com/watch?v=DyssOSmwuoo

according to my video

when call animation PageTransitionForward it will have a triangle on the left and that triangle can see through next layer

how can i fix it?

+1  A: 

It happens because of limitation of depth buffer (search about z-fighting for more info).

To fix it just find CCPageTurn3DAction.m file and in (void)update:(ccTime) method change z coordinate of all vertices of the animated grid to some higher value (e.g. 0.5).

lechec
thanks lechec for your information
RAGOpoR