com.alicizax.unity.animatio.../Runtime/Core/Animation/RotateBy.cs
陈思海 11e5744b46 init
2025-02-07 16:05:13 +08:00

9 lines
265 B
C#

namespace AlicizaX.AnimationFlow.Runtime {
public class RotateBy : RotateTo {
public override void OnUpdate(float dt) {
target.localEulerAngles = Easing.Ease(easyType, enterValue, enterValue + to, elapsedTime / duration);
}
}
}