bool EnablePostProcessing { get; set; }

robot_2Generated
code_blocksInput

Description

The EnablePostProcessing property of the SceneCamera class allows you to toggle all post-processing effects for the camera. By default, post-processing is enabled.

Usage

To enable or disable post-processing effects for a SceneCamera instance, set the EnablePostProcessing property to true or false respectively.

Example

// Create a new SceneCamera instance
SceneCamera camera = new SceneCamera();

// Enable post-processing effects
camera.EnablePostProcessing = true;

// Disable post-processing effects
camera.EnablePostProcessing = false;