mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 18:20:34 +08:00
22 lines
661 B
C#
22 lines
661 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Rulesets.Catch.UI;
|
|
|
|
namespace osu.Game.Rulesets.Catch.Skinning.Default
|
|
{
|
|
public class HyperBorderPiece : BorderPiece
|
|
{
|
|
public HyperBorderPiece()
|
|
{
|
|
BorderColour = Catcher.DEFAULT_HYPER_DASH_COLOUR;
|
|
BorderThickness = 12f * FruitPiece.RADIUS_ADJUST;
|
|
|
|
Child.Alpha = 0.3f;
|
|
Child.Blending = BlendingParameters.Additive;
|
|
Child.Colour = Catcher.DEFAULT_HYPER_DASH_COLOUR;
|
|
}
|
|
}
|
|
}
|