Cocos2d-x ccaction not called and ccsequence create issue

968 Views Asked by At

I'm trying to do what I did hundred of times with cocos2d, but with cocos2d-x seems I have less luck.

If i do

CCsequence *squence = CCSequence::create(someAction1, someAction2, NULL);

the compiler says:

No matching function for call to 'create'

I've found this problem around the internet but without any solution. By the way, if I do a simple action like:

CCAction *action = CCMoveTo::create(5.0f, CCPointMake(0,0));

sprite->runAction(action);

the action is not even called, and the sprite is not nil (I've printed his size etc), printing info about that sprite it is the exact object it should be

2

There are 2 best solutions below

0
On

Try this:

CCFiniteTimeAction *action = CCMoveTo::create(x, (y,z));
CCsequence *squence = CCSequence::create(action, NULL);

I think the error is because CCSequence expects CCFiniteTimeAction classes but you're declaring them as CCAction which makes the compiler think you're passing the wrong type, complaining that there is no create function that takes CCAction as parameters.

0
On

You can try like this

CCMoveBy *action = CCMoveBy::create(.5, CCPointMake(ball->getPositionX(), ball->getPositionY()+100));
CCMoveBy* action_back = (CCMoveBy*)action->reverse();
ball->runAction(CCSequence::create(action, action_back, NULL));

ball is sprite