Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 30, 2008, 3:02:03 PM (17 years ago)
Author:
rgrieder
Message:
  • fixed the InputBufferListener bug in a proper way It looks a little bit ugly, but at least it's got a new feature: You don't need to derive from InputBufferListener (removed it)
  • commented the shader hack in Model.cc
Location:
code/branches/network/src/orxonox
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/network/src/orxonox/GraphicsEngine.cc

    r1477 r1486  
    149149#endif
    150150
    151 /*    // create a logManager
     151// TODO: LogManager doesn't work on specific systems. The why is unknown yet.
     152#if ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32
     153    // create a logManager
    152154    // note: If there's already a logManager, Ogre will complain by a failed assertation.
    153155    // but that shouldn't happen, since this is the first time to create a logManager..
     
    164166
    165167    myLog->setLogDetail(Ogre::LL_BOREME);
    166     myLog->addListener(this);*/
     168    myLog->addListener(this);
     169#endif
    167170
    168171    // Root will detect that we've already created a Log
  • code/branches/network/src/orxonox/objects/Model.cc

    r1466 r1486  
    8585
    8686        //HACK!!
    87         if ((this->meshSrc_ == "assff.mesh") || (this->meshSrc_ == "ast1.mesh") || (this->meshSrc_ == "ast2.mesh") || (this->meshSrc_ == "ast3.mesh") || (this->meshSrc_ == "ast4.mesh") ||(this->meshSrc_ == "ast5.mesh") || (this->meshSrc_ == "ast6.mesh"))
     87        /*if ((this->meshSrc_ == "assff.mesh") || (this->meshSrc_ == "ast1.mesh") || (this->meshSrc_ == "ast2.mesh") || (this->meshSrc_ == "ast3.mesh") || (this->meshSrc_ == "ast4.mesh") ||(this->meshSrc_ == "ast5.mesh") || (this->meshSrc_ == "ast6.mesh"))
    8888        {
    8989          Ogre::MeshPtr pMesh = this->mesh_.getEntity()->getMesh();
     
    104104
    105105
    106         }
     106        }*/
    107107        COUT(4) << "Loader (Model.cc): Created model" << std::endl;
    108108      }
Note: See TracChangeset for help on using the changeset viewer.