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...
Today we did: Started Hangman game How to make unicode characters How to multiply strings Homework: In the hangman while loop (replace pass): Print the 9 lives symbol Ask the user "GuessRead More...
Today We: Added a present that comes in from the right side of the screen We used our face as a sprite We duplicated to make two faces We made the facesRead 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...
Today we were mostly able to complete the Christmas Project. For Homework: Please add in your faces if you haven't already for homework. Also add in a few more phrases for theRead More...
Today we finished coding the dinosaurs in Dino Dance Homework: Follow the codes from pg. 43-45 from the book Do the "Might as Well Jump" section in pg. 47
We completed Robot Builder project. We started Drawing complex shapes. Homework: Create a final project proposal in a piece of paper It needs to have color. It needs to combination of rectangle,Read More...
Today we continued with the Christmas Card project. For Homework: Please add in the new variable index, I will explain it more next week. Add in more of the phrases that IRead More...
Today we went over: The While Loop homework (pgs. 121, 123) Announced a quiz that will take place during class on 12/19 An overview of everything we've learned so far (can beRead 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...