보이게, 보이지 않게하는 액션기능 (Show, Hide)
c++)
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | #include "test120.hpp" USING_NS_CC; Scene* Test120::createScene() { auto scene = Scene::create(); auto layer = Test120::create(); scene->addChild(layer); return scene; } bool Test120::init() { if ( !Layer::init()) { return false; } auto spriteShow = Sprite::create("testimage.png"); spriteShow->setPosition(Point(100,100)); spriteShow->setVisible(true); //보이게 설정 auto spriteHide = Sprite::create("testimage2.png"); spriteHide->setPosition(Point(200,200)); spriteHide->setVisible(false); //보이지 않게 설정 this->addChild(spriteShow); this->addChild(spriteHide); //Show::create() : 보이게 설정 auto actionHide = Hide::create(); spriteShow->runAction(actionHide); //보이다 -> 보이지 않게 설정 //Hide::create() : 보이지 않게 설정 auto actionShow = Show::create(); spriteHide->runAction(actionShow); //안보이다 -> 보이게 설정 return true; } | cs |
결과
testimage1은 보이지 않고 testimage2는 보인다
'IT > - 프로그래밍' 카테고리의 다른 글
Cocos visible의 값을 반대로 바꿔주는 액션기능 (ToggleVisibility) (0) | 2017.02.14 |
---|---|
Cocos 깜박이게 하는 액션기능 (Blink) (0) | 2017.02.13 |
OpenCV error LNK2019: _cvReleaseImage 외부 기호(참조 위치: _main 함수)에서 확인하지 못했습니다. (0) | 2017.02.11 |
Cocos 회전하는 액션기능 (RotateBy) (0) | 2017.02.10 |
Cocos 크기 변경하는 액션기능 (ScaleTo) (0) | 2017.02.09 |