Skip to main content

GameObject.GetComponentInChildren(TComponent type)

Returns the component of Type type in the GameObject or any of its children using depth first search.

Parameters:

NameTypeDescription
typeTComponentThe type of Component to retrieve.

Returns:

typeDescription
TComponentA component of the matching type, if found.

Usage

---@type GameObject
local gameobject;

---@type TComponent
local type;


local val0 = gameobject.GetComponentInChildren(type)