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