mirror of
https://github.com/ppy/osu.git
synced 2025-02-15 00:13:19 +08:00
Rename ColourCode to ColourCodedNotes
This commit is contained in:
parent
a8b401522b
commit
91bf0d422d
@ -22,7 +22,7 @@ namespace osu.Game.Rulesets.Mania.Configuration
|
||||
|
||||
SetDefault(ManiaRulesetSetting.ScrollTime, 1500.0, DrawableManiaRuleset.MIN_TIME_RANGE, DrawableManiaRuleset.MAX_TIME_RANGE, 5);
|
||||
SetDefault(ManiaRulesetSetting.ScrollDirection, ManiaScrollingDirection.Down);
|
||||
SetDefault(ManiaRulesetSetting.ColourCode, false);
|
||||
SetDefault(ManiaRulesetSetting.ColourCodedNotes, false);
|
||||
}
|
||||
|
||||
public override TrackedSettings CreateTrackedSettings() => new TrackedSettings
|
||||
@ -36,6 +36,6 @@ namespace osu.Game.Rulesets.Mania.Configuration
|
||||
{
|
||||
ScrollTime,
|
||||
ScrollDirection,
|
||||
ColourCode
|
||||
ColourCodedNotes
|
||||
}
|
||||
}
|
||||
|
@ -40,7 +40,7 @@ namespace osu.Game.Rulesets.Mania
|
||||
new SettingsCheckbox
|
||||
{
|
||||
LabelText = "Colour-coded notes",
|
||||
Current = config.GetBindable<bool>(ManiaRulesetSetting.ColourCode),
|
||||
Current = config.GetBindable<bool>(ManiaRulesetSetting.ColourCodedNotes),
|
||||
}
|
||||
};
|
||||
}
|
||||
|
@ -113,7 +113,7 @@ namespace osu.Game.Rulesets.Mania.UI
|
||||
|
||||
Config.BindWith(ManiaRulesetSetting.ScrollTime, configTimeRange);
|
||||
|
||||
Config.BindWith(ManiaRulesetSetting.ColourCode, configColourCode);
|
||||
Config.BindWith(ManiaRulesetSetting.ColourCodedNotes, configColourCode);
|
||||
}
|
||||
|
||||
protected override void AdjustScrollSpeed(int amount)
|
||||
|
Loading…
Reference in New Issue
Block a user