From 1f6c3c356cf8e1376d26517ab2fc7d713f02615b Mon Sep 17 00:00:00 2001 From: davesilver Date: Tue, 27 Jul 2010 15:14:08 +0000 Subject: Editing Sprite tests --- (limited to 'devtools/CompleteTestKit') diff --git a/devtools/CompleteTestKit/DynamicDrawableObject2.py b/devtools/CompleteTestKit/DynamicDrawableObject2.py index 0aa3229..281c0db 100644 --- a/devtools/CompleteTestKit/DynamicDrawableObject2.py +++ b/devtools/CompleteTestKit/DynamicDrawableObject2.py @@ -52,12 +52,13 @@ class DynamicDrawableObject(DrawableObject, pygame.sprite.Sprite): #if self.animations[cnt] == self._current_anim: timePassed = t + self._last_update + print timePassed if (timePassed) > self._delay: if self._frame < self.animations.get(self._current_anim)[0] or self._frame > self.animations.get(self._current_anim)[1]: #checking if I am in the animation and putting me there if I am not - print "oh god no" self._frame = self.animations.get(self._current_anim)[0] self._frame += timePassed/self._delay + print self._frame while self._frame >= self.animations.get(self._current_anim)[1]: framesPast = self._frame - self.animations.get(self._current_anim)[1] -- cgit v0.9.1