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 /
avatar image
0
Question by Amanichai · Jul 18, 2018 at 01:26 AM · instantiatemobiledestroydestroy objecttap

Destroy A Certain Instantiate On Tap Help?

So as the title states, what I am trying to do with these scripts is make it so that the game will spawn 0-5 objects and when a certain one of these instantiated objects are tapped, they are destroyed. My problem at the moment is that when I tap any of the objects that randomly spawn, only the original game object gets destroyed. Any suggestions would do wonders.

Script that spawns objects:

     public Transform prefab;
     private int randNum;
     private int radius;
 
     // Use this for initialization
     void Start ()
     {
         randNum = Random.Range(0, 5);
         radius = Random.Range(0, 5);
         for (int i = 0; i < randNum; i++)
         {
          Instantiate(prefab, Random.insideUnitSphere * radius + transform.position, transform.rotation);
         }
 
     }

Script that allows game objects to be tapped and then destroyed:

     public Text countScore;
     private int score;
     public GameObject prefab;
 
     // Use this for initialization
     void Start () {
 
         score = 0;
         SetCountText();
 
     }
 
     // Update is called once per frame
     void Update()
     {
         if ((Input.touchCount > 0) && (Input.GetTouch(0).phase == TouchPhase.Began))
         {
             Ray raycast = Camera.main.ScreenPointToRay(Input.GetTouch(0).position);
             RaycastHit raycastHit;
             if (Physics.Raycast(raycast, out raycastHit))
             {
                 Debug.Log("Something Hit");
                 Destroy(prefab);
 
             if (raycastHit.collider.name == "Button")
                 {
                     Debug.Log("Button clicked");
                 }
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

Answer by JVene · Jul 18, 2018 at 03:00 AM

@Amanichai, if you create 5 objects, you have to destroy 5 objects. If you create 5 children of a parent object, you can delete the parent to delete the children.

To 'remember' the 5 objects (or whatever the quantity), you need to know what they are. You could "Find" them, or you could remember them in a container.

Try something like:

  public Transform prefab;
  private int randNum;
  private int radius;

 // a list for the objects
  public static List< GameObject > objects;

  // Use this for initialization
  void Start ()
  {
      // define storage for the list of objects
      objects = new List< GameObject >();
      randNum = Random.Range(0, 5);
      radius = Random.Range(0, 5);
      for (int i = 0; i < randNum; i++)
      {
       // remember what Instantiate returns as a GameObject

       GameObject o = Instantiate(prefab, Random.insideUnitSphere * radius + transform.position, transform.rotation) as GameObject;

       // add to the list of objects
       objects.Add( o );
      }
  }

Then, when the time comes to remove all of them, something like:

 foreach( GameObject o in objects )
  {
   Destroy( o );
  }
 objects.clear(); // they're destroyed, so forget them.

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

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

Sudden frame rate drops on mobile when instantiating/destroying? 1 Answer

How do I Destroy a Child after Instantiating it? 1 Answer

how to destroy a object only in game and not the prefab 2 Answers

How to Destroy Particle System after Instantiating,How to destroy a particle system that was just spawned? 1 Answer

Pooling everything...or not? 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