Version: 2020.3
public Component[] GetComponents (Type type);

파라미터

type The type of component to retrieve.

설명

Returns all components of Type type in the GameObject.

Note: If the type you request is a derivative of MonoBehaviour and the associated script can not be loaded then this function will return `null` for that component.

// Disable the spring on all HingeJoints in this game object
using UnityEngine;

public class GetComponentsExample : MonoBehaviour { // Disable the spring on all HingeJoints in this game object

void Start() { Component[] hingeJoints;

hingeJoints = GetComponents(typeof(HingeJoint));

foreach (HingeJoint joint in hingeJoints) joint.useSpring = false; } }

public T[] GetComponents ();

설명

Generic version of this method.

Note: If the type you request is a derivative of MonoBehaviour and the associated script can not be loaded then this function will return `null` for that component.

// Disable the spring on all HingeJoints in this game object
using UnityEngine;

public class GetComponentsExample : MonoBehaviour { // Disable the spring on all HingeJoints in this game object

void Start() { HingeJoint[] hingeJoints;

hingeJoints = GetComponents<HingeJoint>();

foreach (HingeJoint joint in hingeJoints) joint.useSpring = false; } }

public void GetComponents (Type type, List<Component> results);

파라미터

type The type of Component to retrieve.
results List to receive the results.

설명

Returns all components of Type type in the GameObject into List results. Note that results is of type Component, not the type of the component retrieved.

Note: If the type you request is a derivative of MonoBehaviour and the associated script can not be loaded then this function will return `null` for that component.

// Disable the spring on all HingeJoints in this game object
using UnityEngine;
using System.Collections.Generic;

public class GetComponentsExample : MonoBehaviour { // Disable the spring on all HingeJoints in this game object

void Start() { // Disable the spring on all HingeJoints in this game object List<Component> hingeJoints = new List<Component>();

GetComponents(typeof(HingeJoint), hingeJoints);

foreach (HingeJoint joint in hingeJoints) joint.useSpring = false; } }

public void GetComponents (List<T> results);

파라미터

results List of type T to receive the results.

설명

Returns all components of Type type in the GameObject into List results.

Note: If the type you request is a derivative of MonoBehaviour and the associated script can not be loaded then this function will return `null` for that component.

// Disable the spring on all HingeJoints in this game object
using UnityEngine;
using System.Collections.Generic;

public class GetComponentsExample : MonoBehaviour { // Disable the spring on all HingeJoints in this game object

void Start() { // Disable the spring on all HingeJoints in this game object List<HingeJoint> hingeJoints = new List<HingeJoint>();

GetComponents(hingeJoints);

foreach (HingeJoint joint in hingeJoints) joint.useSpring = false; } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961