Completed
Video overview & code setup
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Professional Code Refactor - Cleaning Python Code and Rewriting It to Use Classes
Automatically move to the next video in the Classroom when playback concludes
- 1 Video overview & code setup
- 2 Creating a Player Class
- 3 Creating subclasses for our Enemy & HumanPlayer
- 4 Creating a Color class
- 5 Creating a screen class or all our game visuals
- 6 Creating a game class for all our game logic
- 7 Information on Getters & Setters in Python
- 8 Bringing it all together in our main.py file!
- 9 Testing our code & Debugging issues
- 10 if _name_ == "__main__" information
- 11 Creating more difficult game levels using our new class structure!
- 12 Fixing the "cheat" where you can go off the screen
- 13 Loading in custom images as the enemy blocks