mirror of
https://github.com/ppy/osu
synced 2025-02-20 20:47:09 +00:00
Merge branch 'taiko-touch-ddkk-new' of https://github.com/OpenSauce04/osu into taiko-touch-ddkk-new
This commit is contained in:
commit
3c13d64d1e
@ -40,7 +40,7 @@ namespace osu.Game.Rulesets.Taiko.UI
|
||||
private QuarterCircle leftRim = null!;
|
||||
private QuarterCircle rightRim = null!;
|
||||
|
||||
private Bindable<TaikoTouchControlScheme> configTouchControlScheme = new Bindable<TaikoTouchControlScheme>();
|
||||
private readonly Bindable<TaikoTouchControlScheme> configTouchControlScheme = new Bindable<TaikoTouchControlScheme>();
|
||||
|
||||
[Resolved]
|
||||
private OsuColour colours { get; set; } = null!;
|
||||
@ -222,10 +222,12 @@ namespace osu.Game.Rulesets.Taiko.UI
|
||||
#pragma warning disable format
|
||||
switch (handledAction)
|
||||
{
|
||||
case TaikoAction.LeftRim: return colours.Blue;
|
||||
case TaikoAction.LeftCentre: return colours.Red;
|
||||
case TaikoAction.RightCentre: return colours.Red;
|
||||
case TaikoAction.RightRim: return colours.Blue;
|
||||
case TaikoAction.LeftRim:
|
||||
case TaikoAction.RightRim:
|
||||
return colours.Blue;
|
||||
case TaikoAction.LeftCentre:
|
||||
case TaikoAction.RightCentre:
|
||||
return colours.Red;
|
||||
}
|
||||
#pragma warning restore format
|
||||
return colours.Red;
|
||||
|
Loading…
Reference in New Issue
Block a user