Add the ability to toggle off hit marker displays in the editor

This commit is contained in:
Dean Herbert
2022-11-08 18:07:06 +09:00
parent 30700ee68b
commit ada039151b
5 changed files with 59 additions and 15 deletions

View File

@ -173,6 +173,7 @@ namespace osu.Game.Configuration
SetDefault(OsuSetting.EditorDim, 0.25f, 0f, 0.75f, 0.25f);
SetDefault(OsuSetting.EditorWaveformOpacity, 0.25f, 0f, 1f, 0.25f);
SetDefault(OsuSetting.EditorShowHitMarkers, true);
SetDefault(OsuSetting.LastProcessedMetadataId, -1);
}
@ -367,5 +368,6 @@ namespace osu.Game.Configuration
ShowOnlineExplicitContent,
LastProcessedMetadataId,
SafeAreaConsiderations,
EditorShowHitMarkers
}
}