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
1
Question by Zachmaster23 · Oct 07, 2012 at 03:30 AM · inputwaitforsecondsgetkeydown

making objects spawn every 5 seconds with getkeyDown

Ok I know you cannot place waitForSeconds in Update()

but... what i'm going for is when the player hits spacebar a object is instantiated but,,, the player needs to wait for certain seconds before another object can be spawned???

tried using a for loop with an if statement imbeded in it no go made unity freeze...

tried using waitForSeconds but i'm not using it correctly .... so whats the easiest way to do this correctly...

Here is my code

 using UnityEngine;
 using System.Collections;
 
 public class ballSpawnerScript : MonoBehaviour {
 
  public Transform ball;
     
     // Update is called once per frame
     void Update () {
         
          if (Input.GetKeyDown("space"))
          { 
           print("space key was pressed");
             
             //wait for certain amount of time
             
           //clone a ball and spawn it on ball spawner
           Transform theClonedBall;
           theClonedBall = Instantiate(ball, transform.position, transform.rotation) as Transform;
             
           
          }
     
     }
 }
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

Answer by rhys_vdw · Oct 07, 2012 at 04:11 AM

You could use IvokeRepeating and CancelInvoke, as Eric5h5 suggests. In which case you would call those methods on GetKeyDown and GetKeyUp respectively.

I tend to roll my own timing stuff, like this:

 public class BallSpawner : MonoBehaviour {
 
     public GameObject ball;
     public float spawnPeriod = 5f;
     private float nextSpawnTime;
 
     // Update is called once per frame
     void Update () {
         if (Input.GetKey("space") && Time.time > nextSpawnTime) { 
          print("Spawning ball!");
 
          nextSpawnTime = Time.time + spawnPeriod;
 
          //clone a ball and spawn it on ball spawner
          Transform theClonedBall = Instantiate(ball, transform.position,
                                         transform.rotation).transform;
         }
     }
 }

Note that I'm using GetKey instead of GetKeyDown to check if the key is being held.

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 Eric5h5 · Oct 07, 2012 at 03:54 AM

Update runs every single frame always; you cannot pause or delay it in any way. Do not use Update for things that you don't want to happen every frame. In this case you can use InvokeRepeating.

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

12 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

Related Questions

how can i use getkey and getkeydown for two diffrent functions. 2 Answers

Play half of Animation on KeyDown/Other Half on KeyUp 1 Answer

When holding down shift cant use the "a" key, an extremely weird bug! 2 Answers

Canvas is preventing Input.GetKeyDown from working. 0 Answers

Simple Quick Question 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