Export to GitHub

cocos2d-iphone - issue #1458

CCClippingNode does not support CCRenderTexture


Posted on Jan 12, 2013 by Happy Lion

What steps will reproduce the problem? 1. Setup a scene with CCClippingNode 2. Add Content to the CCClippingNode 3. Produce an UIImage using CCRenderTexture like below: + (UIImage ) screenshotNode:(CCNode)startNode { [CCDirector sharedDirector].nextDeltaTimeZero = YES;

CGSize winSize = [CCDirector sharedDirector].winSize;

CCRenderTexture * rtx = [CCRenderTexture renderTextureWithWidth:winSize.width height:winSize.height];

[rtx begin];
[startNode visit];
[rtx end];

return [rtx getUIImage];

}

What is the expected output? What do you see instead? An UIImage of the Clipped node is expected. However, the UIImage will display an unClipped node

What cocos2d version are you using ? cocos2d-iphone-2.1-beta4

What iOS / Mac SDK are you using ?

Debug or Release ? Debug

Which target device / target OS are you using ? iPhone/iPad

iOS only: Does this happens on device ? or on the simulator ? or on both ? both

Mac only: x86 or i386 ?

Please provide any additional information below.

Comment #1

Posted on Jun 5, 2013 by Happy Rhino

Comment deleted

Status: New

Labels:
Type-Defect Priority-Medium