This works:
_navMeshAgent.enabled = true;
_navMeshAgent.destination = target.position;
This does not:
_navMeshAgent.destination = target.position;
_navMeshAgent.enabled = true;
Computers suck.
This works:
_navMeshAgent.enabled = true;
_navMeshAgent.destination = target.position;
This does not:
_navMeshAgent.destination = target.position;
_navMeshAgent.enabled = true;
Computers suck.