Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3370 in orxonox.OLD


Ignore:
Timestamp:
Jan 7, 2005, 3:04:58 AM (19 years ago)
Author:
patrick
Message:

orxonox/trunk/ added sfont library to draw some letters on the screen.

Location:
orxonox/trunk/src
Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/p_node.cc

    r3365 r3370  
    226226*/
    227227void PNode::setAbsDir (Quaternion* absDir)
    228 {}
     228{
     229  this->bAbsDirChanged = true;
     230  this->absDirection = *absDir;
     231}
    229232
    230233
  • orxonox/trunk/src/player.cc

    r3365 r3370  
    104104  float matrix[4][4];
    105105 
    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 */
    108111  this->getAbsDir ().matrix (matrix);
    109112  glMultMatrixf((float*)matrix);
  • orxonox/trunk/src/world.cc

    r3368 r3370  
    161161  printf ("World::releaseLoadScreen - start\n");
    162162  this->glmis->setValue(this->glmis->getMaximum());
    163   SDL_Delay(2000);
     163  SDL_Delay(500);
    164164  printf ("World::releaseLoadScreen - end\n");
    165165}
Note: See TracChangeset for help on using the changeset viewer.