mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 10:33:30 +08:00
GetHyperDashEndGlowColour() -> GetHyperDashCatcherAfterImageColour()
This commit is contained in:
parent
19f39fe632
commit
0014a8404e
@ -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);
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user