Answers for "finding gameobject child with name"

C#
2

how to get an child of an gameobject

// By Name
GameObject Child = GameObjectsTransform.Find("NameOfChild").gameObject

// By index
GameObject Child = GameObjectsTransform.GetChild(The child index).gameObject
Posted by: Guest on October-30-2020

Code answers related to "finding gameobject child with name"

C# Answers by Framework

Browse Popular Code Answers by Language