Color SkyTint { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The SkyTint property of the SceneSkyBox class represents the color tint applied to the skybox. This property allows you to modify the overall color tone of the skybox, which can be useful for creating different atmospheric effects or matching the skybox to the scene's lighting conditions.

Usage

To use the SkyTint property, you need to have an instance of the SceneSkyBox class. You can then get or set the SkyTint property to adjust the color tint of the skybox.

Example usage:

SceneSkyBox skyBox = new SceneSkyBox();
// Set the skybox tint to a light blue color
skyBox.SkyTint = new Color(0.5f, 0.7f, 1.0f);

Example

SceneSkyBox skyBox = new SceneSkyBox();
// Set the skybox tint to a light blue color
skyBox.SkyTint = new Color(0.5f, 0.7f, 1.0f);