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 KamiSama00 · Jan 11, 2017 at 07:43 PM · scriptingproblem

clone, instantiates 2 of my prefabs instead of 1

 using UnityEngine;
 using System.Collections;
 
 public class shooter2 : MonoBehaviour
 {
 
     public GameObject[] projectiles;
     int projectilesNo;
     public float speedFactor;
     public float delay;
 
     public float delayTimer = 2f;
 
     float timer;
 
 
 
 
 
 
 
     // Use this for initialization
     void Start()
     {
         timer = delayTimer;
     }
 
     // Update is called once per frame
     void Update()
     {
 
         timer -= Time.deltaTime;
 
         if (Input.GetMouseButtonDown(0) && timer <= 0)
         {
 
             GameObject clone = (GameObject)Instantiate(projectiles[projectilesNo], transform.position, Quaternion.identity);
              clone.GetComponent<Rigidbody2D>().velocity = -transform.right * speedFactor;
             projectilesNo = Random.Range(0, 2);
 
       
 
             timer = delayTimer;
 
         }
     }
 
 
     IEnumerator Shoots()
     {
         while (true)
         {
 
 
             yield return new WaitForSeconds(delay);
 
 
         }
 
 
     }
 
 
 }






heres the script, im trying to instantiate two different projectiles while moving them while spawning them with random. range. it works it just spawning both of the projectiles at once can anyone tell me why its doing this. im trying to get them to instantiate individually 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 Pengocat · Jan 11, 2017 at 08:43 PM

Maybe you got more than one instance of the script in the scene? You could add Debug.Log(GetInstanceID()); inside the if statement. There should only be one unique ID printing.

Comment
Add comment · Show 4 · 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 KamiSama00 · Jan 11, 2017 at 08:45 PM 0
Share

ill check and see if thats it

avatar image KamiSama00 · Jan 11, 2017 at 08:50 PM 0
Share

when i add Debug.Log(GetInstanceID()); they shoot individually but one of the prefabs doesnt show up now its says in my 162930 UnityEngine.Debug:Log(Object) or some other random set of numbers

avatar image Pengocat KamiSama00 · Jan 11, 2017 at 08:56 PM 0
Share

So there is only one unique number printing? If the script is not generated at runtime you can also simply right click the script in the project folder and select "Find references in Scene" then the Scene Hierarchy will filter out all the objects that don't have the script attached.

avatar image KamiSama00 · Jan 11, 2017 at 08:53 PM 0
Share

-487432 is the one thats small projectile that working correctly

162930 this the other projectile im guessing that not popping up?

is there something wrong with my script

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

88 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

Related Questions

RacingSystem.cs(28,96): error CS0201: Only assignment, call, increment, decrement, and new object expressions can be used as a statement 1 Answer

How can I create and apply SuperNES-esque affine Transformations into my project? 0 Answers

Own player controller script let the view wobbles but why? 0 Answers

Array of scripts on component 1 Answer

gameObject movement too slow 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