Skip to content

Api > MLStation > GetComponentInParent()


MLStation.GetComponentInParent([]{Generic : Component|info} t)⚓︎

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

Parameters:⚓︎

Name Type Description
t []{Generic : Component info}

Returns:⚓︎

type Description
[]{Generic : Component info}

Usage⚓︎

---@type MLStation
local mlstation;

---@type TComponent
local t;


local val0 = mlstation.GetComponentInParent(t)

Extra Detail⚓︎

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