GameObject.GetComponent

返回游戏对象(GameObject)的第一个指定类型组件,如果没有则返回 null

定义

public Component GetComponent(Type type);
参数名类型必要说明
typeType要检索的组件类型
public Component GetComponent(string type);
参数名类型必要说明
typestring要检索的组件类型
public T GetComponent<T>();
参数名类型必要说明
T泛型要检索的组件类型