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 auto exposure state
local entity = core.camera.create()

entity:set_auto_exposure_enabled(true)
core.engine.print("info", entity:is_auto_exposure_enabled()) -- true

On this page