Skip to content

Instantly share code, notes, and snippets.

@KramKroc
Created May 26, 2020 20:55
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/366a679cb1508673e09555a15f814164 to your computer and use it in GitHub Desktop.
Save KramKroc/366a679cb1508673e09555a15f814164 to your computer and use it in GitHub Desktop.
Move our character to the right
WIDTH = 200
HEIGHT = 200
alien = Actor('alien', midbottom=(100,200))
def draw():
screen.clear()
alien.draw()
def update():
alien.left += 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment