Changeset 9354 in orxonox.OLD
- Timestamp:
- Jul 20, 2006, 2:05:07 PM (18 years ago)
- Location:
- branches/proxy/src
- Files:
-
- 2 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/graphics/effects/lightning_effect.cc
r9235 r9354 130 130 131 131 //load sound 132 if (this->thunderBuffer != NULL)133 ResourceManager::getInstance()->unload(this->thunderBuffer);134 132 this->thunderBuffer = (OrxSound::SoundBuffer*)ResourceManager::getInstance()->load("sound/atmosphere/thunder.wav", WAV); 135 133 -
branches/proxy/src/story_entities/Makefile.am
r8717 r9354 13 13 story_entities/multi_player_world_data.cc \ 14 14 story_entities/movie_loader.cc \ 15 story_entities/simple_game_menu.cc \16 15 \ 17 16 story_entities/menu/game_menu.cc \ … … 30 29 story_entities/multi_player_world_data.h \ 31 30 story_entities/movie_loader.h \ 32 story_entities/simple_game_menu.h \33 31 \ 34 32 story_entities/menu/game_menu.h \ -
branches/proxy/src/story_entities/game_world_data.cc
r9235 r9354 194 194 ErrorMessage GameWorldData::loadWorldEntities(const TiXmlElement* root) 195 195 { 196 196 197 const TiXmlElement* element = root->FirstChildElement("WorldEntities"); 198 bool mouseCaptured = EventHandler::getInstance()->grabbedEvents(); 199 EventHandler::getInstance()->grabEvents(false); 197 200 198 201 if( element == NULL) … … 262 265 /* init the pnode tree */ 263 266 PNode::getNullParent()->init(); 267 268 EventHandler::getInstance()->grabEvents(mouseCaptured); 264 269 265 270 return ErrorMessage();
Note: See TracChangeset
for help on using the changeset viewer.