Version: 2022.1
LanguageEnglish
  • C#

NavMeshBuilder.CollectSourcesInStage

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Creates a list of build sources directly from the current geometry in the specified editor stage. (UnityEditor)

The collection can be controlled in terms of layers, type of geometry and by collecting either by hierarchy or volume. The stageProxy parameter is used for picking objects from either the main stage or the stage of a prefab opened for editing. At runtime that parameter is ignored since objects can only be part of the main scenes. All main scenes are part of the same main stage while prefab scenes are each assigned to its own separate prefab stage.


Declaration

public static void CollectSourcesInStage(Bounds includedWorldBounds, int includedLayerMask, AI.NavMeshCollectGeometry geometry, int defaultArea, List<NavMeshBuildMarkup> markups, SceneManagement.Scene stageProxy, List<NavMeshBuildSource> results);

Parameters

includedWorldBounds The queried objects must overlap these bounds to be included in the results.
includedLayerMask Specifies which layers are included in the query.
geometry Which type of geometry to collect - e.g. physics colliders.
defaultArea Area type to assign to results, unless modified by NavMeshMarkup.
markups List of markups which allows finer control over how objects are collected.
stageProxy Results are selected only from the stage to which this scene belongs.
results List where results are stored, the list is cleared at the beginning of the call.

Description

Collects renderers or physics colliders, and terrains within a volume. (UnityEditor)


Declaration

public static void CollectSourcesInStage(Transform root, int includedLayerMask, AI.NavMeshCollectGeometry geometry, int defaultArea, List<NavMeshBuildMarkup> markups, SceneManagement.Scene stageProxy, List<NavMeshBuildSource> results);

Parameters

root If not null, consider only root and its children in the query; if null, includes everything loaded.
includedLayerMask Specifies which layers are included in the query.
geometry Which type of geometry to collect - e.g. physics colliders.
defaultArea Area type to assign to results, unless modified by NavMeshMarkup.
markups List of markups which allows finer control over how objects are collected.
stageProxy Results are selected only from the stage to which this scene belongs.
results List where results are stored, the list is cleared at the beginning of the call.

Description

Collects renderers or physics colliders, and terrains within a transform hierarchy. (UnityEditor)