t | @param type Тип возвращаемого компонента. |
Component A component of the matching type, if found.
Возвращает компонент типа type
в GameObject или некоторого его потомка через поиск в глубину.
A component is returned only if it is found on an active GameObject.
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { public HingeJoint hinge; void Example() { hinge = GetComponentInChildren<HingeJoint>(); hinge.useSpring = false; } }
T A component of the matching type, if found.
Дженерик функции. Для получения дополнительной информации смотрите страницу, посвященную Дженерик функциям.