- This event has passed.
2 PM – Python Game Dev – Gamas
June 15 @ 2:00 pm - 3:00 pm
Today We Did
- We discussed about each team project and how to make them better.
- We continued with Shoot Balloon project.
- We enabled Game Win and Game Over page.
Homework
- Max
- Credit page
- Advisor: SEBASTIAN CEVALLOS
- School: American Young Coder
- Reposition the text to be on the top of the button
- Center the button.
- Change the game asset using https://opengameart.org/content/snake-sprites-2d.
- Make the enemy able to move left and right.
- You need to change your Enemy sprite __init__ method to have
- min_x
- max_x
- direction
- Add code inside enemy.update() method so the enemy will move LEFT and RIGHT.
- When Enemy x < min_x change direction to RIGHT
- When Enemy x > max_x change direction to LEFT
- You need to change your Enemy sprite __init__ method to have
- If you can make the body grows as you eat eggs.
- Credit page
Merinda
- The landing page TAG, the color should be contrast.
- The credit text color has to be brighter and shift them up a little bit.
- Advisor: Sebastian Celavos
- School: American Young Coder
- After Game Over, display Play button so user can restart the game. Make sure to reset the time and player location and the Player IT when you restart game.
- Dereck
- Add gravity to the player. Look at code inside Flappy Bird.
- Inside player sprite __init__, add max_y param.
- Set initial value of max_y = zone_1_y. zone_1_y is the zone 1 floor y coordinate.
- and make sure when player.y > max_y change the player.y to max_y – 1. This will make sure the player does not fall bellow the floor.