GetComponentsInChildren
7/14/25Less than 1 minute
TextMesh.GetComponentsInChildren(TComponent t)
Returns all components of Type type in the GameObject or any of its children.
Parameters:
| Name | Type | Description | 
|---|---|---|
| t | TComponent | The type of Component to retrieve. | 
Returns:
| type | Description | 
|---|---|
| TComponent[] | all components of Type type in the GameObject or any of its children. | 
Usage
---@type TextMesh
local textmesh;
---@type TComponent
local t;
local val0 = textmesh.GetComponentsInChildren(t)
