From 233d543dab3f0a656d1e34ed306a08ffcee85c73 Mon Sep 17 00:00:00 2001 From: Daniel Drake Date: Sat, 30 Aug 2008 22:49:32 +0000 Subject: destroy joints when excess force is applied --- (limited to 'physics.py') diff --git a/physics.py b/physics.py index b76db14..b2ca2cb 100644 --- a/physics.py +++ b/physics.py @@ -59,6 +59,9 @@ class PhysicsGame: self.currentTool.handleEvents(event) # Clear Display self.screen.fill((255,255,255)) #255 for white + + if self.world.run_physics: + self.bridge.for_each_frame() # Update & Draw World self.world.update() @@ -71,6 +74,7 @@ class PhysicsGame: text = self.font.render("Current Tool: "+self.currentTool.name, True, (255,255,255)) textpos = text.get_rect(left=700,top=7) self.screen.blit(text,textpos) + # Flip Display pygame.display.flip() -- cgit v0.9.1