remove debug statement

This commit is contained in:
David Rose 2002-08-20 20:48:08 +00:00
parent fc93752d3f
commit 24959a514a
1 changed files with 0 additions and 2 deletions

View File

@ -164,8 +164,6 @@ class LerpAnimInterval(Interval.Interval):
# Then compute the current weight based on the time elapsed so far.
w = self.startWeight + t * self.deltaWeight
print "t = %f, w = %f" % (t, w)
# Apply that weight to the two anims.
self.actor.setControlEffect(self.endAnim, w)
self.actor.setControlEffect(self.startAnim, 1.0 - w)