1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | #include "HelloWorldScene.h" Scene* HelloWorld::createScene() { auto scene = Scene::create(); auto layer = HelloWorld::create(); scene->addChild(layer); return scene; } bool HelloWorld::init() { if (!Layer::init()) { return false; } auto spr = Sprite::create("Icon-57.png"); spr->setPosition(Point(100, 100)); spr->setVisible(false); //setVisible()을 false로 설정함에 따라 보이지 않음 this->addChild(spr); auto action = Show::create(); spr->runAction(action); //show 액션을 생성하여 보이게 함 return true; } | cs |
show액션도 place와 마찬가지로 조합 액션을 만들 때 자주 사용 됨