Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 /
  • Help Room /
avatar image
0
Question by AaronC · Nov 19, 2015 at 02:28 PM · navmeshagentstate-machine

Combining State Machine with Pathfinding

Hi, I have a wandering chicken, but I can't seem to stop her randomly moving while in idle, and then also walking on the spot.

Can anyone see the issue with my code?

 using UnityEngine;
 using System.Collections;
 
 public class ChickenAi : MonoBehaviour {
 
     public Transform[] wayPoints;
 
     NavMeshAgent navMesh;
     int randomNumber;
     public int behaviour;
     public Transform currentWaypoint;
     Animator anim;
 
     // Use this for initialization
     void Start () {
         
         navMesh=GetComponent<NavMeshAgent>();
         anim=GetComponent<Animator>();
         StartCoroutine(AnimalBehaviour());
     
     }
 
     IEnumerator AnimalBehaviour(){
         
             while (true) {
                 
                 //Choose a behaviour
                 behaviour = Random.Range (0, 4);
 
             if (behaviour == 0) {
 
                 //Choose a random waypoint
                 randomNumber=Random.Range(0,wayPoints.Length);
                 currentWaypoint=wayPoints[randomNumber];
 
                 //go to selected waypoint
                 navMesh.SetDestination (currentWaypoint.position);
 
                 //Apply animation
                 anim.SetTrigger("Walk");
         
             }
             else if (behaviour == 1) {
                 
                 anim.SetTrigger("Idle1");
 
                 //stop Movement
                 navMesh.ResetPath();
 
             } 
             else if (behaviour == 2) {
                 
                 anim.SetTrigger("Idle2");
 
                 //stop Movement
                 navMesh.ResetPath();
             } 
             else if (behaviour == 3) {
 
                 anim.SetTrigger("Eat");
 
                 Debug.Log ("Eating");
                 //stop Movement
                 navMesh.ResetPath();
             }
             yield return new WaitForSeconds(Random.Range(5.0f,6.0f));
 
         }
     }
 }

I've tried using NavMesh.Stop() and navMesh.Resume() but still getting the mismatched behaviours.

Thanks

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

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by _Game_Dev_Dude_ · Nov 19, 2015 at 03:25 PM

Code looks correct after a quick glance. I would make sure your animation's don't move the chicken. This has to deal with some animation settings and how it was animated.

http://docs.unity3d.com/Manual/RootMotion.html

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 AaronC · Nov 20, 2015 at 03:02 AM 0
Share

Thanks for that feedback.. Do you think it could be my nav$$anonymous$$eshAgent settings or state machine settings? Every transition in the statemachine is set up like this. None of the animations have root motion.

I'm pondering the "Broken state machine" theory but Its probably user error.. State$$anonymous$$achine

Nav$$anonymous$$eshAgent

screenshot-38.png (61.3 kB)
screenshot-37.png (66.0 kB)

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

35 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 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

unity editor freezes on play, because of script 1 Answer

PathFinding Lag With NaMeshAgent 0 Answers

How to make NavMesh agent move directly forward 0 Answers

How do I get my Ai agent to rotate properly according to the direction of its movement? 0 Answers

Fixing enemy behavior state machine in Unity 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