mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +00:00
24 lines
488 B
C++
24 lines
488 B
C++
|
|
#include "action.hpp"
|
|
|
|
#include "../mwbase/environment.hpp"
|
|
#include "../mwbase/soundmanager.hpp"
|
|
|
|
MWWorld::Action::Action() {}
|
|
|
|
MWWorld::Action::~Action() {}
|
|
|
|
void MWWorld::Action::execute (const Ptr& actor)
|
|
{
|
|
if (!mSoundId.empty())
|
|
MWBase::Environment::get().getSoundManager()->playSound3D (actor, mSoundId, 1.0, 1.0,
|
|
MWBase::SoundManager::Play_NoTrack);
|
|
|
|
executeImp (actor);
|
|
}
|
|
|
|
void MWWorld::Action::setSound (const std::string& id)
|
|
{
|
|
mSoundId = id;
|
|
}
|