Skip to content

Instantly share code, notes, and snippets.

@absimas
Created April 17, 2015 18:48
Show Gist options
  • Save absimas/56d6ec506212344a1d6a to your computer and use it in GitHub Desktop.
Save absimas/56d6ec506212344a1d6a to your computer and use it in GitHub Desktop.
func didBeginContact(contact: SKPhysicsContact) {
if let bodyA = contact.bodyA as? Contactable {
bodyA.didContact()
}
if let bodyB = contact.bodyB as? Contactable {
bodyB.didContact()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment