• Editor
  • Cocos2d-x CCRenderTexture issue

Related Discussions
...

I have issue with cocos2d-x runtime. It doesn't render my game characters, it only renders small green dot if have debugBones on.

I'm rendering my characters to CCRenderTexture by calling visit for the CCLayer they are in. This works okey when using CCSprites, but for the CCSkeletonAnimation it don't seem to work.

I tried to put the characters to normal layer that is not render to CCRenderTexture and the CCSkeletonAnimation worked fine on that. So it seems for me the CCSkeletonAnimation fails to render to the CCRenderTexture for some reason.

I'm not familiar with CCRenderTexture or why it wouldn't be rendering there. CCSkeletonAnimation does simple rendering with a CCTextureAtlas, I don't think it should be an issue.

Thanks for the fast reply.

I tried debugging the issue bit more. Seems atleast that in RegionAttachment_updateQuad the vertices are always zero when I have the character in layer that is rendered to my CCRenderTexture. Seems in the RegionAttachment_computeVertices the bone->m00 and so on are all zero.

I managed to get the character showing by calling updateWorldTransform() method on my own animation components update. It still don't animate tough. 😃

So probably it's not updating somethings that it should.

Calling skeleton->update(dt) manually in my animation component fixed the issue for me. It's now animating also. Not sure why it don't update automatically tough if I put it to layer that is render to CCRenderTexture. But well at least it works now, so I can use this as temporary fix. 😃

Maybe when using render-to-texture the CCSkeletonAnimation isn't actually in the scene graph, so doesn't get updated. Calling update yourself would be the right thing to do.