Hello,
I'm trying to implement multitouch swiping and my problem stems from the ending touch. I track a swipe by catching the initial touch via (void)ccTouchesBegan:(NSSet *)touches withEvent:(UIEvent *)event and then the end of the touch with (void)ccTouchesEnded:(NSSet *)touches withEvent:(UIEvent *)event. I can catch multitouch in the ccTouchBegan without a problem but when it gets to ccTouchesEnded I lose track of which touch actually ended.
How do you go about keeping track of the specific touch event?
Thanks.