NavGridAgent Move To Target
Sets a target Transform on a NavGridAgent and waits for arrival.
Use this for one-off move commands where your FSM should continue only after arrival.
| Parameter | Description |
|---|---|
| Agent | NavGridAgent to move. |
| Target | Transform 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
- Set Target to
Objective. - Send Arrived Event to transition to interaction logic.