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 LUPShow · Aug 20, 2015 at 07:21 PM · c#destroytagfindgameobjectswithtag

strange behaviour when creating and deleting objects with tags

hi. i am observing a very strange behavior in my project. not sure, if i am just missing something or it is a bug.

I am creating GameObjects at runtime and give them tags.

GameObject currGarage = new GameObject (); currGarage.tag = "Garage";

later, i create a list and add objects with this tag to the list:

 GameObject[] garageArray = GameObject.FindGameObjectsWithTag ("Garage");
 
         foreach(GameObject g in garageArray) {
             if(g != null) {
                 allGarages.Add(g);
             } else {
                 Debug.Log("object null");
             }
         }

then, at some point, i delete all objects in this list:

 foreach (GameObject g in appLogic.garageManager.allGarages) {
                     g.SetActive(true);
                     Destroy (g);
                 }


after that i create again some new GameObjects with that tag and write them into a new array:

 GameObject[] garageArray = GameObject.FindGameObjectsWithTag ("Garage");


now i have an array of the size of all Gameobjects with that tag ever created. even if i delete objects, unity keeps referencing them.

Am i doing something wrong? Or is it normal behaviour? I just want the "fresh" objects, without references to the destroyed ones...

someone knows more about this issue?

Comment
Add comment · Show 1
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 LUPShow · Aug 24, 2015 at 03:37 PM 0
Share

hi. the actual code is above.

 GameObject[] garageArray = GameObject.FindGameObjectsWithTag ("Garage");

that gives me an array with the size of all created objects with that tag, even if they were destroyed before i call this line. i have no error there are only null elements in the array... but i destroyed the object they are referencing. so why there still are references???

1 Reply

· Add your reply
  • Sort: 
avatar image
1

Answer by YoungDeveloper · Aug 20, 2015 at 07:24 PM

now i have an array of the size of all Gameobjects with that tag ever created. even if i delete objects, unity keeps referencing them.

How do you know? What's the error? Post actual relevant code which creates, collects, destroys and throws error! If gameobject is destroyed in scene, reference to it is broken and it is null.

Is it possible that you are trying to access primitive array using index array[index] without checking for null first?

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Destroy gameobject by tag (.js) 3 Answers

GameObject.FindGameObjectsWithTag still finding destroyed object (C#) 1 Answer

setActive on object in separate scene 2 Answers

Count the contents of the list from FindGameObjectsWithTag 1 Answer

Destroy object on touch of object with specific class 3 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