environmentSettings property

EnvironmentSettings get environmentSettings

The scene's blendable look (image-based lighting, exposure, tone mapping, and post-processing) as a copyable value.

Reading snapshots the current look; assigning applies one. Use EnvironmentSettings.lerp to interpolate between two looks for a scripted transition (drive t from an animation each frame).

Implementation

EnvironmentSettings get environmentSettings =>
    EnvironmentSettings.fromScene(this);
set environmentSettings (EnvironmentSettings value)

Implementation

set environmentSettings(EnvironmentSettings value) => value.applyTo(this);