Changeset 3370 in orxonox.OLD for orxonox/trunk/src
- Timestamp:
- Jan 7, 2005, 3:04:58 AM (20 years ago)
- Location:
- orxonox/trunk/src
- Files:
-
- 4 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/p_node.cc
r3365 r3370 226 226 */ 227 227 void PNode::setAbsDir (Quaternion* absDir) 228 {} 228 { 229 this->bAbsDirChanged = true; 230 this->absDirection = *absDir; 231 } 229 232 230 233 -
orxonox/trunk/src/player.cc
r3365 r3370 104 104 float matrix[4][4]; 105 105 106 glTranslatef (this->getAbsCoor ().x, this->getAbsCoor ().y, this->getAbsCoor ().z); 107 //rotate 106 /* translate */ 107 glTranslatef (this->getAbsCoor ().x, 108 this->getAbsCoor ().y, 109 this->getAbsCoor ().z); 110 /* rotate */ 108 111 this->getAbsDir ().matrix (matrix); 109 112 glMultMatrixf((float*)matrix); -
orxonox/trunk/src/world.cc
r3368 r3370 161 161 printf ("World::releaseLoadScreen - start\n"); 162 162 this->glmis->setValue(this->glmis->getMaximum()); 163 SDL_Delay( 2000);163 SDL_Delay(500); 164 164 printf ("World::releaseLoadScreen - end\n"); 165 165 }
Note: See TracChangeset
for help on using the changeset viewer.