self:get_auto_exposure_speed

Client

Retrieves the auto exposure adjustment speed of the camera


Syntax

local speed = self:get_auto_exposure_speed()

Parameters

No parameters are accepted by this function

Returns

TypeNameDescription
floatspeedCurrent auto exposure adjustment speed

Examples

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

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

On this page