Changeset 8234 in orxonox.OLD for branches/bsp_model/src/lib/graphics
- Timestamp:
- Jun 8, 2006, 1:30:08 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/bsp_model/src/lib/graphics/importer/bsp_manager.cc
r8233 r8234 84 84 this->alreadyVisible = new bool [this->bspFile->numFaces]; 85 85 86 this->outputFraction = 1.0f; //FIXME is this needed?86 this->outputFraction = 1.0f; 87 87 } 88 88 /* … … 862 862 863 863 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; 867 865 868 866 Vector upDir = worldEntity->getAbsDirY(); 869 867 Vector dest = position; 868 870 869 dest.x += forwardDir.x; 871 870 dest.y += forwardDir.y; … … 881 880 882 881 883 if( !worldEntity->isA(CL_PLAYABLE)) {882 if(/*!worldEntity->isA(CL_PLAYABLE)*/ false) { 884 883 885 884
Note: See TracChangeset
for help on using the changeset viewer.