LineRenderer.GetComponentInParent(TComponent t)
Returns the component of Type type in the GameObject or any of its parents.
Parameters:
Name | Type | Description |
---|---|---|
t | TComponent | The type of Component to retrieve. |
Returns:
type | Description |
---|---|
TComponent | A component of the matching type, if found. |
Usage
---@type LineRenderer
local linerenderer;
---@type TComponent
local t;
local val0 = linerenderer.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.