public Component[] GetComponents (Type type);

Parameters

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

Description

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

using UnityEngine;

public class Example : MonoBehaviour { void Start() { HingeJoint[] hinges = GetComponents<HingeJoint>(); for (int i = 0; i < hinges.Length; i++) { hinges[i].useSpring = false; } } }

public T[] GetComponents ();

Description

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