Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex <alex@Tiresias.(none)>2008-07-08 22:04:40 (GMT)
committer Alex <alex@Tiresias.(none)>2008-07-08 22:04:40 (GMT)
commit880b789b6a71a7ad894f57c13174315d69164c90 (patch)
tree65b010557012c0d82eef0a823e2014688f1cfc49
parent0a15e694cd6eb2949785b38f3b459aeafe9202b9 (diff)
still fixing the menu
-rw-r--r--physics.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/physics.py b/physics.py
index 5113110..88ca3eb 100644
--- a/physics.py
+++ b/physics.py
@@ -24,14 +24,14 @@ class PhysicsGame:
# setup tools
self.tools = {
- "Triangle": TriangleTool(self),
- "Box": BoxTool(self),
- "Circle": CircleTool(self),
- "Polygon": PolygonTool(self),
- "Magic Pen": MagicPenTool(self),
- "Joint": JointTool(self),
- "Grab": GrabTool(self),
- "Destroy": DestroyTool(self)
+ "triangle": TriangleTool(self),
+ "box": BoxTool(self),
+ "circle": CircleTool(self),
+ "polygon": PolygonTool(self),
+ "magicpen": MagicPenTool(self),
+ "joint": JointTool(self),
+ "grab": GrabTool(self),
+ "destroy": DestroyTool(self)
}
self.currentTool = self.tools["Triangle"]