From 317dc94b4ca0c20e429f1a8deaf2c848f5fb5cd9 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Fri, 17 Mar 2017 21:04:46 +0900 Subject: [PATCH] Adjust appearance. --- osu-resources | 2 +- osu.Game/Graphics/Cursor/MenuCursor.cs | 7 ++++--- osu.Game/OsuGameBase.cs | 1 - 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/osu-resources b/osu-resources index 07024c119a..f85c594c18 160000 --- a/osu-resources +++ b/osu-resources @@ -1 +1 @@ -Subproject commit 07024c119a76fabb7822f4b1d68a8c9ed989d41a +Subproject commit f85c594c182db2b01233e29ca52639b7baa00402 diff --git a/osu.Game/Graphics/Cursor/MenuCursor.cs b/osu.Game/Graphics/Cursor/MenuCursor.cs index ada1308b3e..1447fa9417 100644 --- a/osu.Game/Graphics/Cursor/MenuCursor.cs +++ b/osu.Game/Graphics/Cursor/MenuCursor.cs @@ -82,7 +82,7 @@ namespace osu.Game.Graphics.Cursor } [BackgroundDependencyLoader] - private void load(OsuConfigManager config, TextureStore textures) + private void load(OsuConfigManager config, TextureStore textures, OsuColour colour) { cursorScale = config.GetBindable(OsuConfig.CursorSize); @@ -90,7 +90,7 @@ namespace osu.Game.Graphics.Cursor { cursorContainer = new Container { - Size = new Vector2(28), + Size = new Vector2(32), Children = new Drawable[] { new Sprite @@ -102,8 +102,9 @@ namespace osu.Game.Graphics.Cursor { FillMode = FillMode.Fit, BlendingMode = BlendingMode.Additive, + Colour = colour.Pink, Alpha = 0, - Texture = textures.Get(@"Cursor/menu-cursor"), + Texture = textures.Get(@"Cursor/menu-cursor-additive"), }, } } diff --git a/osu.Game/OsuGameBase.cs b/osu.Game/OsuGameBase.cs index bfef31d14a..f454956de7 100644 --- a/osu.Game/OsuGameBase.cs +++ b/osu.Game/OsuGameBase.cs @@ -8,7 +8,6 @@ using osu.Framework.Allocation; using osu.Framework.Configuration; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; -using osu.Framework.Graphics.Cursor; using osu.Framework.IO.Stores; using osu.Framework.Platform; using osu.Game.Beatmaps;