0
#import "collisionTestMyScene.h"
const static int nodeBitMask = 0x1 << 0;
const static int node1BitMask = 0x1 << 1;;

@implementation collisionTestMyScene

-(id)initWithSize:(CGSize)size {    
    if (self = [super initWithSize:size]) {
        /* Setup your scene here */
        self.physicsWorld.contactDelegate = self;
        w = 0;


            }
    return self;
}
-(void) didBeginContact:(SKPhysicsContact *)contact {
    NSLog(@"Contact Begin");

    if (contact.bodyA.categoryBitMask == nodeBitMask) {
        NSLog(@"Node is Body A");
    }
    if (contact.bodyA.categoryBitMask == node1BitMask) {
        NSLog(@"Node is Body B");
    }
}
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    /* Called when a touch begins */

    for (UITouch *touch in touches) {
        CGPoint location = [touch locationInNode:self];
        node = [SKSpriteNode spriteNodeWithImageNamed:@"block.jpg"];
        node.position = location;
        [node setScale:0.07];
        node.physicsBody.contactTestBitMask = node1BitMask;
        node.physicsBody.categoryBitMask = nodeBitMask;
        node.physicsBody.collisionBitMask = nodeBitMask;
        //node.physicsBody.collisionBitMask = 0;
        node1 = [SKSpriteNode spriteNodeWithImageNamed:@"block2.jpg"];
        node1.position = CGPointMake(200, 200);
        node1.physicsBody.categoryBitMask = node1BitMask;
        node1.physicsBody.contactTestBitMask = nodeBitMask;
        node1.physicsBody.collisionBitMask = node1BitMask;
        //node1.physicsBody.collisionBitMask = 0;
        [node1 setScale:0.07];


        [self addChild:node];
        [self addChild:node1];
        node.physicsBody = [SKPhysicsBody bodyWithRectangleOfSize:CGSizeMake(node.size.width, node.size.height)];
        node1.physicsBody = [SKPhysicsBody bodyWithRectangleOfSize:CGSizeMake(node1.size.width, node1.size.height)];
        SKAction *moveUp = [SKAction moveToX:100 duration:3];
        node1.physicsBody.affectedByGravity = NO;
        node.physicsBody.affectedByGravity = NO;
        [node1 runAction:moveUp];
        w = 1;

    }



}

它永远不是 NSLogging 任何东西。我尝试过更改位掩码等等。CGRectIntersects 函数可以工作,但它不够准确。此外,这两个节点是完美的盒子形状。我可能做错了什么?先感谢您!

4

1 回答 1

2

这里的问题是位掩码。这两个节点属于不同的类别、接触和碰撞组(位掩码)。因此它们不会接触也不会碰撞,因为位掩码是比较的,AND并且只有当结果非零时才会发生接触/碰撞。

简而言之,至少将它们放在相同的联系人位掩码中,以便接收didBeginContact消息。

于 2014-01-29T23:21:21.010 回答