ValidationReport(Bounds)
Validates the properties of NavMeshBuildSettings.
Read time 1 minuteLast updated 9 days ago
Definition
- Type: Method
- Namespace: UnityEngine.AI
- Assembly: UnityEngine.AIModule
public string[] ValidationReport(Bounds buildBounds)
Parameters
Describes the volume to build NavMesh for.
Returns
Type | Description |
|---|---|
| string[] | The list of violated constraints. |
Remarks
Returns a string of violated constraints. - and suggestions for changes for the current values in the build settings and the provided bounds for building the NavMesh.
An empty array is returned if all internal constraints are satisfied.
Some of the settings which you can specify in the NavMeshBuildSettings struct are coupled to each other, meaning there are constraints on the values based on other values. For example, it’s not valid for _agentClimb to be larger than _agentHeight. Another invalid case is when the vertical size of the buildBounds exceeds the height of 65535 voxel units.
You can use this function to check if the values in NavMeshBuildSettings violate any of the constraints, before starting the NavMesh building process.
Ignoring the violated constraints might give unexpected results when building a NavMesh, but will still produce a NavMesh.