Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8234 in orxonox.OLD for branches/bsp_model/src/lib/graphics


Ignore:
Timestamp:
Jun 8, 2006, 1:30:08 PM (18 years ago)
Author:
patrick
Message:

bsp: cr and some manager stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/bsp_model/src/lib/graphics/importer/bsp_manager.cc

    r8233 r8234  
    8484  this->alreadyVisible = new bool [this->bspFile->numFaces];
    8585
    86   this->outputFraction = 1.0f; //FIXME is this needed?
     86  this->outputFraction = 1.0f;
    8787}
    8888/*
     
    862862
    863863  Vector forwardDir = worldEntity->getAbsDirX();
    864   forwardDir.x =8.0*forwardDir.x;
    865   forwardDir.y =8.0*forwardDir.y;
    866   forwardDir.z =8.0*forwardDir.z;
     864  forwardDir = forwardDir * 8.0f;
    867865
    868866  Vector upDir = worldEntity->getAbsDirY();
    869867  Vector dest = position;
     868
    870869  dest.x  += forwardDir.x;
    871870  dest.y  += forwardDir.y;
     
    881880
    882881
    883   if(!worldEntity->isA(CL_PLAYABLE)) {
     882  if(/*!worldEntity->isA(CL_PLAYABLE)*/ false) {
    884883
    885884
Note: See TracChangeset for help on using the changeset viewer.