This version of Unity is unsupported.

Component.GetComponentInParent

Declaration

public Component GetComponentInParent(Type t);

Parameters

t The type of Component to retrieve.

Returns

Component A component of the matching type, if found.

Description

Returns the component of Type type in the GameObject or any of its parents.

Recurses upwards until it finds a valid component. Returns null if no component found. Only components on active GameObjects are returned.


Declaration

public T GetComponentInParent();

Returns

T A component of the matching type, if found.

Description

Generic version of this method.

Recurses upwards till it finds a valid component. Returns null if no component found. Only component on active Game Objects are returned.