Component.GetComponentInParent

Switch to Manual
public Component GetComponentInParent (Type t);

Parameters

t要检索的组件的类型。

Returns

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

Description

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

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


public T GetComponentInParent ();

Returns

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

Description

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

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