Description
The SceneCameraDebugMode.Normal
field is a member of the SceneCameraDebugMode
enumeration in the Sandbox namespace. It represents the default camera mode where the scene is rendered with standard lighting and shading, providing a realistic view of the scene as it would appear in a typical game environment.
Usage
Use SceneCameraDebugMode.Normal
when you want to render the scene with normal lighting conditions. This mode is suitable for general gameplay and when you want to see the scene as it would appear to the player.
Example
// Example of setting the camera debug mode to Normal
SceneCamera camera = new SceneCamera();
camera.DebugMode = SceneCameraDebugMode.Normal;