Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

didBeginContact not called

I am making a game in which I need my spriteNodes to collide. I followed a tutorial but it just isn't working for me.

When I run my game and two objects collide, there is no println("beginContact") in the output monitor, so the didBeginContact function isn't called.

override init(size:CGSize) {
    super.init(size: size)
    player.planeSprite = SKSpriteNode(imageNamed: "plane5")

    player.planeSprite.physicsBody? = SKPhysicsBody(rectangleOfSize: player.planeSprite.size)
    player.planeSprite.physicsBody?.dynamic = true;
    player.planeSprite.physicsBody?.categoryBitMask = playerCategory;
    player.planeSprite.physicsBody?.contactTestBitMask = noteCategory;
    player.planeSprite.physicsBody?.collisionBitMask = 0;
    player.planeSprite.physicsBody?.usesPreciseCollisionDetection = true;

    player.planeSprite.position = CGPointMake(player.legalPositions[1], player.planeSprite.size.height/2)

    self.addChild(player.planeSprite)
}

func addNote() {
    var note:SKSpriteNode = SKSpriteNode(imageNamed: "note")
    note.physicsBody? = SKPhysicsBody(rectangleOfSize: note.size)
    note.physicsBody?.dynamic = true
    note.physicsBody?.categoryBitMask = noteCategory
    note.physicsBody?.contactTestBitMask = playerCategory
    note.physicsBody?.collisionBitMask = 0

    let minX = note.size.width/2
    let maxX = self.frame.size.width - note.size.width/2
    let rangeX = maxX - minX
    let position = Int(arc4random_uniform(3))

    note.position = CGPointMake(player.legalPositions[position], self.frame.size.height + note.size.height)

    self.addChild(note)
}

func didBeginContact(contact: SKPhysicsContact!) {
    println("beginContact")

    var firstBody:SKPhysicsBody
    var secondBody:SKPhysicsBody

    if (contact.bodyA.categoryBitMask < contact.bodyB.categoryBitMask) {
        firstBody = contact.bodyA
        secondBody = contact.bodyB
    }
    else {
        firstBody = contact.bodyB
        secondBody = contact.bodyA
    }

    if((firstBody.categoryBitMask & noteCategory) != 0 && (secondBody.categoryBitMask & playerCategory) != 0 ) {
        println("if statement")
        playerDidCollideWithNote(firstBody.node as SKSpriteNode, note: secondBody.node as SKSpriteNode)
    }
}

func playerDidCollideWithNote(plane:SKSpriteNode, note:SKSpriteNode) {
    println("hit")
    note.removeFromParent()
}
like image 497
Murturn Avatar asked Mar 27 '26 18:03

Murturn


2 Answers

If you use Xcode8.0 Swift3.0, You cannot use
func didBeginContact(contact: SKPhysicsContact!) {}

So you should use this. func didBegin(_ contact: SKPhysicsContact) {}

like image 106
Rasukaru Avatar answered Apr 01 '26 07:04

Rasukaru


Done this misstake several times.

You first need to inherit from SKPhysicsContactDelegate :

class GameScene: SKScene, SKPhysicsContactDelegate { ... }

And then in your didMoveToView method, add:

override func didMoveToView(view: SKView) {
    self.physicsWorld.contactDelegate = self
}

To set your GameScene instance as the contactDelegate for the physicsWorld.

like image 22
Nicklas Ridewing Avatar answered Apr 01 '26 08:04

Nicklas Ridewing



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!