t | @param type Тип возвращаемого компонента. |
includeInactive | @param includeInactive Следует ли включать неактивные компоненты в список найденных? |
Returns all components of Type type
in the GameObject or any of its children.
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { public Component[] hingeJoints; void Start() { hingeJoints = GetComponentsInChildren<HingeJoint>(); foreach (HingeJoint joint in hingeJoints) { joint.useSpring = false; } } }
includeInactive | @param includeInactive Следует ли включать неактивные компоненты в список найденных? |
T[] A list of all found components matching the specified type.
Дженерик функции. Для получения дополнительной информации смотрите страницу, посвященную Дженерик функциям.
T[] A list of all found components matching the specified type.
Дженерик функции. Для получения дополнительной информации смотрите страницу, посвященную Дженерик функциям.