From: <K-...@us...> - 2009-02-25 14:27:03
|
Revision: 280 http://virtplayground.svn.sourceforge.net/virtplayground/?rev=280&view=rev Author: K-4U Date: 2009-02-25 14:26:58 +0000 (Wed, 25 Feb 2009) Log Message: ----------- Changed the interval to 0.05 @ the walk-timer @ brains.py Please see the TODO item Modified Paths: -------------- branches/VP-Grounds/brains.py Modified: branches/VP-Grounds/brains.py =================================================================== --- branches/VP-Grounds/brains.py 2009-02-24 20:14:37 UTC (rev 279) +++ branches/VP-Grounds/brains.py 2009-02-25 14:26:58 UTC (rev 280) @@ -95,8 +95,9 @@ #Is our update timer NOT on? if self.walkUpdateTimer == None or self.walkUpdateTimer.isRunning == False: - #Start it also! - self.walkUpdateTimer = self.sh['Interface'].Timer(0.5, self.doWalkUpdate, notFirstTime=True) + #Start it also, at the same interval as our normal timer + #TODO: Merge these 2 timers together? + self.walkUpdateTimer = self.sh['Interface'].Timer(0.05, self.doWalkUpdate, notFirstTime=True) def doWalk(self): This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |