We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d4ec27 commit 68717a9Copy full SHA for 68717a9
source/feathers/motion/effectClasses/BaseEffectContext.as
@@ -198,7 +198,10 @@ package feathers.motion.effectClasses
198
*/
199
public function set position(value:Number):void
200
{
201
- if(value > MAX_POSITION)
+ // there are some quirks with Starling tweens where we want to avoid
202
+ // going all of the way to the end, unless the tween is currently
203
+ // playing
204
+ if(!this._playing && value > MAX_POSITION)
205
206
value = MAX_POSITION;
207
}
0 commit comments