Today We Did
We continued with Shoot Balloon project. We added balloon sprite.
Homework
- Riley
- Create gray_block.py which is going to be a single block of sprite. Please use this image and add a hitbox for this sprite.

- practice iterating 2 dimensional python array:
my_array = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
for row in my_array:
for element in row:
print(element)
my_array = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
for i in range(len(my_array)):
for j in range(len(my_array[i])):
print(my_array[i][j])
- Eugene
- Add score and display the score on the screen portion.
- Add collision detection between the hammer and button. Increase score when the button is hit. Decrease score when the button is not there.
- Have 2 sound effect, one success hit, one not success hit.
- Add a timer inside button.py, when button appear, start the timer, when timer <= 0, kill() the sprite