[I have 2 objects, both of them subclass of CCSprite. Each one of them has a CCSprite variable that actually represents the sprite image
Example:
@interface Player : CCSprite
{
CCSprite *sprite;
}
@property (nonatomic, retain) CCSprite *sprite;
I'm trying to detect collision of the both but when I try:
- (void)detectCollision:(id)sender
{
for (Player *tempPlayer in self.playersArray) {
if (CGRectIntersectsRect([tempPlayer boundingBox], [mainPlayer boundingBox])) {
//Collision
}
}
}
It doesn't recognize any collision, when I try:
- (void)detectCollision:(id)sender
{
for (Player *tempPlayer in self.playersArray) {
if (CGRectIntersectsRect([tempPlayer.sprite boundingBox], [mainPlayer.sprite boundingBox])) {
//Collision
}
}
}
It detects collision when both objects are displayed on screen even if the haven't collided yet.
Edit: Forgot to add boundingBox to the objects...
Thanks