Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ FogEnabled

bool Microsoft.Xna.Framework.Graphics.EnvironmentMapEffect.FogEnabled
getset

Implements Microsoft.Xna.Framework.Graphics.IEffectFog.

Definition at line 169 of file EnvironmentMapEffect.cs.

170 {
171 get
172 {
173 return fogEnabled;
174 }
175 set
176 {
177 if (fogEnabled != value)
178 {
180 dirtyFlags |= EffectDirtyFlags.FogEnable | EffectDirtyFlags.ShaderIndex;
181 }
182 }
183 }