Common Computer Science References
At the end of this lesson, you will be able to:
keep score
alien list
to keep score we will have to change text
this means we will have to "re-draw" the on-screen text each time the text needs to be changed
we will only do this if we shoot an alien
show demo of point system
add point system
1 point for every alien shot
-1 points every time an alien falls off the bottom
NO going below 0!
Adding score text to top of screen
When a laser touches an alien, now add 1 to the score and re-draw whole screen
If an alien goes off the bottom, score goes down by 1
This is "Blinka" the CircuitPython mascot.