Files
2026-02-21 16:45:37 +08:00

23 lines
338 B
C#

namespace VolumetricFogAndMist
{
public enum FOG_PRESET
{
Clear = 0,
Mist = 10,
WindyMist = 11,
LowClouds = 20,
SeaClouds = 21,
GroundFog = 30,
FrostedGround = 31,
FoggyLake = 32,
Fog = 41,
HeavyFog = 42,
SandStorm1 = 50,
Smoke = 51,
ToxicSwamp = 52,
SandStorm2 = 53,
WorldEdge = 200,
Custom = 1000
}
}