Class IPostFxSettingsProvider
Interface for actors that can override the default rendering settings (eg. PostFxVolume actor).
Inheritance
IPostFxSettingsProvider
Assembly: FlaxEngine.dll
File: Engine/Level/Scene/SceneRendering.h
Syntax
public class IPostFxSettingsProvider
Methods
Blend(PostProcessSettings& other, float weight)
Blends the object settings to the given settings using given weight.
Declaration
public virtual void Blend(PostProcessSettings& other, float weight) = 0
Parameters
PostProcessSettings
other
The other settings to blend to. |
float
weight
The blending weight (normalized to 0-1 range). |
Collect(RenderContext& renderContext)
Collects the settings for rendering of the specified task.
Declaration
public virtual void Collect(RenderContext& renderContext) = 0
Parameters
RenderContext
renderContext
The rendering context. |