Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by maxxa05 · May 28, 2014 at 05:25 PM · navmeshnavmeshagentpathfindingnavigation

Updating NavMeshAgent position on NavMesh

I've got a weird bug when trying to use Unity's standard NavMesh to control a physics controlled character. My agent UpdatePosition and UpdateRotation are both set to false. As you can see on the screenshot below, the character slipped from the hill and tries to get back on it to eat the cake (the characters are rolling in my game). As you can see in the red rectangle in my screenshot, the pathfinding system still thinks my character is on the hill, so it simply commands to go towards the cake, while in fact he's at the bottom of the hill.

alt text

I tried something basic (see below) to detect if I'm on the right path, but it does not work. I then tried to call agent.ResetPath() manually with Input.GetKeyDown to test the behaviour, and it does not update the agent location on the NavMesh. I call SetDestination every frame, but I tried to call it only when I change target and it doesn't change anything. Is there any way I could check if my agent is at the right spot and update it if necessary?

 agent.SetDestination(food.position);
 if (agent.hasPath && agent.SamplePathPosition(-1, 0.5F, out hit) && (hit.position - transform.position).sqrMagnitude > 1)
 {
     agent.ResetPath();
 }
navmeshbug.jpg (167.4 kB)
Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

2 Replies

· Add your reply
  • Sort: 
avatar image
2
Best Answer

Answer by maxxa05 · Jun 02, 2014 at 03:31 PM

Found a workaround-ish, if I detect that my character is stuck (has a low velocity but shouldn't) for some time, I just use:

 agent.Warp(transform.position);

Far from perfect, but I guess it's the best I can achieve with Unity's NavMesh.

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image
0

Answer by Griffo · May 28, 2014 at 05:44 PM

Have you tried something simple like

 private var agent : NavMeshAgent;
 
 function Start(){
 
     agent = GetComponent.<NavMeshAgent>();
 }
 
 function Update(){
 
     agent.destination = food.position;
 }

Then knock him off track and see if he computes a new path?

Comment
Add comment · Show 1 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image maxxa05 · May 28, 2014 at 07:04 PM 0
Share

setting agent.destination seems to do the same than SetDestination. The problem is still there.

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

21 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Get NavMeshAgent to look where it's going 0 Answers

How do I fix two NavMeshAgents fighting for the same position? 1 Answer

How to change a NavMeshAgent angular rotation speed, 0 Answers

How to use Unity's pathfinding system without NavMeshAgent controlling my character? 1 Answer

Navigation Mesh + Doors 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges