From a3fa2a3cf70eddfb7f27c97722ccaa717910f596 Mon Sep 17 00:00:00 2001 From: Andreas Stange Date: Sat, 20 Aug 2022 18:54:09 +0200 Subject: [PATCH] changed default volume --- UltraStar Play/Assets/Common/Model/Setting/AudioSettings.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UltraStar Play/Assets/Common/Model/Setting/AudioSettings.cs b/UltraStar Play/Assets/Common/Model/Setting/AudioSettings.cs index d5648931c..493d366d4 100644 --- a/UltraStar Play/Assets/Common/Model/Setting/AudioSettings.cs +++ b/UltraStar Play/Assets/Common/Model/Setting/AudioSettings.cs @@ -7,9 +7,9 @@ public class AudioSettings // Range: 0..100 public int PreviewVolumePercent { get; set; } = 50; public int VolumePercent { get; set; } = 100; - public int BackgroundMusicVolumePercent { get; set; } = 70; + public int BackgroundMusicVolumePercent { get; set; } = 50; - public int SceneChangeSoundVolumePercent { get; set; } = 100; + public int SceneChangeSoundVolumePercent { get; set; } = 50; public EPitchDetectionAlgorithm pitchDetectionAlgorithm = EPitchDetectionAlgorithm.Dywa; }