How to Make a Game Like Flappy Bird in Swift · Like Flappy Bird in Swift. Collision Detection...

Post on 22-Jul-2020

2 views 0 download

Transcript of How to Make a Game Like Flappy Bird in Swift · Like Flappy Bird in Swift. Collision Detection...

Step 6: Collision Detection

How to Make a Game Like Flappy Bird

in Swift

Collision Detection

Implement SKPhysicsContactDelegatefunc didBeginContact(contact: SKPhysicsContact) { let other = contact.bodyA.categoryBitMask == PhysicsCategory.Player ? contact.bodyB : contact.bodyA if other.categoryBitMask == PhysicsCategory.Ground { hitGround = true } if other.categoryBitMask == PhysicsCategory.Obstacle { hitObstacle = true } }

Game States

Various game states: Play Falling “Showing Score”

For each state: Different behavior when screen tapped Different things to do each frame

Actions when transitioning to a new state

enum GameState { case MainMenu case Tutorial case Play case Falling case ShowingScore case GameOver }

func switchToFalling() {

gameState = .Falling // Transition code… }

Demo: Collision Detection

Challenge