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;
public class Example : MonoBehaviour { void Start() { HingeJoint hinge = GetComponentInChildren<HingeJoint>(); hinge.useSpring = false; } }
T A component of the matching type, if found.
Generic version of this method.