Completed
Doodle Jump game logic
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
JavaScript Tutorial: Build Flappy Bird and Doodle Jump
Automatically move to the next video in the Classroom when playback concludes
- 1 Introduction
- 2 Introduction to Doodle Jump
- 3 Doodle Jump game logic
- 4 Setting up our game
- 5 Creating our doodler
- 6 Creating our platforms
- 7 Creating our Platform Class
- 8 Moving our platforms
- 9 Making our doodler jump
- 10 Making our doodler fall
- 11 Writing our game over logic
- 12 Hooking up our keyboard keys
- 13 Making our doodler go left and right
- 14 Removing and adding new platforms using array work
- 15 Removing all children of the grid using a while loop
- 16 adding the score
- 17 Flappy Bird introduction
- 18 Flappy Bird game logic
- 19 Setting up our project
- 20 Writing our start game logic
- 21 Making our bird jump
- 22 Hooking up our keyboard keys
- 23 Generate a pipe obstacle
- 24 Move the obstacle
- 25 Generate new obstacles using setInterval() and setTimeout()
- 26 Write our game over logic
- 27 We learn how to add images to our project
- 28 We expand our collision rules using && and ||
- 29 We add the final stages of styling learning about z-index