From cbe1374b032a80bf3d1cf13fd751ea35648c7bea Mon Sep 17 00:00:00 2001 From: Tyler Murphy Date: Thu, 22 Sep 2022 13:36:03 -0400 Subject: sound set volume --- engine/xe_sound.cpp | 5 ++++- engine/xe_sound.hpp | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'engine') diff --git a/engine/xe_sound.cpp b/engine/xe_sound.cpp index 09589fa..07d8e7b 100644 --- a/engine/xe_sound.cpp +++ b/engine/xe_sound.cpp @@ -18,7 +18,6 @@ XeSound::XeSound(const std::string& filename) { alSource3f(source, AL_VELOCITY, 0, 0, 0); alSourcei(source, AL_LOOPING, AL_FALSE); alSourcei(source, AL_BUFFER, buffer); - alSourcef(source, AL_GAIN, 3.f); } @@ -58,4 +57,8 @@ void XeSound::setLooping(bool looping) { alSourcei(source, AL_LOOPING, looping ? 1 : 0); }; +void XeSound::setVolume(float volume) { + alSourcef(source, AL_GAIN, volume); +} + } \ No newline at end of file diff --git a/engine/xe_sound.hpp b/engine/xe_sound.hpp index 334e793..b2a7a14 100644 --- a/engine/xe_sound.hpp +++ b/engine/xe_sound.hpp @@ -27,6 +27,7 @@ class XeSound { void setPosition(glm::vec3 position); void setLooping(bool looping); + void setVolume(float volume); private: ALuint source; -- cgit v1.2.3-freya