Changeset 3898 in orxonox.OLD for orxonox/branches/sound_engine/src/story_entities
- Timestamp:
- Apr 19, 2005, 8:31:01 PM (20 years ago)
- Location:
- orxonox/branches/sound_engine/src/story_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/sound_engine/src/story_entities/world.cc
r3870 r3898 35 35 #include "light.h" 36 36 #include "text_engine.h" 37 #include "sound_engine.h" 37 38 38 39 #include "track_manager.h" … … 147 148 cn->unbind(this->localPlayer); 148 149 cn->reset(); 150 151 ResourceManager::getInstance()->unload(this->music); 149 152 150 153 ResourceManager::getInstance()->debug(); … … 271 274 trackManager->finalize(); 272 275 273 276 this->music = (Sound*)ResourceManager::getInstance()->load("sound/orx.mp3", RESOURCE_SOUND_MUSIC, RP_LEVEL); 277 this->music->play(); 274 278 /*monitor progress*/ 275 279 this->glmis->step(); -
orxonox/branches/sound_engine/src/story_entities/world.h
r3851 r3898 24 24 class Terrain; 25 25 class GarbageCollector; 26 class Text;26 class Sound; 27 27 28 28 //! The game world Interface … … 108 108 LightManager* lightMan; //!< The Lights of the Level 109 109 Terrain* terrain; //!< The Terrain of the World. 110 Sound* music; //!< The Music to Play in the Level 110 111 111 112 GLuint objectList; //!< temporary: \todo this will be ereased soon
Note: See TracChangeset
for help on using the changeset viewer.