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
0
Question by boddole · Feb 17, 2014 at 05:30 AM · c#childtag

Trouble Accessing Child tag

Hello everyone, I'm having some trouble trying to get the tag of a child object in a hierarchy.

Hierarchy Setup: Parent/Child1 (the object the script is on)/Child2 (the object with the tag I'm trying to find, it is randomly assigned at runtime, meaning I don't know the value of the tag before hand).

I've tried using the gameObject.getcomponentinchild and then accessing the tag, but the tag comes back with Child1's tag. So I was wondering what the best way to do this would be.

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
Best Answer

Answer by RudyTheDev · Feb 17, 2014 at 11:51 AM

A) Best (without knowing more) way -- have the parent reference the child:

 public class ParentScript : MonoBehaviour // script on parent object
 {
     public GameObject child; // child object drag&dropped in inspector
 }

B) You can use gameObject.transform.GetChild(1).tag, but that implies it is always the second child, whereas Unity doesn't guarantee such child order.

Comment
Add comment · Show 3 · 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 boddole · Feb 17, 2014 at 06:08 PM 0
Share

A) Best (without knowing more) way -- have the parent reference the child.

  • As mentioned above, I cannot add the reference from the inspector since the child in question is not generated until the program has started.

B) You can use gameObject.transform.GetChild(1).tag, but that implies it is always the second child, whereas Unity doesn't guarantee such child order.

--I'm not quite sure what you mean, so if there were 2 equal children of an object, Unity would randomly pick one? Or pick one according to however Unity sorts children (by name I guess)?

avatar image boddole · Feb 17, 2014 at 06:16 PM 0
Share

Also I should mention, that your "gameObject.transform.GetChild(1).tag" worked just fine (and thank you for that). But I was just wondering why that approach works, but trying my original method (looking up the child from the Child1 gameobject went up to the parent gameobject, then back down again to Child1 and got its tag (ins$$anonymous$$d of just doing down from Child 1 to Child 2 and getting its tag).

avatar image RudyTheDev · Feb 17, 2014 at 06:43 PM 0
Share

Unity does not guarantee child order, that's all. It may work if you don't change anything relevant and if a newer version doesn't change anything. But it is not guaranteed, and so a potential bug in waiting. I recommend you at least do some addition check. $$anonymous$$ay be even parse all children.

As for public GameObject child;, you can always store the reference when you actually create the child.

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

19 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

Related Questions

Getting a tag from a child 1 Answer

Controlling GameObject selection across Parent/Child 1 Answer

Looking for a Better Way to check Multiple Tags 2 Answers

C# How to Check If a Gameobject's tag doesn't equal a Specific Tag 3 Answers

The name 'Joystick' does not denote a valid type ('not found') 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