Class MainRenderTask
The main game rendering task used by the engine.
Namespace: FlaxEngine
Assembly: FlaxEngine.CSharp.dll
Syntax
[Unmanaged]
public class MainRenderTask : SceneRenderTask
Remarks
For Main Render Task its Output may be null because game can be rendered directly to the native window backbuffer. This allows to increase game rendering performance (reduced memory usage and data transfer). User should use post effects pipeline to modify the final frame.
Constructors
MainRenderTask()
Properties
Instance
Gets the main game rendering task. Use it to plug custom rendering logic for your game.
Declaration
[Unmanaged]
public static MainRenderTask Instance { get; }
Property Value
MainRenderTask
|