Version: 5.4 beta (switch to 5.3)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

GameObject.GetComponents

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

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

Parameters

type The type of Component to retrieve.

Description

Returns all components of Type type in the GameObject.

// 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; } }
no example available in C#

public function GetComponents(): T[];
public T[] GetComponents();

Description

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

#pragma strict
// Disable the spring on all HingeJoints in this game object
public class GetComponentsExample extends MonoBehaviour {
	// Disable the spring on all HingeJoints in this game object
	function Start() {
		var hingeJoints: HingeJoint[];
		hingeJoints = GetComponents.<HingeJoint>();
		for (var joint: HingeJoint in hingeJoints)
			joint.useSpring = false;
	}
}
// 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 function GetComponents(type: Type, results: List<Component>): void;
public void GetComponents(Type type, List<Component> results);

Parameters

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

Description

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.


        
// 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 function GetComponents(results: List<T>): void;
public void GetComponents(List<T> results);

Parameters

results List of type T to receive the results.

Description

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


        
// 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; } }