Changeset 10557 for code/branches/core7/src/orxonox/sound
- Timestamp:
- Aug 29, 2015, 6:18:30 PM (9 years ago)
- Location:
- code/branches/core7/src/orxonox/sound
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core7/src/orxonox/sound/SoundManager.cc
r10555 r10557 419 419 } 420 420 421 void SoundManager::fadeIn( const StrongPtr<AmbientSound>&sound)421 void SoundManager::fadeIn(AmbientSound* sound) 422 422 { 423 423 // If we're already fading out --> remove that … … 435 435 } 436 436 437 void SoundManager::fadeOut( const StrongPtr<AmbientSound>&sound)437 void SoundManager::fadeOut(AmbientSound* sound) 438 438 { 439 439 // If we're already fading in --> remove that -
code/branches/core7/src/orxonox/sound/SoundManager.h
r10555 r10557 106 106 private: 107 107 void processCrossFading(float dt); 108 void fadeIn( const StrongPtr<AmbientSound>&sound);109 void fadeOut( const StrongPtr<AmbientSound>&sound);108 void fadeIn(AmbientSound* sound); 109 void fadeOut(AmbientSound* sound); 110 110 111 111 void checkFadeStepValidity();
Note: See TracChangeset
for help on using the changeset viewer.