|
bool | Raycast (Vector3 start, Vector3 end, out float hit) |
| Cast a ray against the blocking triangles of the volume, and return the nearest hit. More...
|
|
bool | Raycast (Vector3 start, Vector3 end) |
| Cast a ray against the blocking triangles of the volume, and return if there was a hit. More...
|
|
override void | Register () |
| Register this volume in the Instances dictionary and perform initialization. This can be used in edit mode to create the native data. It does not need to be called at runtime. More...
|
|
override void | Deregister (bool destroyData) |
| Remove this volume from the Instances dictionary, and optionally destroy its native data. More...
|
|
void | UpdateNativeData (in TNativeData newData, in TPointers newPointers, bool updateSerializedAreaData, bool updateSerializedLinkData, IReadOnlyList< string > externalLinkScenePaths=null) |
| Update native data for the nav area, optionally referencing new arrays. More...
|
|
|
NavVolumeVisualizationMode | VisualizationMode [get, set] |
| Stage at which to visualize the volume bake process in the scene view. More...
|
|
TData | Data [get, set] |
|
ref readonly TNativeData | NativeData [get] |
| The native data for the volume. Will not be initialized until the volume is registered. More...
|
|
ref readonly TPointers | DataStructurePointers [get] |
| The internal pointers to the native data for the volume. More...
|
|
TSettings | InstanceSettings [get, set] |
| Settings specific to this area instance. On set, SharedSettings will be set to null. More...
|
|
NavAreaBaseSettingsAsset< TSettings > | SharedSettings [get, set] |
| Shared settings asset for all areas of this type. If not null, InstanceSettings will be ignored. More...
|
|
TSettings | Settings [get] |
| The settings object in use by this area, whether shared or instance. The returned object, while mutable, should not be modified directly as it may reference a ScriptableObject. More...
|
|
override NavAreaBaseSettings | BaseSettings [get] |
|
override bool | IsNativeDataCreated [get] |
|
static IReadOnlyDictionary< long, TArea > | Instances [get] |
| All currently loaded volumes. More...
|
|
A volume of space in which HyperNav pathfinding can occur.
Each NavVolume is divided into convex regions that form pathfinding nodes. A volume's regions can have connections to each other, and to regions of other volumes. The information in a NavVolume must be baked in the editor - it cannot be calculated at runtime (for now).