Version: 2023.1
언어: 한국어
Experimental: this API is experimental and might be changed or removed in the future.

NavMeshQuery.MoveLocationsInSameAreas

매뉴얼로 전환
public void MoveLocationsInSameAreas (NativeSlice<NavMeshLocation> locations, NativeSlice<Vector3> targets, int areaMask);

파라미터

locations Array of positions to be moved across the NavMesh surface. At the end of the method call this array contains the resulting locations.
targets World positions you want the agent to reach when moving to each of the locations.
areaMask Filters for the areas which can be traversed during the movement to each of the locations.

설명

Translates a series of NavMesh locations to other positions without losing contact with the surface, given one common area filter for all of them.

Does the exact same thing as NavMeshQuery.MoveLocations only it applies the same area filter to all the movements.

See Also: NavMeshQuery.MoveLocation, NavMeshLocation.