Update beat divisor colours to be more distinguishable

Close to osu-stable
This commit is contained in:
Dean Herbert 2020-01-27 15:57:55 +09:00
parent 05b59f1683
commit 508b92e611

View File

@ -1,4 +1,4 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text. // See the LICENCE file in the repository root for full licence text.
using System; using System;
@ -52,29 +52,32 @@ namespace osu.Game.Screens.Edit
{ {
switch (beatDivisor) switch (beatDivisor)
{ {
case 1:
return Color4.White;
case 2: case 2:
return colours.BlueLight; return colours.Red;
case 4: case 4:
return colours.Blue; return colours.Blue;
case 8: case 8:
return colours.BlueDarker; return colours.Yellow;
case 16: case 16:
return colours.PurpleDark; return colours.PurpleDark;
case 3: case 3:
return colours.YellowLight; return colours.Purple;
case 6: case 6:
return colours.Yellow; return colours.YellowDark;
case 12: case 12:
return colours.YellowDarker; return colours.YellowDarker;
default: default:
return Color4.White; return Color4.Red;
} }
} }
} }