Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

Component.GetComponentInChildren

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public function GetComponentInChildren(t: Type): Component;
public Component GetComponentInChildren(Type t);

Parámetros

t @param type El tipo de Component para recuperar.

Valor de retorno

Component A component of the matching type, if found.

Descripción

Returns the component of Type type in the GameObject or any of its children using depth first search.

A component is returned only if it is found on an active GameObject.

// Disable the spring of the first HingeJoint component
// found on any child object.

var hinge : HingeJoint; hinge = GetComponentInChildren(HingeJoint); hinge.useSpring = false;
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public HingeJoint hinge; void Example() { hinge = GetComponentInChildren<HingeJoint>(); hinge.useSpring = false; } }

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

Parámetros

Valor de retorno

T A component of the matching type, if found.

Descripción

Versión genérica. Para más detalles, mira la página de Funciones genéricas.