본문 바로가기

카테고리 없음

[cocos2d-x]위치와 관련된 액션(점프)

 

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
#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("ball.png");
    spr->setPosition(Point(100100)); //공의 현재 위치 지정
    this->addChild(spr);
 
    auto action = JumpBy::create(5.0, Point(3000), 1505);
//공의 점프 설정 By이므로 현재 위치를 기준으로 
(5초동안 , (300,0)좌표로 , 150 높이만큼 , 5번 점프하여 이동)
    spr->runAction(action);
 
    return true;
}
cs