Changeset 8787 in orxonox.OLD for branches/atmospheric_engine/src/lib/graphics/effects/rain_effect.h
- Timestamp:
- Jun 26, 2006, 2:29:33 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/atmospheric_engine/src/lib/graphics/effects/rain_effect.h
r8771 r8787 18 18 class PlainEmitter; 19 19 class LightManager; 20 class CloudEffect; 20 21 21 22 #include "sound_buffer.h" … … 85 86 this->rainFadeOutDuration = fadeout; 86 87 } 88 89 inline void setCloudColor(float colorX, float colorY, float colorZ) 90 { 91 this->cloudColor = Vector(colorX, colorY, colorZ); 92 } 93 inline void setSkyColor(float colorX, float colorY, float colorZ) 94 { 95 this->skyColor = Vector(colorX, colorY, colorZ); 96 } 87 97 88 98 inline void setRainOption(const std::string& option) … … 122 132 LightManager* lightMan; 123 133 GLfloat rainAmbient; 134 135 Vector oldSkyColor; 136 Vector oldCloudColor; 137 Vector skyColor; 138 Vector cloudColor; 124 139 125 140 };
Note: See TracChangeset
for help on using the changeset viewer.