コード例 #1
0
ファイル: UCL_TweenerCurve.cs プロジェクト: tim099/UCL_Tween
 virtual public UCL_TweenerCurve Init(Transform _target, Core.MathLib.UCL_Path _path, float _duration)
 {
     Duration = _duration;
     m_Path   = _path;
     m_Target = _target;
     return(this);
 }
コード例 #2
0
ファイル: UCL_TweenerCurve.cs プロジェクト: tim099/UCL_Tween
 static public UCL_TweenerCurve UCL_Move(this Transform target, float duration, Core.MathLib.UCL_Path path)
 {
     return(UCL_TweenerCurve.Create().Init(target, path, duration));
 }