How to Make a Game Like Flappy Bird in Swift€¦ · How to Make a Game Like Flappy Bird in Swift...

12
How to Make a Game Like Flappy Bird in Swift Step 1: Scene Size and Aspect Ratios

Transcript of How to Make a Game Like Flappy Bird in Swift€¦ · How to Make a Game Like Flappy Bird in Swift...

Page 1: How to Make a Game Like Flappy Bird in Swift€¦ · How to Make a Game Like Flappy Bird in Swift Step 1: Scene Size and Aspect Ratios. Prerequisites Swift Knowledge Swift Video Tutorials

How to Make a Game Like Flappy Bird

in Swift

Step 1: Scene Size and Aspect Ratios

Page 2: How to Make a Game Like Flappy Bird in Swift€¦ · How to Make a Game Like Flappy Bird in Swift Step 1: Scene Size and Aspect Ratios. Prerequisites Swift Knowledge Swift Video Tutorials
Page 3: How to Make a Game Like Flappy Bird in Swift€¦ · How to Make a Game Like Flappy Bird in Swift Step 1: Scene Size and Aspect Ratios. Prerequisites Swift Knowledge Swift Video Tutorials
Page 4: How to Make a Game Like Flappy Bird in Swift€¦ · How to Make a Game Like Flappy Bird in Swift Step 1: Scene Size and Aspect Ratios. Prerequisites Swift Knowledge Swift Video Tutorials

Prerequisites

Swift Knowledge Swift Video Tutorials iOS Apprentice

Sprite Kit Knowledge Free tutorials on our site iOS Games by Tutorials

… or YOLO!

Page 5: How to Make a Game Like Flappy Bird in Swift€¦ · How to Make a Game Like Flappy Bird in Swift Step 1: Scene Size and Aspect Ratios. Prerequisites Swift Knowledge Swift Video Tutorials

Aspect Ratios and Screen Sizes

Page 6: How to Make a Game Like Flappy Bird in Swift€¦ · How to Make a Game Like Flappy Bird in Swift Step 1: Scene Size and Aspect Ratios. Prerequisites Swift Knowledge Swift Video Tutorials

Scene Size vs. Screen Size

Aspect Fill Aspect Fit Fill

Scene Size 640x640

Page 7: How to Make a Game Like Flappy Bird in Swift€¦ · How to Make a Game Like Flappy Bird in Swift Step 1: Scene Size and Aspect Ratios. Prerequisites Swift Knowledge Swift Video Tutorials

Option 1: Same Scene Size, Aspect Fill

Page 8: How to Make a Game Like Flappy Bird in Swift€¦ · How to Make a Game Like Flappy Bird in Swift Step 1: Scene Size and Aspect Ratios. Prerequisites Swift Knowledge Swift Video Tutorials

Problem: Cuts Off Evenly

Page 9: How to Make a Game Like Flappy Bird in Swift€¦ · How to Make a Game Like Flappy Bird in Swift Step 1: Scene Size and Aspect Ratios. Prerequisites Swift Knowledge Swift Video Tutorials

Option 2: Same Width, Different Aspect Ratio

Width: 320 Height: 320 x ratio 320 x 1.5 = 480 320 x 1.7777 = 568

320x480 320x568

Page 10: How to Make a Game Like Flappy Bird in Swift€¦ · How to Make a Game Like Flappy Bird in Swift Step 1: Scene Size and Aspect Ratios. Prerequisites Swift Knowledge Swift Video Tutorials

Adding Background1.77 aspect ratio

1.5 aspect ratioBackground.png

Ground.pngplayableStart

0

winSize.height

playableHeight

Page 11: How to Make a Game Like Flappy Bird in Swift€¦ · How to Make a Game Like Flappy Bird in Swift Step 1: Scene Size and Aspect Ratios. Prerequisites Swift Knowledge Swift Video Tutorials

Demo: Adding Background

Page 12: How to Make a Game Like Flappy Bird in Swift€¦ · How to Make a Game Like Flappy Bird in Swift Step 1: Scene Size and Aspect Ratios. Prerequisites Swift Knowledge Swift Video Tutorials

Challenge Time!