Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 14 Next capture
2021 2022 2023
2 captures
12 Jun 22 - 14 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 Varimathras · Oct 01, 2016 at 12:14 PM · instantiatespawnnavmeshnavmeshagenttranform.position

Set Destination can only be called on an active agent, problem when instanciating.

I am trying to spawn soldiers and move them as a regiment via mouse clicks on a nav mesh. But i get the ""Set Destination" can only be called on an active agent" error. I read in the forums that this can be caused by instantiating to high or low from the nav mesh. But wherever i put the spawnpoint on the y axis, nothing changes. I usually spawn them on Y = 0 It seems Unity sets my prefab clones autmatically to y = 0.303... i dont't know why. I can't move the soldiers on the y-axis on runtime in the scene view. Another "fun" thing that happens is that my awake funktion where i use GetComponent doesn't get called when i instantiate. I have to call it in a separate function.

 public class Move : MonoBehaviour
 {
     private Ray _ray;
     private RaycastHit hit;
     private float raycastLength = 1000.0f;
     private UnitMove nav;
 
     public static List<GameObject> selectedUnits = new List<GameObject>();
 
     void Update ()
     {
         _ray = Camera.main.ScreenPointToRay(Input.mousePosition);
         if (Input.GetMouseButtonDown(0))
         {
             if (Physics.Raycast(_ray, out hit, raycastLength))
             {
                 MoveRegiment(hit.point);
             }
         }
     }
 
     void MoveRegiment(Vector3 moveToPos)
     {
         foreach (GameObject go in selectedUnits)
         {      
             nav = go.GetComponent<UnitMove>();
             nav.setNav();
             nav.MovetoNav(moveToPos.x, moveToPos.y, moveToPos.z);
         } 
     }
 }
 
 public class UnitMove : MonoBehaviour
 {
     private NavMeshAgent nav;
     public int xPos { get; set; }
     public int yPos { get; set; }
 
     void Awake()
     {
       nav = GetComponent<NavMeshAgent>(); //does not get called
     }
 
    public void setNav()
     {
         nav = GetComponent<NavMeshAgent>();
     }
    public void MovetoNav(float x, float y, float z)
     {
         nav.SetDestination(new Vector3(x , y, z));
     }
 }
 public class RegimentSpwan : MonoBehaviour
 {
     public Text row;
     public Text unitAmmount;
     public GameObject Unit;
 
     private GameObject _newGO;
     private Vector3 pos;
 
     public void OnclickNewRegiment()
     {
         DestroyImmediate(GameObject.Find("Regiment"));
 
         _newGO = new GameObject("Regiment");
         Instantiate(_newGO, this.transform.position, Quaternion.identity);
 
         for (int i = 0; i < Convert.ToInt16(row.text); i++)
         {
             for (int j = 0; j < Convert.ToInt16(unitAmmount.text); j++)
             {
                 Debug.Log(this.transform.position.y); //is zero
                 Unit.name = "Unit_" + i + "_" + j;
                 pos = new Vector3(this.transform.position.x + j * 2,this.transform.position.y, this.transform.position.z + i * 2);
                 Instantiate(Unit, pos, Quaternion.identity, _newGO.transform);
                 Move.selectedUnits.Add(Unit); //list of gameobjects
 
             }
         }
 
     }
 }
 
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

0 Replies

· Add your reply
  • Sort: 

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

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

How to spawn a navmeshagent on a certain nav mesh? 1 Answer

Spawning limited GameObjects at a specific position not working 1 Answer

spawn object every 10 score points 1 Answer

Instantiate a prefab at three specific x positions 0 Answers

NavMesh Agent changing Model Rotation 2 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