- (void)update:(ccTime)delta
{
CCDirector* director = [CCDirector sharedDirector];
if (director.currentPlatformIsIOS)
{
KKInput* input = [KKInput sharedInput];
if ([KKInput sharedInput].anyTouchBeganThisFrame) {NSLog(@"anyTouchBeganThisFrame");}
if ([KKInput sharedInput].anyTouchEndedThisFrame) {NSLog(@"anyTouchEndedThisFrame");}
if ([input isAnyTouchOnNode:self.ballRed touchPhase:KKTouchPhaseBegan]){NSLog(@"isAnyTouchOnNode");}
}
}
anyTouchEndedThisFrame が呼び出されず、TouchBegan イベントが isAnyTouchOnNode に対してもトリガーされません。KKTouchPhaseStationary/KKTouchPhaseAny に変更すると、イベントは問題なく発生しています。
最近、COCOS2d 2.0 から Kobold2d に移行しました。どんな助けでも素晴らしいでしょう.. !!