Skip to content

Instantly share code, notes, and snippets.

View andrewschmidt's full-sized avatar

Andrew Schmidt andrewschmidt

  • Los Angeles, CA
View GitHub Profile
from scene import *
class MyScene (Scene):
def setup(self):
tilt = gravity()
self.default_tilt = {'x': tilt.x, 'y': tilt.y}
print(tilt.x, tilt.y)
def draw(self):
background(0, 0, 0)