mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 09:02:58 +08:00
Improve the look of hyperdash fruit
This commit is contained in:
parent
b03cbaca77
commit
3c06318521
@ -40,10 +40,10 @@ namespace osu.Game.Rulesets.Catch.Objects.Drawable
|
|||||||
{
|
{
|
||||||
EdgeEffect = new EdgeEffectParameters
|
EdgeEffect = new EdgeEffectParameters
|
||||||
{
|
{
|
||||||
Hollow = true,
|
Hollow = !HitObject.HyperDash,
|
||||||
Type = EdgeEffectType.Glow,
|
Type = EdgeEffectType.Glow,
|
||||||
Radius = 4,
|
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),
|
Size = new Vector2(Height * 1.5f),
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
@ -95,7 +95,7 @@ namespace osu.Game.Rulesets.Catch.Objects.Drawable
|
|||||||
switch (representation)
|
switch (representation)
|
||||||
{
|
{
|
||||||
default:
|
default:
|
||||||
return new Container { };
|
return new Container();
|
||||||
case FruitVisualRepresentation.DPad:
|
case FruitVisualRepresentation.DPad:
|
||||||
return new Container
|
return new Container
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user