diff --git a/Assets/Fungus/UI/Scripts/WriterAudio.cs b/Assets/Fungus/UI/Scripts/WriterAudio.cs index 11f6e09e..e1ae9405 100644 --- a/Assets/Fungus/UI/Scripts/WriterAudio.cs +++ b/Assets/Fungus/UI/Scripts/WriterAudio.cs @@ -85,7 +85,7 @@ namespace Fungus playingVoiceover = true; targetAudioSource.volume = 1f; - targetVolume = 1f; + targetVolume = volume; targetAudioSource.loop = false; targetAudioSource.clip = voiceOverClip; targetAudioSource.Play(); @@ -102,7 +102,7 @@ namespace Fungus playingVoiceover = false; targetAudioSource.volume = 0f; - targetVolume = 1f; + targetVolume = volume; if (audioClip != null) { @@ -161,7 +161,7 @@ namespace Fungus return; } - targetVolume = 1f; + targetVolume = volume; } protected virtual void Update()