self:get_type

Client

Retrieves the type name of the camera instance


Syntax

local result = self:get_type()

Parameters

No parameters are accepted by this function

Returns

TypeNameDescription
string | boolresultType name of the instance, false if unavailable

Examples

Get the type of a camera instance
local entity = core.camera.create()

core.engine.print("info", entity:get_type()) -- "camera"

On this page