mirror of
https://github.com/ppy/osu
synced 2025-02-03 20:02:16 +00:00
Update beat divisor colours to be more distinguishable
Close to osu-stable
This commit is contained in:
parent
05b59f1683
commit
508b92e611
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user