Version: 2022.3
言語: 日本語

NavMesh.pathfindingIterationsPerFrame

マニュアルに切り替える
public static int pathfindingIterationsPerFrame ;

説明

The maximum number of nodes processed for each frame during the asynchronous pathfinding process.

During the pathfinding process, the pathfinder expands only a certain number of nodes (NavMesh polygons) for each frame. This allows for smoother gameplay when processing long paths or when processing a large number of requests concurrently. However, the path request might take many frames to process.

The iteration count only affects asynchronous pathfinding. This method of pathfinding is used when the NavMesh Agent destination is set with NavMeshAgent.SetDestination or NavMeshAgent.destination.

Increasing this value causes faster path processing but it might also cause frame rate issues. The default value is 100. An ideal value is between 50 and 500.