Version: 2018.4
Obsolete public Component AddComponent (string className);

説明

ゲームオブジェクトに className という名のコンポーネントクラスを追加します

GameObject.AddComponent with string argument has been deprecated. Use AddComponent(Type) or the generic version instead.


public Component AddComponent (Type componentType);

説明

componentType のタイプからコンポーネントクラスをゲームオブジェクトに追加します。C# ユーザーはジェネリック版を使用することができます

using UnityEngine;
using System.Collections;

public class AddComponentExample : MonoBehaviour { void Start() { SphereCollider sc = gameObject.AddComponent(typeof(SphereCollider)) as SphereCollider; } }

Note that there is no RemoveComponent(), to remove a component, use Object.Destroy.


public T AddComponent ();

説明

ジェネリック版。詳細については Generic Functions を参照してください。

using UnityEngine;
using System.Collections;

public class AddComponentExample : MonoBehaviour { void Start() { SphereCollider sc = gameObject.AddComponent<SphereCollider>() as SphereCollider; } }