コード例 #1
0
ファイル: Steering.cs プロジェクト: Benedict-SC/doom-dial
 public void FollowPath(AIPath path)
 {
     if(rt == null){
         rt = GetComponent<RectTransform>();
     }
     Vector2 target = path.PathFollowingTarget(rt.anchoredPosition,lookAhead);
     pftarget = target;
     Seek (target);
 }
コード例 #2
0
ファイル: Steering.cs プロジェクト: Benedict-SC/doom-dial
    public void FollowPath(AIPath path)
    {
        if (rt == null)
        {
            rt = GetComponent <RectTransform>();
        }
        Vector2 target = path.PathFollowingTarget(rt.anchoredPosition, lookAhead);

        pftarget = target;
        Seek(target);
    }