ASYLUM: Implement Sound panning/adjustement methods

git-svn-id: http://asylumengine.googlecode.com/svn/trunk@532 0bfb4aae-4ea4-11de-8d8d-752d95cf3e3c
This commit is contained in:
Julien Templier 2010-11-10 12:08:50 +00:00 committed by Eugene Sandulenko
parent 4d383def95
commit ea952cc33d
No known key found for this signature in database
GPG key ID: 014D387312D34F08
10 changed files with 444 additions and 262 deletions

View file

@ -311,7 +311,7 @@ void AsylumEngine::processDelayedEvents() {
int videoIdx = _scene->actions()->getDelayedVideoIndex();
if (videoIdx >= 0) {
_sound->stopMusic();
_sound->stopAllSounds();
_sound->stopAll();
_video->playVideo(videoIdx, true);
_scene->actions()->setDelayedVideoIndex(-1);
@ -331,7 +331,7 @@ void AsylumEngine::processDelayedEvents() {
_scene->actions()->setDelayedSceneIndex(kResourcePackInvalid);
_sound->stopMusic();
_sound->stopAllSounds();
_sound->stopAll();
if (_scene)
delete _scene;