Version: 5.3 (switch to 5.4b)
ЯзыкEnglish
  • C#
  • JS

Язык программирования

Выберите подходящий для вас язык программирования. Все примеры кода будут представлены на выбранном языке.

GameObject.GetComponentInChildren

Предложить изменения

Успех!

Благодарим вас за то, что вы помогаете нам улучшить качество документации по Unity. Однако, мы не можем принять любой перевод. Мы проверяем каждый предложенный вами вариант перевода и принимаем его только если он соответствует оригиналу.

Закрыть

Ошибка внесения изменений

По определённым причинам предложенный вами перевод не может быть принят. Пожалуйста <a>попробуйте снова</a> через пару минут. И выражаем вам свою благодарность за то, что вы уделяете время, чтобы улучшить документацию по Unity.

Закрыть

Отменить

Руководство
public function GetComponentInChildren(type: Type): Component;
public Component GetComponentInChildren(Type type);
public function GetComponentInChildren(type: Type, includeInactive: bool): Component;
public Component GetComponentInChildren(Type type, bool includeInactive);

Параметры

type @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 GetComponentInChildrenExample : MonoBehaviour { // Disable the spring on the first HingeJoint component found on any child object

void Start( ) { HingeJoint hinge = gameObject.GetComponentInChildren( typeof(HingeJoint) ) as HingeJoint;

if( hinge != null ) hinge.useSpring = false; else { // Try again, looking for inactive GameObjects HingeJoint hingeInactive = gameObject.GetComponentInChildren( typeof(HingeJoint), true ) as HingeJoint;

if( hingeInactive != null ) hingeInactive.useSpring = false; } } }

public function GetComponentInChildren(includeInactive: bool = false): T;
public T GetComponentInChildren(bool includeInactive = false);
public function GetComponentInChildren(includeInactive: bool = false): T;
public T GetComponentInChildren(bool includeInactive = false);

Параметры

Возврат значений

T A component of the matching type, if found.

Описание

Дженерик функции. Для получения дополнительной информации смотрите страницу, посвященную Дженерик функциям.


        
using UnityEngine;

public class GetComponentInChildrenExample : MonoBehaviour { // Disable the spring on the first HingeJoint component found on any child object

void Start( ) { HingeJoint hinge = gameObject.GetComponentInChildren<HingeJoint>( );

if( hinge != null ) hinge.useSpring = false; else { // Try again, looking for inactive GameObjects HingeJoint hingeInactive = gameObject.GetComponentInChildren<HingeJoint>( true ) as HingeJoint;

if( hingeInactive != null ) hingeInactive.useSpring = false; } } }