*** empty log message ***

This commit is contained in:
Mike Goslin 2001-06-05 23:29:33 +00:00
parent 595f5f730d
commit fd4f644e1a
1 changed files with 4 additions and 1 deletions

View File

@ -51,7 +51,10 @@ class ActorInterval(Interval):
# Update animation based upon current time
# Pose or stop anim
if (t >= self.getDuration()):
self.actor.stop()
if (self.actor != None):
self.actor.stop()
else:
self.notify.warning('updateFunc() - actor == None!')
if self.loop:
self.ignore(self.stopEvent)
elif self.loop == 1: