Hi, i'm pretty new to the world of cocos3d and Obj-C, i started to learn it starting with the basic template and looking in the demo files, but now i'm stuck trying to make multitouch works in cocos3d.
Until now i used
-(void) touchEvent:(uint)touchType at:(CGPoint)touchPoint in the world file and
-(void) ccTouchMoved: (UITouch *)touch withEvent: (UIEvent *)event { [self handleTouch: touch ofType: kCCTouchMoved]; } in the layer file.
I managed to make some kind of working multitouch (trying to make some zoom movement) but because touches are "separate" there's a lot of problems. So i search for the true multitouch "function" but can't find anything really helpful. I find that i need to use standard delegate with for example
-(void)ccTouchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
But problem is that i don't know how to modify node declared in the world, within ccTouchesMoved in the layer file as i can't use those directly on the world file.
Thanks for your help
Flyx