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
| Type | Name | Description |
|---|---|---|
float | sensitivity | Maximum auto exposure sensitivity (ISO) Sets the upper bound of the auto exposure range |
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_min_sensitivity(50)
entity:set_auto_exposure_max_sensitivity(800)