Version: 2018.4
Experimental: this API is experimental and might be changed or removed in the future.

NavMeshQuery.IsValid

マニュアルに切り替える
public bool IsValid (Experimental.AI.PolygonId polygon);

パラメーター

polygonIdentifier of the NavMesh node to be checked.

説明

Returns true if the node referenced by the specified PolygonId is active in the NavMesh.

NavMesh nodes become invalid when the NavMesh surface or the links they belong are removed or when they have been replaced due to modification of the NavMesh in their region. The NavMesh surface and links may be removed by calls to NavMesh.RemoveNavMeshData, NavMesh.RemoveLink. The NavMesh is modified by calling NavMeshBuilder.UpdateNavMeshData or carving the NavMesh using a NavMeshObstacle.


public bool IsValid (Experimental.AI.NavMeshLocation location);

パラメーター

locationLocation on the NavMesh to be checked. Same as checking location.polygon directly.

説明

Returns true if the node referenced by the PolygonId contained in the NavMeshLocation is active in the NavMesh.