AI for following paths.
This AI is the default movement script which comes with the A* Pathfinding Project. It is in no way required by the rest of the system, so feel free to write your own. But I hope this script will make it easier to set up movement for the characters in your game. This script works well for many types of units, but if you need the highest performance (for example if you are moving hundreds of characters) you may want to customize this script or write a custom movement script to be able to optimize it specifically for your game.
This script will try to follow a target transform. At regular intervals, the path to that target will be recalculated. It will in the Update method try to move towards the next point in the path. However it will only move in roughly forward direction (Z+ axis) of the character, but it will rotate around it's Y-axis to make it possible to reach the destination.
Quick overview of the variables
In the inspector in Unity, you will see a bunch of variables. You can view detailed information further down, but here's a quick overview.
The repathRate determines how often it will search for new paths, if you have fast moving targets, you might want to set it to a lower value.
The target variable is where the AI will try to move, it can be a point on the ground where the player has clicked in an RTS for example. Or it can be the player object in a zombie game.
The speed is self-explanatory, so is rotationSpeed, however slowdownDistance might require some explanation. It is the approximate distance from the target where the AI will start to slow down.
pickNextWaypointDist is simply determines within what range it will switch to target the next waypoint in the path.
Below is an image illustrating several variables as well as some internal ones, but which are relevant for understanding how it works.
- Note
- The image is slightly outdated, replace forwardLook with pickNextWaypointDist in the image and ignore the circle for pickNextWaypointDist.
This script has many movement fallbacks. If it finds an RVOController attached to the same GameObject as this component, it will use that. If it fins a character controller it will also use that. Lastly if will fall back to simply modifying Transform.position which is guaranteed to always work and is also the most performant option.
|
Vector3 | CalculateVelocity (Vector3 position) |
| Current desired velocity of the agent (excluding physics and local avoidance but it includes gravity).
|
|
override void | OnPathComplete (Path newPath) |
| Called when a requested path has been calculated.
|
|
virtual void | OnTargetReached () |
| The end of the path has been reached.
|
|
override void | Teleport (Vector3 newPosition, bool clearPath=true) |
| Instantly move the agent to a new position.
|
|
virtual void | FinalizeMovement (Vector3 nextPosition, Quaternion nextRotation) |
| Moves the agent to a position.
|
|
virtual Vector3 | GetFeetPosition () |
| Position of the base of the character.
|
|
virtual void | Move (Vector3 deltaPosition) |
| Move the agent.
|
|
void | MovementUpdate (float deltaTime, out Vector3 nextPosition, out Quaternion nextRotation) |
| Calculate how the character wants to move during this frame.
|
|
virtual void | SearchPath () |
| Recalculate the current path.
|
|
Quaternion | SimulateRotationTowards (Vector3 direction, float maxDegrees) |
| Simulates rotating the agent towards the specified direction and returns the new rotation.
|
|
void | FinalizeMovement (Vector3 nextPosition, Quaternion nextRotation) |
| Move the agent.
|
|
void | Move (Vector3 deltaPosition) |
| Move the agent.
|
|
void | MovementUpdate (float deltaTime, out Vector3 nextPosition, out Quaternion nextRotation) |
| Calculate how the character wants to move during this frame.
|
|
void | SearchPath () |
| Recalculate the current path.
|
|
void | Teleport (Vector3 newPosition, bool clearPath=true) |
| Instantly move the agent to a new position.
|
|
|
bool | alwaysDrawGizmos |
| Draws detailed gizmos constantly in the scene view instead of only when the agent is selected and settings are being modified.
|
|
float | endReachedDistance = 0.2F |
| Distance to the end point to consider the end of path to be reached.
|
|
float | pickNextWaypointDist = 2 |
| Determines within what range it will switch to target the next waypoint in the path.
|
|
float | rotationSpeed = 360 |
| Rotation speed.
|
|
float | slowdownDistance = 0.6F |
| Distance from the target point where the AI will start to slow down.
|
|
bool | slowWhenNotFacingTarget = true |
| Slow down when not facing the target direction.
|
|
CloseToDestinationMode | whenCloseToDestination = CloseToDestinationMode.Stop |
| What to do when within endReachedDistance units from the destination.
|
|
bool | canMove = true |
| Enables or disables movement completely.
|
|
bool | canSearch = true |
| Enables or disables recalculating the path at regular intervals.
|
|
float | centerOffset = 1 |
| Offset along the Y coordinate for the ground raycast start position.
|
|
Vector3 | gravity = new Vector3(float.NaN, float.NaN, float.NaN) |
| Gravity to use.
|
|
LayerMask | groundMask = -1 |
| Layer mask to use for ground placement.
|
|
float | maxSpeed = 1 |
| Max speed in world units per second.
|
|
IMovementPlane | movementPlane = GraphTransform.identityTransform |
| Plane which this agent is moving in.
|
|
float | repathRate = 0.5f |
| Determines how often the agent will search for new paths (in seconds).
|
|
bool | rotationIn2D = false |
| If true, the forward axis of the character will be along the Y axis instead of the Z axis.
|
|
bool | updatePosition = true |
| Determines if the character's position should be coupled to the Transform's position.
|
|
bool | updateRotation = true |
| Determines if the character's rotation should be coupled to the Transform's rotation.
|
|
|
virtual void | CalculateNextRotation (float slowdown, out Quaternion nextRotation) |
|
override void | MovementUpdateInternal (float deltaTime, out Vector3 nextPosition, out Quaternion nextRotation) |
| Called during either Update or FixedUpdate depending on if rigidbodies are used for movement or not.
|
|
override void | OnDisable () |
|
override int | OnUpgradeSerializedData (int version, bool unityThread) |
| Handle serialization backwards compatibility.
|
|
| AIBase () |
|
void | ApplyGravity (float deltaTime) |
| Accelerates the agent downwards.
|
|
Vector2 | CalculateDeltaToMoveThisFrame (Vector2 position, float distanceToEndOfPath, float deltaTime) |
| Calculates how far to move during a single frame.
|
|
virtual void | CalculatePathRequestEndpoints (out Vector3 start, out Vector3 end) |
| Outputs the start point and end point of the next automatic path request.
|
|
void | CancelCurrentPathRequest () |
|
virtual Vector3 | ClampToNavmesh (Vector3 position, out bool positionChanged) |
| Constrains the character's position to lie on the navmesh.
|
|
virtual void | FindComponents () |
|
virtual void | FixedUpdate () |
| Called every physics update.
|
|
virtual void | OnDrawGizmos () |
|
virtual void | OnDrawGizmosSelected () |
|
virtual void | OnEnable () |
| Called when the component is enabled.
|
|
Vector3 | RaycastPosition (Vector3 position, float lastElevation) |
| Checks if the character is grounded and prevents ground penetration.
|
|
IEnumerator | RepeatTrySearchPath () |
| Tries to search for a path every repathRate seconds.
|
|
Quaternion | SimulateRotationTowards (Vector2 direction, float maxDegrees) |
| Simulates rotating the agent towards the specified direction and returns the new rotation.
|
|
virtual void | Start () |
| Starts searching for paths.
|
|
virtual void | Update () |
| Called every frame.
|
|
void | UpdateVelocity () |
|
virtual void | Awake () |
|
|
bool IAstarAI. | canMove [get, set] |
| Enables or disables movement completely.
|
|
bool IAstarAI. | canSearch [get, set] |
| Enables or disables recalculating the path at regular intervals.
|
|
bool | hasPath [get] |
| True if this agent currently has a path that it follows.
|
|
float IAstarAI. | maxSpeed [get, set] |
| Max speed in world units per second.
|
|
bool | pathPending [get] |
| True if a path is currently being calculated.
|
|
float | remainingDistance [get] |
| Remaining distance along the current path to the end of the path.
|
|
float | speed [get, set] |
| Maximum speed in world units per second.
|
|
Vector3 | steeringTarget [get] |
| Point on the path which the agent is currently moving towards.
|
|
Vector3 | targetDirection [get] |
| Direction that the agent wants to move in (excluding physics and local avoidance).
|
|
bool | TargetReached [get] |
| True if the end of the path has been reached.
|
|
bool | targetReached [get, set] |
| True if the agent has reached the end of the current path.
|
|
float | turningSpeed [get, set] |
| Rotation speed.
|
|
Vector3 | desiredVelocity [get] |
| Velocity that this agent wants to move with.
|
|
Vector3 | destination [get, set] |
| Position in the world that this agent should move to.
|
|
bool | isStopped [get, set] |
| Gets or sets if the agent should stop moving.
|
|
System.Action | onSearchPath [get, set] |
| Called when the agent recalculates its path.
|
|
Vector3 | position [get] |
| Position of the agent.
|
|
Quaternion | rotation [get] |
| Rotation of the agent.
|
|
virtual bool | shouldRecalculatePath [get] |
| True if the path should be automatically recalculated as soon as possible.
|
|
Transform | target [get, set] |
| Target to move towards.
|
|
bool | usingGravity [get, set] |
| Indicates if gravity is used during this frame.
|
|
Vector3 | velocity [get] |
| Actual velocity that the agent is moving with.
|
|
bool | canMove [get, set] |
| Enables or disables movement completely.
|
|
bool | canSearch [get, set] |
| Enables or disables recalculating the path at regular intervals.
|
|
Vector3 | desiredVelocity [get] |
| Velocity that this agent wants to move with.
|
|
Vector3 | destination [get, set] |
| Position in the world that this agent should move to.
|
|
bool | hasPath [get] |
| True if this agent currently has a path that it follows.
|
|
bool | isStopped [get, set] |
| Gets or sets if the agent should stop moving.
|
|
float | maxSpeed [get, set] |
| Max speed in world units per second.
|
|
System.Action | onSearchPath [get, set] |
| Called when the agent recalculates its path.
|
|
bool | pathPending [get] |
| True if a path is currently being calculated.
|
|
Vector3 | position [get] |
| Position of the agent.
|
|
float | remainingDistance [get] |
| Remaining distance along the current path to the end of the path.
|
|
Quaternion | rotation [get] |
| Rotation of the agent.
|
|
Vector3 | steeringTarget [get] |
| Point on the path which the agent is currently moving towards.
|
|
bool | targetReached [get] |
| True if the agent has reached the end of the current path.
|
|
Vector3 | velocity [get] |
| Actual velocity that the agent is moving with.
|
|