self:set_auto_exposure_max_sensitivity

Client

Sets the camera's maximum auto exposure sensitivity


Syntax

local status = self:set_auto_exposure_max_sensitivity(
    sensitivity
)

Parameters

TypeNameDescription
floatsensitivityMaximum auto exposure sensitivity (ISO)
Sets the upper bound of the auto exposure range

Returns

TypeNameDescription
boolstatustrue on successful execution, false otherwise

Examples

Set the maximum auto exposure sensitivity
local entity = core.camera.create()

entity:set_auto_exposure_enabled(true)
entity:set_auto_exposure_min_sensitivity(50)
entity:set_auto_exposure_max_sensitivity(800)

On this page