1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 10:33:30 +08:00

GetHyperDashEndGlowColour() -> GetHyperDashCatcherAfterImageColour()

This commit is contained in:
Salman Ahmed 2020-04-04 23:12:42 +03:00
parent 19f39fe632
commit 0014a8404e
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ namespace osu.Game.Rulesets.Catch.Skinning
public static IBindable<Color4> GetHyperDashCatcherColour(this ISkin skin)
=> skin.GetConfig<CatchSkinColour, Color4>(CatchSkinColour.HyperDash);
public static IBindable<Color4> GetHyperDashEndGlowColour(this ISkin skin)
public static IBindable<Color4> GetHyperDashCatcherAfterImageColour(this ISkin skin)
=> skin.GetConfig<CatchSkinColour, Color4>(CatchSkinColour.HyperDashAfterImage) ??
skin.GetConfig<CatchSkinColour, Color4>(CatchSkinColour.HyperDash);

View File

@ -392,7 +392,7 @@ namespace osu.Game.Rulesets.Catch.UI
base.SkinChanged(skin, allowFallback);
hyperDashColour = skin.GetHyperDashCatcherColour()?.Value ?? DefaultHyperDashColour;
hyperDashEndGlowColour = skin.GetHyperDashEndGlowColour()?.Value ?? DefaultHyperDashColour;
hyperDashEndGlowColour = skin.GetHyperDashCatcherAfterImageColour()?.Value ?? DefaultHyperDashColour;
updateCatcherColour(HyperDashing);
}