I am new to cocos2d-android. I want to add CCJumpTo using touch event in my code. But I don't know how to fix it. plz help.

link|improve this question

33% accept rate
thanks but I need to use CCjumpTo in Cocos2d-android. – Zahidul Feb 3 at 6:24
feedback

1 Answer

up vote 1 down vote accepted

override ccTouchesEnded in your CCLayer and create a point where you want the jump to go to like this

    public boolean ccTouchesEnded(MotionEvent event) {

        CGPoint touch = CCDirector.sharedDirector().convertToGL(
                CGPoint.ccp(event.getX(), event.getY()));
        CGSize winSize = CCDirector.sharedDirector().displaySize();


        aHero.runAction(CCJumpTo.action(2f, touch , 100, 1));

        return true;
    }

where aHero is the sprite you want to jump, it'll make the sprite jump [once] to the touched area and reach there in 2s with a jump height of 100

link|improve this answer
thanks, it works well – Zahidul Feb 3 at 13:28
would you chose it as a correct answer then ? – JiMMaR Feb 3 at 15:08
@ JiMMaR I am new to stackoverflow. so I am not sure what did u mean? – Zahidul Feb 4 at 3:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.