【发布时间】:2017-01-05 05:26:21
【问题描述】:
在我捕获屏幕后:
auto renderTexture = RenderTexture::create(width, height,Texture2D::PixelFormat::RGBA8888, GL_DEPTH24_STENCIL8_OES);
Scene* curScene = Director::getInstance()->getRunningScene();
renderTexture->begin();
curScene->visit();
Director::getInstance()->getRenderer()->render();
renderTexture->end();
滚动视图中位于屏幕外的图像和文本会像这样丢失: 1.正常图像 The bottom is outside of the screen
【问题讨论】:
标签: ios scrollview cocos2d-x texture2d