コード例 #1
0
ファイル: LerpScale.cs プロジェクト: Gengis-Khan/UnityUtils
 private IEnumerator LerpCoro(GameObject coroHost, Func<Vector3> targetScaleFun, float duration)
 {
     yield return coroHost.LerpLocalScale(targetScaleFun(), duration);
     yield return null;
 }