lcy
2025-11-06 09bc892c7283df8757a07b646d5af21ddaa263d1
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();
    }