self:set_auto_exposure_speed

Client

Sets the auto exposure adjustment speed of the camera


Syntax

local status = self:set_auto_exposure_speed(
    speed
)

Parameters

TypeNameDescription
floatspeedAuto exposure adjustment speed to apply

Returns

TypeNameDescription
boolstatustrue on successful execution, false otherwise

Examples

Set the auto exposure speed of a camera
local entity = core.camera.create()

entity:set_auto_exposure_enabled(true)
entity:set_auto_exposure_speed(0.5)

On this page