Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/physics.py
diff options
context:
space:
mode:
Diffstat (limited to 'physics.py')
-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"]