9 lines
265 B
C#
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);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|