Version: 2017.3

Component.GetComponents

Switch to Manual
public Component[] GetComponents (Type type);

Parameters

type @param type Тип возвращаемого компонента.

Description

Возвращает все компоненты типа type в GameObject.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public HingeJoint[] hingeJoints; void Example() { hingeJoints = GetComponents<HingeJoint>(); foreach (HingeJoint joint in hingeJoints) { joint.useSpring = false; } } }

public T[] GetComponents ();

Description

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