- This event has passed.
7 PM – Python Game Dev – Gamas
September 27 @ 7:00 pm - 8:00 pm
Today We Did
- We went over each individual project proposal.
- We finished Flappy duck project.
Homework
Make progress on your each individual project. The due date is Nov 29, 2024.
- Eugene
- Submit your proposal as soon as possible and text me.
- git clone this project – https://gitlab.com/gsugiart/20240927-eugene-pygame-project in your pycharm.
- Add all of your images and audio files into your project assets folder.
- Run your project
- Riley
- Add all of your images and audio files into your project assets folder.
- Create config.py and move some of the constants like screen’s WIDTH, HEIGHT, FPS to config.py and change the code inside main.py accordingly.
- Display your background image on the screen.
- Create tetris_block.py and create TetrisBlock sprite.
- Display the TetrisBlock sprite on the screen. You can use one of the tetris block for now. No need to display all of the Tetris block.
- Ryan
- Crop all of your player’s images to be sequence of images. According to https://opengameart.org/content/modern-rpg-guy, you need to have 4 images for each of the directions. So total you will have 16 images, 4 sequence of images per direction.
- Add all of your images and audio files into your project assets folder.
- Create config.py and move some of the constants like screen’s WIDTH, HEIGHT, FPS to config.py and change the code inside main.py accordingly.
- Display your background image on the screen.
- Create player.py and display the player on the screen.