By "eat" I mean: when sprite A (Mario) collides with sprite B (a coin) the collision is detected and the coin is removed from the scene; however, Mario's movement is not altered by the collision with the coin.
At the moment I'm using SKPhysicsContactDelegate
to register when Mario and the coin collide, but this seems to require acknowledging the coin as a physical body - which therefore means that Mario's movement is stopped by it.
Should the coin not have a physics body, and instead should I use a different method to see if they contact?