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 RoboticSarcasm · Jan 01, 2014 at 04:20 PM · javascriptparentchildren

How to find an object in children

Hello everyone, in my game there is a prefab enemy which has an empty object called 'enmshotPos'. Every enemy has this. When an enemy shoots it finds the enmshotPos. The problem here is that EVERY enemy has this and it thus finds one specific one. Is there anyway to make it find enmshotPos in its children so it picks the one it parents and not a random one?

Here is the code it finds enmshotPos in:

 var enemybullet = Instantiate(enemybullet, 
  
 GameObject.Find("enmshotPos").transform.position, 
  
 GameObject.Find("enmshotPos").transform.rotation);
  
 enemybullet.rigidbody.AddForce(enemybullet.transform.forward * force);
  
 rate_time = Time.time + rate;


To anyone reading this: thanks a lot for taking the time to read this and thanks for answering if you do decide to do so.

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 Sundar · Jan 01, 2014 at 04:40 PM 1
Share

Transform parentObject;

Transform childObject = parentObject.FindChild( "childName" );

1 Reply

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by robertbu · Jan 01, 2014 at 05:30 PM

You can use Transform.Find() for this. Note if the object is down the hierarchy, you need to include the path. Say you have the hierarchy of game objects:

 Parent
     Child1
     Child2
         Granschild1
     Child3

Say your script was on the parent. You would find 'Child3':

 var tr : Transform = transform.Find("Child3");

And you would find 'Grandchild1';

 var tr : Transform = transform.Find("Child2/Grandchild1");

So for your particular situation, assuming 'enmshotPos' is the child of 'enemybullet' and that enemybullet is a GameObject, you can do:

 var tr : Transform = enemybullet.transform.Find("enmshotPos");
 var enemybullet = Instantiate(enemybullet, tr.position, tr.rotation) as GameObject;


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

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

Create multiple instances of an object 2 Answers

Update Parent/ Children From Script? 2 Answers

how to put the objects together (javascript) 1 Answer

GetComponent searches an objects child instead of the object 2 Answers

GameObject parent use JavaScript 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