From ec034421db0933df5065dd681320ea39e96fc616 Mon Sep 17 00:00:00 2001 From: nrp Date: Sun, 14 Sep 2008 18:06:33 +0000 Subject: making joints delete correctly --- (limited to 'physics.py') diff --git a/physics.py b/physics.py index 57c9d46..f9afca1 100644 --- a/physics.py +++ b/physics.py @@ -67,18 +67,15 @@ class PhysicsGame: # Clear Display self.screen.fill((80,160,240)) #255 for white - - # Update & Draw World self.world.update() self.world.draw() - if self.world.run_physics: self.bridge.for_each_frame() - + # draw output from tools self.currentTool.draw() - + #Print all the text on the screen text = self.font.render(_("Total Cost: %d") % self.bridge.cost, True, (0,0,0)) textpos = text.get_rect(left=100,top=7) -- cgit v0.9.1