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
0
Question by piyurupareliya · Sep 12, 2018 at 04:16 PM · instantiatespawning problemsrandom spawn

Problem with instantiating the object in untiy at certain time intervals

Hello Community I'm a complete beginner in untiy and trying to figure spawn objects randomly at fixed time intervals (every 1 or 2 seconds).. But the issue I'm facing in my script is that the random object is only spawning once and then not spawning.. Where could I be possibly wrong ? alt text

ques.png (32.9 kB)
Comment
Add comment · Show 3
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 piyurupareliya · Sep 12, 2018 at 04:19 PM 0
Share

The idea is - I'm trying to create an endless runner where I want my obstacles to get spawned randomly at any place (but near the player transform and not outside the ground).. So I decided to spawn them after every 1 or 2 seconds so I could keep up the spawning and the game pace proper. Please suggest me alternatives too if you have any .. would do a great deal of help !!! Thanks :)

avatar image TreyH · Sep 12, 2018 at 04:22 PM 1
Share

How are you starting the routine? It should look something like:

 void Start() 
 {
     this.StartCoroutine(this.Example());
 }


avatar image trapazza · Sep 12, 2018 at 04:39 PM 0
Share

What is SpawnRandom() for? When are you calling Example()? Who calls which, and when()?

1 Reply

· Add your reply
  • Sort: 
avatar image
1

Answer by I5 · Sep 12, 2018 at 04:34 PM

My suggestion would be to use a single "master/controller" script one some empty game object (you may already be doing that), and instead of using a coroutine, I'd try using the Update method instead. The code below should get you started if you wanted to try using Update instead of a coroutine:

 private float nextSpawnTime = 0f;
         private List<GameObject> spawnedChars = new List<GameObject>();
         private int maxCharsPlusOne = 11;
         void Update() {
             if (Time.time > nextSpawnTime && spawnedChars.Count < maxCharsPlusOne) {
                 nextSpawnTime = Time.time + UnityEngine.Random.Range(1f, 2f);
                 spawnRandom();
             }
         }
 
         void spawnRandom() {
             spawnedChars.Add(Instantiate("insert your params for instaniating"));
         }
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 piyurupareliya · Sep 13, 2018 at 01:25 AM 0
Share

Thanks a lot I5 ! Would surely try and get back to you !

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

111 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 avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Using event system to respawn dead enemies will spawn live ones again too 0 Answers

Problem with Coroutine or Istantiate 0 Answers

Random Object Spawning 0 Answers

Instantiated Prefab doesn't appear? 3 Answers

How to spawn an object continually while floating vertically like a bubble 1 Answer


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