Changeset 9205 in orxonox.OLD for branches/presentation/src/lib/graphics/effects/fog_effect.h
- Timestamp:
- Jul 5, 2006, 10:40:50 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/presentation/src/lib/graphics/effects/fog_effect.h
r8793 r9205 10 10 #include "glincl.h" 11 11 #include "vector.h" 12 13 class CloudEffect; 12 14 13 15 class FogEffect : public WeatherEffect … … 73 75 this->fogActivate = true; 74 76 } 77 78 inline void setCloudColor(float colorX, float colorY, float colorZ) 79 { 80 this->cloudColor = Vector(colorX, colorY, colorZ); 81 } 82 inline void setSkyColor(float colorX, float colorY, float colorZ) 83 { 84 this->skyColor = Vector(colorX, colorY, colorZ); 85 } 75 86 76 87 void fadeInFog(); … … 109 120 Vector colorVector; 110 121 float localTimer; 122 123 Vector oldSkyColor; 124 Vector oldCloudColor; 125 Vector skyColor; 126 Vector cloudColor; 111 127 }; 112 128
Note: See TracChangeset
for help on using the changeset viewer.