From 24959a514a0e1da2fab982e5d99bdb2d2d5c4db3 Mon Sep 17 00:00:00 2001 From: David Rose Date: Tue, 20 Aug 2002 20:48:08 +0000 Subject: [PATCH] remove debug statement --- direct/src/interval/ActorInterval.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/direct/src/interval/ActorInterval.py b/direct/src/interval/ActorInterval.py index 50d3160b7a..e030433c34 100644 --- a/direct/src/interval/ActorInterval.py +++ b/direct/src/interval/ActorInterval.py @@ -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)