Version: 2020.3
言語: 日本語
public Component[] GetComponents (Type type);

パラメーター

type 取得するコンポーネントの型

説明

GameObject から type のタイプのコンポーネントを「すべて」取得します。

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 ();

説明

Generic version of this method.