I want my sprites collisions and contacts to be detected, but I don't want them to move dynamically (I just need to know that they've touched).
didBeginContact(contact: SKPhysicsContact!)
is only called if I set my player's physicsBody.dynamic
to true. How can I get these delegate method calls without effecting the position or movement of my player?