Component.GetComponentInParent

切换到手册
public Component GetComponentInParent (Type t);

参数

t要检索的组件的类型。

返回

Component 匹配类型的组件(如果找到)。

描述

返回 GameObject 或其任何父项中类型为 type 的组件。

向上递归,直到其找到有效组件为止。如果未找到组件, 则返回 null。仅返回活动 GameObject 上的组件。


public T GetComponentInParent ();

返回

T 匹配类型的组件(如果找到)。

描述

通用版本。有关更多详细信息,请参阅通用函数页面。

向上递归,直到其找到有效组件为止。如果未找到组件,则返回 null。仅返回活动游戏对象上的组件。