9 AM – Python Game Development
We went over how to increase the score when the Fireball hit the bird. Homework: When the cloud goes off the screen, kill the cloud. Look at how we did it inRead More...
We went over how to increase the score when the Fireball hit the bird. Homework: When the cloud goes off the screen, kill the cloud. Look at how we did it inRead More...
Homework: Add "assets/audio/Happy Baby.wav" To do your final project properly, you need to be able to share your code project with your team members and me. In order to do that, weRead More...
We went over how to add platforms into the game. We learned how to push codes into gitlab Homework: inside main.py, enhance create_platform() method to have all the platforms needed for theRead More...
We went over the classes homework. We learned about inheritance and created a Student and Doctor class inheriting from Human. Homework: Read and do the examples and exercises from page 167 toRead More...
We started Birdie project We learned how to load an image into the memory self.bird = pygame.image.load("assets/bird01_A.png") We learned how to draw an loaded image into the screen self.screen.blit(self.bird, (0,0)) We learnedRead More...