Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7954 in orxonox.OLD for trunk/src/story_entities


Ignore:
Timestamp:
May 29, 2006, 3:28:41 PM (19 years ago)
Author:
patrick
Message:

trunk: merged the network branche back to trunk.

Location:
trunk/src/story_entities
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/story_entities/multi_player_world.cc

    r7287 r7954  
    8181void MultiPlayerWorld::synchronize()
    8282{
    83   NetworkManager::getInstance()->synchronize();
     83  NetworkManager::getInstance()->synchronize(this->dtS);
    8484}
    8585
  • trunk/src/story_entities/multi_player_world_data.cc

    r7370 r7954  
    226226    PNode::getNullParent()->init();
    227227  }
     228    // Fill the EntityLists. Tick then Draw:
     229  this->tickLists.push_back(OM_DEAD_TICK);
     230  this->tickLists.push_back(OM_ENVIRON);
     231  this->tickLists.push_back(OM_COMMON);
     232  this->tickLists.push_back(OM_GROUP_00);
     233  this->tickLists.push_back(OM_GROUP_00_PROJ);
     234  this->tickLists.push_back(OM_GROUP_01);
     235  this->tickLists.push_back(OM_GROUP_01_PROJ);
     236
     237  this->drawLists.push_back(OM_ENVIRON_NOTICK);
     238  this->drawLists.push_back(OM_ENVIRON);
     239  this->drawLists.push_back(OM_COMMON);
     240  this->drawLists.push_back(OM_GROUP_00);
     241  this->drawLists.push_back(OM_GROUP_00_PROJ);
     242  this->drawLists.push_back(OM_GROUP_01);
     243  this->drawLists.push_back(OM_GROUP_01_PROJ);
     244 
    228245  State::setPlayer(this->localPlayer);
    229246}
Note: See TracChangeset for help on using the changeset viewer.