Merge pull request #28031 from peppy/reduce-volume

Reduce startup volume
This commit is contained in:
Dan Balasescu 2024-05-01 04:44:00 +09:00 committed by GitHub
commit 61350ebf6e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -841,7 +841,10 @@ namespace osu.Game
{
// General expectation that osu! starts in fullscreen by default (also gives the most predictable performance).
// However, macOS is bound to have issues when using exclusive fullscreen as it takes full control away from OS, therefore borderless is default there.
{ FrameworkSetting.WindowMode, RuntimeInfo.OS == RuntimeInfo.Platform.macOS ? WindowMode.Borderless : WindowMode.Fullscreen }
{ FrameworkSetting.WindowMode, RuntimeInfo.OS == RuntimeInfo.Platform.macOS ? WindowMode.Borderless : WindowMode.Fullscreen },
{ FrameworkSetting.VolumeUniversal, 0.6 },
{ FrameworkSetting.VolumeMusic, 0.6 },
{ FrameworkSetting.VolumeEffect, 0.6 },
};
}