The EnablePostProcessing
property of the SceneCamera
class allows you to toggle all post-processing effects for the camera. By default, post-processing is enabled.
The EnablePostProcessing
property of the SceneCamera
class allows you to toggle all post-processing effects for the camera. By default, post-processing is enabled.
To enable or disable post-processing effects for a SceneCamera
instance, set the EnablePostProcessing
property to true
or false
respectively.
// Create a new SceneCamera instance SceneCamera camera = new SceneCamera(); // Enable post-processing effects camera.EnablePostProcessing = true; // Disable post-processing effects camera.EnablePostProcessing = false;