Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 6, 2006, 4:00:21 PM (18 years ago)
Author:
bensch
Message:

network: scale to ALLWAY 1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/world_entities/world_entity.cc

    r6415 r6417  
    128128    {
    129129      PRINTF(4)("fetching OBJ file: %s\n", fileName);
    130       if (scaling == 1.0)
     130      if (true/*scaling == 1.0*/)
    131131        this->setModel((Model*)ResourceManager::getInstance()->load(fileName, OBJ, RP_CAMPAIGN), modelNumber);
    132132      else
     
    348348 * Debug the WorldEntity
    349349 */
    350 void WorldEntity::debugWE()
     350void WorldEntity::debugEntity() const
    351351{
    352352  PRINT(0)("WorldEntity %s::%s  (DEBUG)\n", this->getClassName(), this->getName());
    353   PRINT(0)("ModelCount %d - ", this->models.size());
     353  this->debugNode();
     354  PRINT(0)("List: %s ; ModelCount %d - ", ObjectManager::OMListToString(this->objectListNumber) , this->models.size());
    354355  for (unsigned int i = 0; i < this->models.size(); i++)
    355356  {
Note: See TracChangeset for help on using the changeset viewer.