コード例 #1
0
 public override BlendBase Lerp(BlendBase from, BlendBase to, float progress)
 {
     if (from is BlendPosition _from && to is BlendPosition _to)
     {
         position = Vector3.Lerp(_from.position, _to.position, progress);
     }
     return(this);
 }
コード例 #2
0
 public override BlendBase Copy(BlendBase target)
 {
     if (target is BlendPosition _target)
     {
         position = _target.position;
     }
     return(this);
 }
コード例 #3
0
ファイル: BlendTree.cs プロジェクト: Zhang-DongSheng/Game
 public abstract BlendBase Copy(BlendBase target);
コード例 #4
0
ファイル: BlendTree.cs プロジェクト: Zhang-DongSheng/Game
 public abstract BlendBase Lerp(BlendBase from, BlendBase to, float progress);