self:set_auto_exposure_speed
Client
Sets the camera's auto exposure adaptation speed
Syntax
local status = self:set_auto_exposure_speed(
speed
)Parameters
| Type | Name | Description |
|---|---|---|
float | speed | Auto exposure speed Controls how quickly the camera adapts to lighting changes |
Returns
| Type | Name | Description |
|---|---|---|
bool | status | true on successful execution, false otherwise |
Examples
local entity = core.camera.create()
entity:set_auto_exposure_enabled(true)
entity:set_auto_exposure_speed(1.0)