bool ContinuousMode { get; set; }

robot_2Generated
code_blocksInput

Description

The ContinuousMode property of the VolumetricFogParameters class is a boolean value that indicates whether the fog system operates in a continuous mode. This property is marked as obsolete, which means it is outdated and may be removed in future versions. It is recommended to avoid using this property in new code and to refactor existing code to remove its usage.

Usage

Since ContinuousMode is marked as obsolete, it is advised to check for alternative properties or methods that provide similar functionality. If you must use it, ensure that your code is prepared for future changes or removal of this property.

Example

// Example of accessing the ContinuousMode property
VolumetricFogParameters fogParams = new VolumetricFogParameters();

// Check if ContinuousMode is enabled (not recommended due to obsolescence)
bool isContinuous = fogParams.ContinuousMode;

// Set ContinuousMode (not recommended due to obsolescence)
fogParams.ContinuousMode = true;