mirror of
https://github.com/Cardidi/dotween-upm-fork.git
synced 2025-12-20 17:26:03 +08:00
10 lines
158 B
C#
10 lines
158 B
C#
using UnityEngine;
|
|
|
|
|
|
public static class GoEaseLinear
|
|
{
|
|
public static float EaseNone( float t, float b, float c, float d )
|
|
{
|
|
return c * t / d + b;
|
|
}
|
|
} |