言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Component.GetComponents

public Component[] GetComponents(Type type);

Parameters

type The type of Component to retrieve.

Description

Returns all components of Type type in the 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

Generic version. See the Generic Functions page for more details.