Class SceneNavigation
Scene navigation subsystem.
Assembly: FlaxEngine.dll
File: Engine/Level/Scene/SceneNavigation.h
Syntax
public class SceneNavigation
Scene navigation subsystem.
public class SceneNavigation
The list of registered navigation-relevant actors (on the scene).
public Array<Actor* > Actors
Array<Actor >
|
The list of registered navigation meshes (on the scene).
public Array<NavMesh* > Meshes
Array<NavMesh >
|
The list of registered navigation bounds volumes (on the scene).
public Array<NavMeshBoundsVolume* > Volumes
Array<NavMeshBoundsVolume >
|
Clears this instance data.
public void Clear()
Finds the navigation volume bounds that have intersection with the given world-space bounding box.
public NavMeshBoundsVolume* FindNavigationBoundsOverlap(const BoundingBox& bounds)
BoundingBox
bounds
The bounds. |
NavMeshBoundsVolume
The intersecting volume or null if none found. |
Gets the total navigation volumes bounds.
public BoundingBox GetNavigationBounds()
BoundingBox
|