How to Make a Game Like Flappy Bird in Swift Step 12: Finishing - - PowerPoint PPT Presentation

how to make a game like flappy bird in swift
SMART_READER_LITE
LIVE PREVIEW

How to Make a Game Like Flappy Bird in Swift Step 12: Finishing - - PowerPoint PPT Presentation

How to Make a Game Like Flappy Bird in Swift Step 12: Finishing Touches Shake let shake = SKAction.screenShakeWithNode(worldNode, amount: CGPoint(x: 0, y: 7.0), oscillations: 10, duration: 1.0) worldNode.runAction(shake) Flash Demo: Shake


slide-1
SLIDE 1

Step 12: Finishing Touches

How to Make a Game Like Flappy Bird in Swift

slide-2
SLIDE 2
slide-3
SLIDE 3

Shake

let shake = SKAction.screenShakeWithNode(worldNode, amount: CGPoint(x: 0, y: 7.0),

  • scillations: 10, duration: 1.0)

worldNode.runAction(shake)

slide-4
SLIDE 4

Flash

slide-5
SLIDE 5

Demo: Shake and Flash

slide-6
SLIDE 6

Finishing Touches

Player wobble Bug fixing Debug draw Icon and launch images

slide-7
SLIDE 7

Demo: Finishing Touches

slide-8
SLIDE 8

Challenge Time!