깜박이게 하는 액션기능 (Blink)
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 | #include "test122.hpp" USING_NS_CC; Scene* Test122::createScene() { auto scene = Scene::create(); auto layer = Test122::create(); scene->addChild(layer); return scene; } bool Test122::init() { if ( !Layer::init()) { return false; } auto sprite = Sprite::create("testimage.png"); sprite->setPosition(Point(100,100)); this->addChild(sprite); //Blink::create(액션기간, 깜박이는 횟수) : 객체 깜박이게 설정 auto blinkAction = Blink::create(3.0, 10); //3초동안 스프라이트 객체를 10번 깜박임 sprite->runAction(blinkAction); return true; } | cs |
결과
3초동안 10번 깜박인다
'IT > - 프로그래밍' 카테고리의 다른 글
Cocos 서서히 투명, 불투명하게하는 액션기능 (FadeIn, FadeOut) (0) | 2017.02.15 |
---|---|
Cocos visible의 값을 반대로 바꿔주는 액션기능 (ToggleVisibility) (0) | 2017.02.14 |
Cocos 보이게, 보이지 않게하는 액션기능 (Show, Hide) (0) | 2017.02.12 |
OpenCV error LNK2019: _cvReleaseImage 외부 기호(참조 위치: _main 함수)에서 확인하지 못했습니다. (0) | 2017.02.11 |
Cocos 회전하는 액션기능 (RotateBy) (0) | 2017.02.10 |