Changeset 3605 in orxonox.OLD for orxonox/branches/levelloader/src/world_entities/environment.cc
- Timestamp:
- Mar 18, 2005, 11:52:15 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/levelloader/src/world_entities/environment.cc
r3557 r3605 100 100 Environment::~Environment () 101 101 { 102 delete this->model; 102 103 103 } 104 104 105 105 void Environment::tick (float time) {} 106 106 107 void Environment::hit (WorldEntity* weapon, Vector loc) {}107 void Environment::hit (WorldEntity* weapon, Vector* loc) {} 108 108 109 109 void Environment::destroy () {} … … 114 114 { 115 115 glMatrixMode(GL_MODELVIEW); 116 gl LoadIdentity();116 glPushMatrix(); 117 117 float matrix[4][4]; 118 118 … … 123 123 124 124 this->model->draw(); 125 126 glPopMatrix(); 125 127 } 126 128
Note: See TracChangeset
for help on using the changeset viewer.