Is there anyway to make NavMeshAgent no clip
I had simple plane ground bake to NavMesh map with no height (static)
Then I added NavMeshObstacle with Carve to some points in map.
Right now it's work perfectly for normal navigations with NavMeshObstacle.
But problems is I want to force agent walk into NavMeshObstacle area for temporary duration.
Is there any variables to set it no clip? Thank you!
Answer by StartStart · Aug 04, 2020 at 02:21 AM
For anyone else struggle like me.
Use agent.isStopped = true;
ane do a manual movement scripts for Object that move.
after Object reach destination stop manual script and use
agent.isStopped = false;
Your answer
Follow this Question
Related Questions
What does desiredVelocity do? 0 Answers
Navmesh point 0 Answers
NavMeshAgent Issue 0 Answers
How to exclude certain navmesh obstacles on runtime? 2 Answers
How to make NavMesh obstacle selectively obstruct agents? 0 Answers