StillSky
StillSky
在ripple demo 中,在ripple node 下添加一个背景 ``` c++ auto bg = Sprite::create("demoRes/tableCloth.png"); bg->setPosition(Vec2(visibleSize.width/2 , visibleSize.height/2)); this->addChild(bg); ``` 然后执行 render texture 截屏 ``` c++ auto render = RenderTexture::create(visibleSize.width, visibleSize.height); render->begin(); Director::getInstance()->getRunningScene()->visit(); render->end();...
the ‘cocos package’ and ‘cocos framework’ is still under development? how can i create a new cocos framework, and add it to my project ? are there any examples? thanks!
fix #397