Changeset 8832 in orxonox.OLD for branches/multi_player_map/src
- Timestamp:
- Jun 27, 2006, 4:29:19 PM (18 years ago)
- Location:
- branches/multi_player_map/src/world_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/multi_player_map/src/world_entities/world_entity.cc
r8778 r8832 90 90 modelFileName_handle = registerVarId( new SynchronizeableString( &modelFileName, &modelFileName, "modelFileName" ) ); 91 91 scaling_handle = registerVarId( new SynchronizeableFloat( &scaling, &scaling, "scaling" ) ); 92 list_handle = registerVarId( new SynchronizeableInt( (int*)&objectListNumber, &list_write, "list" ) ); 92 93 } 93 94 … … 193 194 PRINTF(1)("OBJ-File %s not found.\n", fileName.c_str()); 194 195 195 if( modelNumber == 0 )196 if( modelNumber == 0 ) 196 197 this->buildObbTree(obbTreeDepth); 197 198 } … … 832 833 loadModel( modelFileName, scaling ); 833 834 } 835 836 if ( std::find( id.begin(), id.end(), list_handle ) != id.end() ) 837 { 838 this->toList( (OM_LIST)list_write ); 839 } 834 840 835 841 PNode::varChangeHandler( id ); -
branches/multi_player_map/src/world_entities/world_entity.h
r8777 r8832 184 184 std::string modelFileName; //!< model's file name 185 185 int modelFileName_handle; //!< handle for syncing var 186 187 int list_write; //!< entity's list 188 int list_handle; //!< handle for list changes 186 189 187 190 CollisionHandle* collisionHandles[CREngine::CR_NUMBER]; //!< the list of the collision reactions
Note: See TracChangeset
for help on using the changeset viewer.