はじめに 「Easing Functions For C# and Unity」を Unity プロジェクトに導入することで 40 種類のイージングを使用できるようになります 使用例 using UnityEngine; public class ExampleClass : MonoBehaviour { private void Update() { var value = Mathf.PingPong( Time.time, 1 ); var type = EasingLerps.EasingLe…