Changeset 8175 in orxonox.OLD for branches/atmospheric_engine/src/lib/graphics/effects/cloud_effect.h
- Timestamp:
- Jun 6, 2006, 6:34:02 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/atmospheric_engine/src/lib/graphics/effects/cloud_effect.h
r8119 r8175 14 14 #include "glincl.h" 15 15 16 #include "sglmodel.h" 17 18 class Shader; 16 19 class Material; 17 20 class Vector; … … 33 36 virtual void tick(float dt); 34 37 35 void setRadius(float radius);36 void setTexture(char* fileName);38 // void setRadius(float radius); 39 // void setTexture(char* fileName); 37 40 38 41 … … 40 43 void initialize(char* fileName); 41 44 42 GLUquadricObj*sphereObj; // A Placeholder for the Sphere.45 // GLUquadricObj* sphereObj; // A Placeholder for the Sphere. 43 46 Material* cloudMaterial; // A Material for the Sphere. 44 47 float sphereRadius; // Radius of the Sphere. … … 51 54 inline void setCloudAnimation(float speed) { this->cloudSpeed = speed; } 52 55 56 Sglmodel_sgl g_sky_model; 57 Shader* skyShader; 58 59 float g_tint[4]; 60 float g_scroll; 61 62 float time; 63 64 53 65 }; 54 66
Note: See TracChangeset
for help on using the changeset viewer.