Skip to content

NavGridAgent Move To Position

Sets a world-space destination on a NavGridAgent and waits for arrival.

Useful for click-to-move, waypoint patrol points, and procedural destinations.

Parameter Description
Agent NavGridAgent to move.
Position World-space destination.
Arrived Event Optional event sent when the agent arrives.

Notes

  • This action subscribes to the agent arrival callback and finishes when arrival occurs.
  • Movement behavior (speed, stopping distance, path settings) comes from the NavGridAgent settings.

Example

  1. Set Position from a waypoint variable.
  2. Send Arrived Event to trigger next waypoint selection.

See also