Fixed time-based animations to fire at the appropriate time.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1923 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Walter Korman
2002-11-06 07:40:05 +00:00
parent 9e9dc24b72
commit 573fe5504b
@@ -1,5 +1,5 @@
//
// $Id: AnimationSequencer.java,v 1.11 2002/11/06 01:39:32 mdb Exp $
// $Id: AnimationSequencer.java,v 1.12 2002/11/06 07:40:05 shaper Exp $
package com.threerings.media.animation;
@@ -174,7 +174,7 @@ public abstract class AnimationSequencer extends Animation
true : !_running.contains(_trigger);
} else {
return (lastStamp + _delta >= now);
return (lastStamp + _delta <= now);
}
}