![]() |
Infohazard.HyperNav 2.1.0
A pathfinding and avoidance solution for volumetric and omnidirectional navigation.
|
Base class for areas in which HyperNav pathfinding can occur. More...
Classes | |
class | PropNames |
This is used to refer to the names of private fields in this class from a custom Editor. More... | |
Public Member Functions | |
void | UpdateTransform () |
Update the native data of this NavArea. More... | |
Protected Member Functions | |
virtual void | OnEnable () |
Register this area in the Instances dictionary and perform initialization. More... | |
virtual void | OnDisable () |
Remove this area from the Instances dictionary. More... | |
virtual void | Reset () |
Reset certain properties to the first NavArea on the object. More... | |
virtual void | OnDestroy () |
Dispose native-side data for this area. More... | |
virtual void | Update () |
Update UniqueID in editor, and check movement. More... | |
Properties | |
Bounds | Bounds [get, set] |
The boundaries of the area. More... | |
INavAreaData INavArea. | Data [get] |
Transform | Transform [get] |
IReadOnlyList< NavExternalLinkData > | ExternalLinks [get] |
The external links for this area. More... | |
IReadOnlyList< SerializableRange > | ExternalLinkRanges [get] |
The ranges of external links for this area (one element per region). More... | |
ulong | DataVersionForExternalLinks [get] |
The version of the data when the external links were last updated. More... | |
long | InstanceID [get] |
The unique ID for this area to identify it in pathfinding jobs and serialized data. More... | |
bool | RandomInstanceID [get, set] |
Whether to generate a random instance ID on awake (use if instantiating dynamically). More... | |
bool | AutoDetectMovement [get, set] |
Whether to automatically update native data if the area moves. More... | |
abstract NavAreaBaseSettings | BaseSettings [get] |
Base settings for the area, whether shared or instance. The returned object, while mutable, should not be modified directly as it may reference a ScriptableObject. More... | |
abstract Type | SettingsAssetType [get] |
Type of settings asset for this area (should inherit from NavAreaBaseSettings). More... | |
bool | UseStartLocations [get, set] |
Whether only regions connected to certain locations are considered valid. More... | |
IReadOnlyList< Vector3 > | StartLocations [get, set] |
If _useStartLocations is true, which start locations to use. More... | |
int | VisualizationSoloRegion [get, set] |
If set, only this region will be included in the visualization mesh. More... | |
bool | VisualizeNeighbors [get, set] |
Whether to show the connections of a selected region in the scene view. More... | |
int | VisualizeNeighborsRegion [get, set] |
If _visualizeNeighbors is true, which region to visualize in the scene view. More... | |
bool | VisualizeExternalLinks [get, set] |
Whether to show the external links. More... | |
bool | ShowVertexNumbers [get, set] |
Whether to show the vertex numbers of the preview mesh in the scene view (for debugging). More... | |
float | ShowVertexNumbersRange [get, set] |
Max distance from the camera at which vertex numbers will be shown. More... | |
bool | VisualizeRegionBounds [get, set] |
Whether to visualize the bounds of each region in the scene view. More... | |
bool | VisualizeVoxelQueries [get, set] |
Whether to visualize the queries that are performed for a voxel when baking. More... | |
Mesh | PreviewMesh [get, set] |
(Editor Only) Preview mesh that is rendered to visualize the area. More... | |
Material[] | PreviewMaterials [get, set] |
(Editor Only) List of materials to use for drawing the preview mesh. More... | |
abstract bool | IsNativeDataCreated [get] |
Returns whether the native data for this area has been created. More... | |
Base class for areas in which HyperNav pathfinding can occur.
|
protectedvirtual |
Dispose native-side data for this area.
|
protectedvirtual |
Remove this area from the Instances dictionary.
|
protectedvirtual |
Register this area in the Instances dictionary and perform initialization.
|
protectedvirtual |
Reset certain properties to the first NavArea on the object.
Reimplemented in Infohazard.HyperNav.NavArea< TArea, TData, TNativeData, TPointers, TSettings >.
|
protectedvirtual |
Update UniqueID in editor, and check movement.
void Infohazard.HyperNav.NavAreaBase.UpdateTransform | ( | ) |
Update the native data of this NavArea.
This is called automatically if AutoDetectMovement is enabled.
|
getset |
Whether to automatically update native data if the area moves.
Note that if this is true and the area moves every frame, pathfinding will never be able to occur.
|
get |
Base settings for the area, whether shared or instance. The returned object, while mutable, should not be modified directly as it may reference a ScriptableObject.
|
getset |
The boundaries of the area.
This cannot be set while the game is running.
|
getprivate |
|
get |
The version of the data when the external links were last updated.
|
get |
The ranges of external links for this area (one element per region).
|
get |
The external links for this area.
|
get |
The unique ID for this area to identify it in pathfinding jobs and serialized data.
|
get |
Returns whether the native data for this area has been created.
|
getset |
(Editor Only) List of materials to use for drawing the preview mesh.
These should be references to assets so that they don't need to be destroyed.
|
getset |
(Editor Only) Preview mesh that is rendered to visualize the area.
When set, the old mesh will be destroyed. The supplied mesh will have its HideFlags set to HideAndDontSave, meaning it will not be saved with the scene, but will not be destroyed except manually here. Therefore it is important that this value be set to null when the NavArea is destroyed, in order to avoid leaking memory.
|
getset |
Whether to generate a random instance ID on awake (use if instantiating dynamically).
|
get |
Type of settings asset for this area (should inherit from NavAreaBaseSettings).
|
getset |
Whether to show the vertex numbers of the preview mesh in the scene view (for debugging).
|
getset |
Max distance from the camera at which vertex numbers will be shown.
|
getset |
If _useStartLocations is true, which start locations to use.
|
get |
|
getset |
Whether only regions connected to certain locations are considered valid.
This can be used to exclude certain regions from an area, such as regions that are outside reachable area.
|
getset |
If set, only this region will be included in the visualization mesh.
|
getset |
Whether to show the external links.
|
getset |
Whether to show the connections of a selected region in the scene view.
|
getset |
If _visualizeNeighbors is true, which region to visualize in the scene view.
|
getset |
Whether to visualize the bounds of each region in the scene view.
|
getset |
Whether to visualize the queries that are performed for a voxel when baking.