Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/physics.py
diff options
context:
space:
mode:
authorGary Martin <gary@garycmartin.com>2009-08-24 02:23:01 (GMT)
committer Gary Martin <gary@garycmartin.com>2009-08-24 02:23:01 (GMT)
commit1c9d53c36e0190c166780642b1a829c0866018ef (patch)
treee80150dd6acf147eafd18dc49c1d31c1303535d9 /physics.py
parent61d396581b4dbf321689729f8a15bd226412b16e (diff)
First pass as Sugar like cursors (needs some AA pixel work).
Diffstat (limited to 'physics.py')
-rw-r--r--physics.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/physics.py b/physics.py
index 6a1399b..21d3beb 100644
--- a/physics.py
+++ b/physics.py
@@ -49,6 +49,9 @@ class PhysicsGame:
# set up static environment
self.world.add.ground()
+
+ a, b, c, d = pygame.cursors.load_xbm("standardcursor.xbm", "standardcursor_mask.xbm")
+ pygame.mouse.set_cursor(a, b, c, d)
def run(self):
self.running = True