A script that can be used to calculate smooth paths by any entity that needs to use HyperNav for navigation.
More...
|
float | TangentScale [get, set] |
| Scale to apply to spline tangents (lower values make the spline less curvy). More...
|
|
bool | RaycastTangents [get, set] |
| Whether to shorten tangents by raycasting to ensure they don't penetrate blocked areas. More...
|
|
int | DistanceSamplesPerSegment [get, set] |
| How many samples to take per segment of the spline when mapping the distance. More...
|
|
int | DebugPointCount [get, set] |
| If NavAgent.DebugPath is enabled, how many points to use to draw the curve. More...
|
|
float | MaxAlignmentVelocityDistance [get, set] |
| At what distance from the spline the agent will have all its desired velocity devoted to returning. More...
|
|
float | CurvatureSampleDistance [get, set] |
| Delta-T to use when sampling curvature (should be quite small). More...
|
|
float | CurvatureOfMaxSlowdown [get, set] |
| At what curvature value is the agent at its max curvature slowdown. More...
|
|
float | MaxCurvatureSlowdown [get, set] |
| The multiplier on desired tangent velocity when at the max curvature value. More...
|
|
bool | DebugProjectOnSpline [get, set] |
| Whether to draw debug lines when projecting on the spline. More...
|
|
float | BlockedDetectionDistance [get, set] |
| Distance in front of the agent to check to see if it needs to avoid level geometry. More...
|
|
float | BlockedDetectionBackDistance [get, set] |
| Distance behind the agent to check to see if it needs to avoid level geometry. More...
|
|
float | BlockedDetectionMinSplineDistance [get, set] |
| How far the agent must be from the spline to check for blocking level geometry. More...
|
|
bool | BlockedDetectionPhysicsQuery [get, set] |
| Whether to use physics queries to detect blocking level geometry. More...
|
|
Rigidbody | BlockedDetectionPhysicsQueryRigidbody [get, set] |
| Rigidbody to use for physics queries to detect blocking level geometry. More...
|
|
bool | IsOnSpline [get, private set] |
| Whether the agent is currently traveling along a spline. More...
|
|
SplinePath | SplinePath [get] |
| The spline that the agent is currently following. More...
|
|
float | CurrentSplineParameter [get] |
| The spline parameter value the agent is nearest to on the spline. More...
|
|
float | CurrentSplineDistance [get] |
| The distance along the spline the agent is nearest to. More...
|
|
float | MaxSplineDistance [get] |
| The length of the agent's current spline path. More...
|
|
float | RemainingDistanceAfterSpline [get, private set] |
| The remaining distance along the path after the end of the current spline. More...
|
|
int | PathIndexOfSplineEnd [get, private set] |
| The index of the end of the current spline in the current path. More...
|
|
float | Acceptance [get, set] |
| How close the agent must get to a destination before it is considered to have arrived. More...
|
|
float | AccelerationEstimate [get, set] |
| This should be set to the maximum acceleration of your agent. More...
|
|
Rigidbody | Rigidbody [get, set] |
| Optional rigidbody to use for measuring velocity. More...
|
|
float | SampleRadius [get, set] |
| The radius to search when finding the nearest NavVolume. More...
|
|
NavAreaTypes | AreaTypeMask [get, set] |
| The types of areas to sample. More...
|
|
NavSamplePriority | StartSamplingPriority [get, set] |
| How to prioritize results for the destination position when sampling in both volumes and surfaces. More...
|
|
NavSamplePriority | DestSamplingPriority [get, set] |
| How to prioritize results for the destination position when sampling in both volumes and surfaces. More...
|
|
float | CostToChangeToVolume [get, set] |
| Additional cost to changing from a surface to a volume. More...
|
|
float | CostToChangeToSurface [get, set] |
| Additional cost to changing from a volume to a surface. More...
|
|
float | VolumeCostMultiplier [get, set] |
| Multiplier for the cost of traversing volume areas. More...
|
|
float | SurfaceCostMultiplier [get, set] |
| Multiplier for the cost of traversing surface areas. More...
|
|
NavPathfindingParams | PathfindingParams [get, set] |
| Pathfinding parameters as a combined struct. More...
|
|
float | DesiredSpeedRatio [get, set] |
| The desired fraction of the maximum speed to travel at. More...
|
|
bool | DebugPath [get, set] |
| Whether to draw a debug line in the scene view showing the agent's current path. More...
|
|
bool | KeepPathWhileCalculating [get, set] |
| Whether to keep following the current path while waiting for a new path to finish calculating. More...
|
|
AvoidanceAgent | AvoidanceAgent [get, set] |
| AvoidanceAgent that this agent uses for avoidance (can be null). More...
|
|
bool | ControlAvoidanceIsActive [get, set] |
| If true, the Infohazard.HyperNav.AvoidanceAgent.IsActive state of the AvoidanceAgent is set based on whether there is a current valid path. More...
|
|
bool | CheckSkippingWithPhysicsQuery [get, set] |
| Whether to check during path following if the agent should skip to the next waypoint. More...
|
|
LayerMask | SkippingCheckLayerMask [get, set] |
| Layer mask to use for physics queries to check for obstacles when skipping waypoints. More...
|
|
Collider | SkippingCheckCollider [get, set] |
| Collider to determine the query parameters for sweep testing. More...
|
|
float | SkippingCheckColliderPadding [get, set] |
| Padding to reduce the size of the collider used for skipping waypoint checks. More...
|
|
bool | IsPathPending [get] |
| Whether a path is currently in the process of being calculated for this agent. More...
|
|
virtual float | StoppingDistance [get] |
| The distance that it will take the agent to come to a stop from its current velocity, determined using the AccelerationEstimate. More...
|
|
Vector3 | NextWaypointPosition [get] |
| The current path waypoint that the agent is trying to move towards. More...
|
|
Vector3 | PositionForVolume [get] |
| The position to use for sampling volumes. More...
|
|
Vector3 | PositionForSurface [get] |
| The position to use for sampling surfaces. More...
|
|
NavWaypoint? | NextWaypoint [get] |
| The current path waypoint that the agent is trying to move towards. More...
|
|
NavWaypoint? | PreviousWaypoint [get] |
| The previous waypoint in the path. More...
|
|
bool | Arrived [get, private set] |
| True if the agent has no active or pending path. More...
|
|
float | RemainingDistance [get, protected set] |
| The remaining distance to the destination. More...
|
|
float | RemainingDistanceToNextWaypoint [get, protected set] |
| The remaining distance to the next waypoint. More...
|
|
float | DistanceFromStart [get, protected set] |
| The distance the agent has traveled along the path. More...
|
|
Vector3 | Destination [get, set] |
| Get or set the agent's destination (the position it is trying to get to). More...
|
|
Vector3 | MeasuredVelocity [get, protected set] |
| Velocity of the agent measured as delta position / delta time over the last frame, which is used to determine stopping distance. More...
|
|
NavPath | CurrentPath [get, set] |
| The current path that the agent is following. More...
|
|
float | AvoidanceMaxSpeed [get, set] |
| Maximum speed possible by this agent when avoiding obstacles. More...
|
|
NavAgentAdvancePredicate | AdvancePredicate [get, set] |
| An optional condition to check if the agent can advance past a given waypoint in the path. More...
|
|
A script that can be used to calculate smooth paths by any entity that needs to use HyperNav for navigation.
A SplineNavAgent works just like (and is a subclass of) NavAgent. However, a SplineNavAgent feeds the path waypoints into a spline function to get a smoother path. The spline-based movement is only active during volume-based navigation; surface navigation will use the default point-based path. In order to follow the spline, the SplineNavAgent creates its NavAgent.DesiredVelocity based on two factors:
-
Tangent: The direction the spline is pointing nearest the agent.
-
Alignment: The direction from the agent to the nearest point on the spline.f
The agent will increase the influence of the alignment velocity the further it gets from the spline, in order to prevent drifting too far off. Additionally, the agent can slow down its desired tangent velocity on high-curvature regions, in order to take the curves more slowly.