|
|
@ -165,7 +165,7 @@ public class TrappedPathFind : MonoBehaviour |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
bool setPathCorners(Vector3 sourcePosition, Vector3 targetPosition, List<Vector3> corners) |
|
|
|
public bool setPathCorners(Vector3 sourcePosition, Vector3 targetPosition, List<Vector3> corners) |
|
|
|
{ |
|
|
|
{ |
|
|
|
NavMeshPath NavMeshPath = new NavMeshPath(); |
|
|
|
NavMeshPath NavMeshPath = new NavMeshPath(); |
|
|
|
NavMesh.CalculatePath(sourcePosition, targetPosition, filter, NavMeshPath); |
|
|
|
NavMesh.CalculatePath(sourcePosition, targetPosition, filter, NavMeshPath); |
|
|
@ -257,9 +257,9 @@ public class TrappedPathFind : MonoBehaviour |
|
|
|
} |
|
|
|
} |
|
|
|
private void setFloorMessage() |
|
|
|
private void setFloorMessage() |
|
|
|
{ |
|
|
|
{ |
|
|
|
//设置寻路对象楼层属性 |
|
|
|
//璁剧疆瀵昏矾瀵硅薄妤煎眰灞炴€? |
|
|
|
Vector3 adPos2 = transform.position; |
|
|
|
Vector3 adPos2 = transform.position; |
|
|
|
Ray ray = new Ray(adPos2, -Vector3.up); |
|
|
|
Ray ray = new Ray(adPos2 + Vector3.up, Vector3.down); |
|
|
|
RaycastHit hit = new RaycastHit(); |
|
|
|
RaycastHit hit = new RaycastHit(); |
|
|
|
if (Physics.Raycast(ray, out hit, 1000, LayerMask.GetMask("SoldierRoad", "CarRoad"))) |
|
|
|
if (Physics.Raycast(ray, out hit, 1000, LayerMask.GetMask("SoldierRoad", "CarRoad"))) |
|
|
|
{ |
|
|
|
{ |
|
|
@ -274,6 +274,12 @@ public class TrappedPathFind : MonoBehaviour |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
|
|
|
/// 判断当前位置到目标点是否能到达 |
|
|
|
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
/// <param name="endpoint"></param> |
|
|
|
|
|
|
|
/// <param name="corners"></param> |
|
|
|
|
|
|
|
/// <returns></returns> |
|
|
|
public List<Vector3> GetPathCornert(Vector3 endpoint, List<Vector3> corners) |
|
|
|
public List<Vector3> GetPathCornert(Vector3 endpoint, List<Vector3> corners) |
|
|
|
{ |
|
|
|
{ |
|
|
|
List<Vector3> gocornert = new List<Vector3>(); |
|
|
|
List<Vector3> gocornert = new List<Vector3>(); |
|
|
@ -291,7 +297,7 @@ public class TrappedPathFind : MonoBehaviour |
|
|
|
/// <param name="destinationPos">终点位置</param> |
|
|
|
/// <param name="destinationPos">终点位置</param> |
|
|
|
/// <param name="corners">可寻路路径拐角点集合</param> |
|
|
|
/// <param name="corners">可寻路路径拐角点集合</param> |
|
|
|
/// <returns>返回是否有可寻路路径</returns> |
|
|
|
/// <returns>返回是否有可寻路路径</returns> |
|
|
|
private bool SetPathCorners(Vector3 startingPos, Vector3 destinationPos, List<Vector3> corners) |
|
|
|
public bool SetPathCorners(Vector3 startingPos, Vector3 destinationPos, List<Vector3> corners) |
|
|
|
{ |
|
|
|
{ |
|
|
|
NavMesh.CalculatePath(startingPos, destinationPos, filter, path); |
|
|
|
NavMesh.CalculatePath(startingPos, destinationPos, filter, path); |
|
|
|
Vector3[] tempCorners = new Vector3[path.corners.Length]; |
|
|
|
Vector3[] tempCorners = new Vector3[path.corners.Length]; |
|
|
|