From 0785dd8528894bdef3d5f295c6438df4c22ad7d5 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Thu, 23 Mar 2017 17:15:39 +0900 Subject: [PATCH] Change default OsuHitObject combo colour to gray This makes it easier to see additive elements in testcases. --- osu.Game.Modes.Osu/Objects/OsuHitObject.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game.Modes.Osu/Objects/OsuHitObject.cs b/osu.Game.Modes.Osu/Objects/OsuHitObject.cs index 78b0e20e3a..fa422834db 100644 --- a/osu.Game.Modes.Osu/Objects/OsuHitObject.cs +++ b/osu.Game.Modes.Osu/Objects/OsuHitObject.cs @@ -36,7 +36,7 @@ namespace osu.Game.Modes.Osu.Objects public float Scale { get; set; } = 1; - public Color4 ComboColour { get; set; } = Color4.Black; + public Color4 ComboColour { get; set; } = Color4.Gray; public virtual bool NewCombo { get; set; } public int ComboIndex { get; set; }