I have 2 problem on CCTransitionPageTurn
. I target to work on a layer with topLayer and pageLayer. Where topLayer always on top and have menuItem to change page. And pageLayer be content with TurnPage effect.
Since I cannot add a
CCScene
over anotherCCScene
(i.e. MainScene(CCScene) -> PageScene(CCScene) -> TopLayer(CCLayer) ). So, I think the design will be doing turn page effect on CCLayer (i.e. MainScene(CCScene) -> PageLayer(CCLayer) -> TopLayer(CCLayer) ). But this timeCCTransitionPageTurn
only support `CCScene. Any advice which is a better approach?I see
CCTransitionPageTurn
is turning page at right-bottom corner (forward or backward). But how can I make it at left-bottom corner? Something like flip-X.