Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9117 in orxonox.OLD for branches/presentation/src/lib


Ignore:
Timestamp:
Jul 4, 2006, 1:21:19 PM (18 years ago)
Author:
rennerc
Message:

player joins game with last chosen nickname

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/presentation/src/lib/network/network_game_manager.cc

    r9116 r9117  
    101101  std::string playableModel = rules.getPlayableModelFileName( userId, team, playableClassId );
    102102  std::string playableTexture = rules.getPlayableModelFileName( userId, team, playableClassId );
     103  float       playableScale = rules.getPlayableScale( userId, team, playableClassId );
    103104 
    104105  BaseObject * bo = Factory::fabricate( playableClassId );
     
    109110  Playable & playable = *(dynamic_cast<Playable*>(bo));
    110111 
    111   if ( playableTexture != "" )
    112     playable.loadMD2Texture( playableTexture );
    113   if ( playableModel != "" )
    114     playable.loadModel( playableModel );
     112  playable.loadMD2Texture( playableTexture );
     113 
     114  playable.loadModel( playableModel, playableScale );
    115115  playable.setOwner( userId );
    116116  playable.setUniqueID( SharedNetworkData::getInstance()->getNewUniqueID() );
Note: See TracChangeset for help on using the changeset viewer.