Main/Component/UI/Decorate/Tweens/ScaleTween.cs
@@ -1,7 +1,7 @@ using UnityEngine; using System.Collections; public class ScaleTween : Tween public class ScaleTween : TweenEx { public override void SetStartState() { @@ -23,7 +23,14 @@ protected override void OnOnceEnd() { this.transform.localScale = reversal ? from : to; if (wrapMode == WrapMode.PingPongOnce) { SetStartState(); } else { this.transform.localScale = reversal ? from : to; } base.OnOnceEnd(); }