I’m talking about this one
navMeshAgent.isStopped = false;
}
public void Stop()
{
navMeshAgent.isStopped = true;
}
I see this code pattern repeated a lot in the course. Is this just a good way to check if the code is flowing correctly? A kind of system of checks and balances?