Infohazard.HyperNav 2.1.0
A pathfinding and avoidance solution for volumetric and omnidirectional navigation.
Loading...
Searching...
No Matches
Infohazard.HyperNav.NavVolume Class Reference

A volume of space in which HyperNav pathfinding can occur. More...

Public Member Functions

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...
 
- Public Member Functions inherited from Infohazard.HyperNav.NavArea< NavVolume, NavVolumeData, NativeNavVolumeData, NativeNavVolumeDataPointers, NavVolumeSettings >
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...
 

Properties

NavVolumeVisualizationMode VisualizationMode [get, set]
 Stage at which to visualize the volume bake process in the scene view. More...
 
- Properties inherited from Infohazard.HyperNav.NavArea< NavVolume, NavVolumeData, NativeNavVolumeData, NativeNavVolumeDataPointers, NavVolumeSettings >
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...
 

Additional Inherited Members

- Static Public Member Functions inherited from Infohazard.HyperNav.NavArea< NavVolume, NavVolumeData, NativeNavVolumeData, NativeNavVolumeDataPointers, NavVolumeSettings >
static void UpdateAllTransforms ()
 Update the native data on all loaded NavAreas. Note, this must be called on each area type class (NavSurface and NavVolume) separately. More...
 
- Static Public Attributes inherited from Infohazard.HyperNav.NavArea< NavVolume, NavVolumeData, NativeNavVolumeData, NativeNavVolumeDataPointers, NavVolumeSettings >
static NativeParallelHashMap< long, TNativeData > NativeDataMap
 Data for all loaded volumes in the format used by jobs. More...
 

Detailed Description

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).

Member Function Documentation

◆ Raycast() [1/2]

bool Infohazard.HyperNav.NavVolume.Raycast ( Vector3  start,
Vector3  end 
)

Cast a ray against the blocking triangles of the volume, and return if there was a hit.

More performant than Raycast(Vector3, Vector3, out float) if you don't need the hit position, because it can return as soon as any hit is detected.

Parameters
startThe position (in world space) to start the query at.
endThe position (in world space) to end the query at.
Returns
Whether a triangle was hit.

◆ Raycast() [2/2]

bool Infohazard.HyperNav.NavVolume.Raycast ( Vector3  start,
Vector3  end,
out float  hit 
)

Cast a ray against the blocking triangles of the volume, and return the nearest hit.

Parameters
startThe position (in world space) to start the query at.
endThe position (in world space) to end the query at.
hitIf the query hits a triangle, the ratio between start and end at which the hit occurred.
Returns
Whether a triangle was hit.

Property Documentation

◆ VisualizationMode

NavVolumeVisualizationMode Infohazard.HyperNav.NavVolume.VisualizationMode
getset

Stage at which to visualize the volume bake process in the scene view.


The documentation for this class was generated from the following file: