Answers for "search for a child unity"

C#
18

find child of gameobject unity

gameObject.transform.Find("ChildGameObject").gameObject;

//This insures that you are finding the child instead of finding another
//GameObject's Child.
Posted by: Guest on May-31-2020
0

unity find child by name

aFinger = transform.Find("LeftShoulder/Arm/Hand/Finger");
Posted by: Guest on October-11-2021

Code answers related to "search for a child unity"

C# Answers by Framework

Browse Popular Code Answers by Language