Description
The ForceNoClipmaps
property is a boolean flag within the VolumetricFogParameters
class. It is marked as obsolete, indicating that it should not be used in new code as it may be removed in future versions. This property was intended to control whether clipmaps are used in the volumetric fog system.
Usage
Since ForceNoClipmaps
is marked as obsolete, it is recommended to avoid using this property in your code. Instead, look for alternative properties or methods that provide the desired functionality without relying on deprecated features.
Example
// Example of accessing the ForceNoClipmaps property
// Note: This property is obsolete and should be avoided in new code.
VolumetricFogParameters fogParams = new VolumetricFogParameters();
// Accessing the obsolete property
bool noClipmaps = fogParams.ForceNoClipmaps;
// Setting the obsolete property
fogParams.ForceNoClipmaps = true;