Skip to content

Api > Behaviour > TryGetComponent()


Behaviour.TryGetComponent([]{Generic : Component|info} type)⚓︎

Gets the component of the specified type, if it exists.

Parameters:⚓︎

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

Returns:⚓︎

type Description
boolean Returns true if the component is found, false otherwise.
[]{Generic : Component info}

Usage⚓︎

---@type Behaviour
local behaviour;

---@type TComponent
local type;


local val0, val1 = behaviour.TryGetComponent(type)

Example⚓︎

exists, component = myComponent.TryGetComponent(Transform);
-- exists is a boolean
-- component is Component or nil