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 /
avatar image
1
Question by mindstormermage · Oct 22, 2017 at 06:03 PM · instantiateunity5navmeshagentfreeze

Instantiating objects and adding navmeshAgent causes game to freeze.

I have a script which spawns enemies after a delay of time on a terrain that I have created. It works for the first three enemies created but when it adds the navmeshagent the fourth time it freezes the entire game. using UnityEngine; using System.Collections; using System.Collections.Generic; public class RandomSpawn : MonoBehaviour { public List<GameObject> Spawnables; public Terrain spawnLand; public float spawnWait = 1f; public int numPer = 1; public bool enableSpawning =true; float minx,maxx,minz,maxz,waiter = 1f; // Use this for initialization void Start () { minx = spawnLand.transform.position.x+2; maxx = spawnLand.terrainData.size.x + minx-4; minz = spawnLand.transform.position.z+2; maxz = spawnLand.terrainData.size.z + minz-4; } void Update(){ waiter -= Time.deltaTime; if (waiter<=0) { waiter = spawnWait; if (enableSpawning) { Spawn (); } } } void Spawn() { for (int i = 0; i < numPer; i++) { Vector3 loc = new Vector3 (Random.Range (minx, maxx), 0, Random.Range (minz, maxz)); GameObject go = (GameObject)Instantiate (Spawnables[Random.Range (0,Spawnables.Count)],new Vector3(0,0,0),new Quaternion(0,0,0,0)); NavMeshHit closestHit; if( NavMesh.SamplePosition( loc, out closestHit, 500, 1 ) ){ go.transform.position = closestHit.position; go.AddComponent<NavMeshAgent>(); //TODO } else{ Debug.Log("..."); } } } } I put it on a time delay using waiter and spawnWait. It seems to always freeze and crash right after creating the fourth object and adding the navmeshagent to it. All help would be appreciated I am getting rather confused.

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
1
Best Answer

Answer by mindstormermage · Oct 23, 2017 at 12:55 AM

I Figured it out. The script I posted is correct and works well. My issue is on another script I wrote which accidentally is becoming infinite after the fourth enemy... oops

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

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

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

Is this the best way of using enums? 0 Answers

Monodevelop freezes opening js files after creating new project 1 Answer

NavMesh giving jerky like motion 0 Answers

Instantiated objects at beginning of runtime are messing with the pathing for my NavMesh. 0 Answers

NavMesh Agent glitches on navmesh edges 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