Skip to content

Instantly share code, notes, and snippets.

@KramKroc
Created May 27, 2020 20:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KramKroc/c97e7869e762ac8a311ac34349c154ef to your computer and use it in GitHub Desktop.
Save KramKroc/c97e7869e762ac8a311ac34349c154ef to your computer and use it in GitHub Desktop.
Add colour to the background
import random
WIDTH = 600
HEIGHT = 400
alien = Actor('alien', midbottom=(100,200))
def draw():
screen.fill((240, 6, 253))
alien.draw()
def update():
alien.left += 5
if alien.left > WIDTH:
alien.topright = 0, random.randint(25, 375)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment