6 PM – Python Game Development
6 PM – Python Game Development
we continued with Birdie project. We made the bird moved from right to left We were able to draw more than one bird in the screen We started Bird class. Homework: AddRead More...
we continued with Birdie project. We made the bird moved from right to left We were able to draw more than one bird in the screen We started Bird class. Homework: AddRead More...
Homework: Make the bird Y coordinate random from 0 to the height of the screen.
We went over Dog class We learned inheritance by creating SamoyedDog and Doberman classes which inhenrits from Dog class. Homework: P.168 to 169.
We continued with Flappy Duck project. We made the Tube appear from top and bottom We made the Tube appear less frequently. Homework Move all the constants variable from main to config.pyRead More...
We completed Player class. Homework: Integrate Player class into main.py For example, look at how we integrated Bird class into main.py import the Player class create player_group add Player into player_group inRead More...
We completed class inheritance topic. We did Car and ElectricCar exercises. We downloaded Birdie game assets from google drive. Homework: Download and install Python 3.7 and Pycharm into your computer. Go toRead More...
We went over how to make the Tube appear from both the bottom and top of the screen. We added gravity to the player. Homework: Make the tube height dynamic by makingRead More...
We installed Pycharm properly. We learned how to load images in Pygame. We loaded background image We loaded bird image. Homework: similar to bird01_A.png, load bird02_A.png into the screen. Follow the exampleRead More...
We added an invisible scoreline so when the Duck goes through the Tube gap, the program can increase the score. Homework: Add the background song. When the player collides with the Scoreline,Read More...
We completed creating random bird from left and right. We completed the code to make the bird face left and right based on their directions. Homework: Study the codes and come upRead More...
We made the player able to move left and right and made it face left and right accordingly. We added Bullet sprite. Homework: Integrate Bullet into the main.py Look at how weRead More...
We went over how to make the bird move horizontally We went over how to make the bird flaps its wings Homework: Load the third bird The bird should appear on theRead More...
We started Player class for displaying Player character on the game. You can find all the latest files in the google drive. Homework: Integrate Player class into main.py Look at how weRead More...
We reviewed Test result We learned about Python Dictionary. Homework: Page 93 to 97
Homework: When the player launch the fireball, the fireball always face to the right. Even when the player is facing left. So when fireball is created, make sure you use the rightRead More...
We continued with Bird class. We learned about Pygame.sprite.Group() We learned on how to randomize the bird images. Homework: I have uploaded all the latest python files into google drive. Move theRead More...
Flappy Duck project Player vs Scoreline collision detection (DONE) Player vs Tube collision detection (DONE) When Player hit tubes, display Player hit image. Add Score label to the top left corner ofRead More...