Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using CCTouchDispatcher Cocos2d 2.0 Beta-2 ARC

I am creating a game with cocos2d 2.0 BETA 2.0 [The newest one]. And i need to add a joystick in other class. so I call this "CCTouchDispatcher" in my second class. But I can't call like this:

[[CCTouchDispatcher sharedDispatcher] addTargetedDelegate:self priority:0 swallowsTouches:YES];

So I made this one:

_tocuhDispatcher = [[CCTouchDispatcher alloc] init];
[_tocuhDispatcher addTargetedDelegate:self priority:0 swallowsTouches:YES];

But still can't detect the touches. If I enable the touches in my HelloWorldLayer I could move my object with the touches but no the joystick doesn't work

What could i do?

like image 629
Eduardo Iglesias Avatar asked Dec 28 '22 07:12

Eduardo Iglesias


1 Answers

CCDirector *director = [CCDirector sharedDirector];
[[director touchDispatcher] addTargetedDelegate:self priority:0 swallowsTouches:YES]; 
like image 119
heedy Avatar answered Jan 15 '23 09:01

heedy