self:is_auto_exposure_enabled

Client

Checks whether auto exposure is enabled on the camera


Syntax

local result = self:is_auto_exposure_enabled()

Parameters

No parameters are accepted by this function

Returns

TypeNameDescription
boolresulttrue if auto exposure is enabled, false otherwise

Examples

Check if auto exposure is enabled
local entity = core.camera.create()

core.engine.print("info", "Auto exposure:", entity:is_auto_exposure_enabled())

On this page