私は 4 つの画像 (bat1、bat2、bat3.bat4) があるスプライト シートを持っています。画像にはバットを持っている人がいて、すべての画像をアニメーションで組み合わせると、野球をしているように見えます。以下は、スプライトシートを追加するために使用したコードです。
[[CCSpriteFrameCache sharedSpriteFrameCache] addSpriteFramesWithFile:@"baseball.plist"];
spriteSheet = [CCSpriteBatchNode batchNodeWithFile:@"baseball.plist"];
[self addChild:spriteSheet];
background = [CCSprite spriteWithSpriteFrameName:@"bat4.png"];
background.position = ccp(220, 185);
background.tag = 10;
[self addChild:background];
for(int i = 1; i < 5; i++) {
[walkAnimFrames addObject:[[CCSpriteFrameCache sharedSpriteFrameCache] spriteFrameByName:[NSString stringWithFormat:@"bat%d.png", i]]];
}
CCAnimation *walkAnim = [CCAnimation animationWithSpriteFrames:walkAnimFrames delay:5.0f];
self.walkAction = [CCRepeatForever actionWithAction:[CCAnimate actionWithAnimation:walkAnim]];
[background runAction:_walkAction];
そして、ボールとバットの衝突を検知しています。以下のコードで
for (CCSprite *monster in _monsters) {
if (CGRectIntersectsRect(background.boundingBox, monster.boundingBox)) {
if (((background.position.x -5 > monster.position.x + (monster.contentSize.width/2)) && background.position.y > monster.position.y)) {
isCollision = 1;
[monstersToDelete addObject:monster];
}
// [monstersToDelete addObject:monster];
//[self addFishToBoat];
}
}
ここで衝突が検出されますが、常にbat4のrectとの衝突を検出します。バットが動いていて、すべてのバットのcgrectが異なるため、basがbat1から非常に離れている場合でも、ボールのrect は、bat4 の rect と交差します。
しかし、ボールが異なるバットと衝突する場合にのみ衝突が検出されることを望みます。つまり、ボールがbat1、bat2、bat3、bat4でヒットした場合にのみ、bat4で常に検出するのではなく、衝突を検出します。