Beispiel #1
0
        protected override void Reset()
        {
            Stop();

            if (AutoCleanup)
            {
                cleanUp();
            }

            base.Reset();

            this.Mode        = TweenGroupMode.Sequential;
            this.AutoCleanup = false;

            this.tweenList.Clear();
        }
Beispiel #2
0
 /// <summary>
 /// Set the sequence type of this tween group
 /// </summary>
 public TweenGroup SetMode(TweenGroupMode mode)
 {
     this.Mode = mode;
     return(this);
 }