Skip to content

Instantly share code, notes, and snippets.

@hortonew
Last active December 10, 2015 23:08
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 hortonew/4507014 to your computer and use it in GitHub Desktop.
Save hortonew/4507014 to your computer and use it in GitHub Desktop.
Pyglet - Clear Screen
import pyglet
screen = pyglet.window.Window(800,600)
@screen.event
def on_draw():
screen.clear()
if __name__ == "__main__":
pyglet.app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment