1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 02:03:22 +08:00

Improve the look of hyperdash fruit

This commit is contained in:
Dean Herbert 2018-01-03 20:55:52 +09:00
parent b03cbaca77
commit 3c06318521

View File

@ -40,10 +40,10 @@ namespace osu.Game.Rulesets.Catch.Objects.Drawable
{
EdgeEffect = new EdgeEffectParameters
{
Hollow = true,
Hollow = !HitObject.HyperDash,
Type = EdgeEffectType.Glow,
Radius = 4,
Colour = AccentColour.Darken(1).Opacity(0.6f)
Colour = HitObject.HyperDash ? Color4.Red : AccentColour.Darken(1).Opacity(0.6f)
},
Size = new Vector2(Height * 1.5f),
Anchor = Anchor.Centre,
@ -95,7 +95,7 @@ namespace osu.Game.Rulesets.Catch.Objects.Drawable
switch (representation)
{
default:
return new Container { };
return new Container();
case FruitVisualRepresentation.DPad:
return new Container
{