2018-01-05 11:21:19 +00:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-07 04:59:30 +00:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-12-06 09:56:20 +00:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
2016-11-17 08:20:51 +00:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using OpenTK;
|
2017-06-20 05:54:23 +00:00
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2018-03-07 09:20:52 +00:00
|
|
|
|
using osu.Game.Skinning;
|
2016-11-17 08:20:51 +00:00
|
|
|
|
|
2017-04-18 07:05:58 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects.Drawables.Pieces
|
2016-11-17 08:20:51 +00:00
|
|
|
|
{
|
|
|
|
|
public class FlashPiece : Container
|
|
|
|
|
{
|
|
|
|
|
public FlashPiece()
|
|
|
|
|
{
|
2017-02-06 13:17:29 +00:00
|
|
|
|
Size = new Vector2(128);
|
2016-11-17 08:20:51 +00:00
|
|
|
|
|
|
|
|
|
Anchor = Anchor.Centre;
|
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
|
|
2017-09-07 13:46:21 +00:00
|
|
|
|
Blending = BlendingMode.Additive;
|
2016-11-17 08:20:51 +00:00
|
|
|
|
Alpha = 0;
|
|
|
|
|
|
2018-03-07 09:20:52 +00:00
|
|
|
|
Child = new SkinnableDrawable("Play/osu/hitcircle-flash", name => new CircularContainer
|
2016-11-17 08:20:51 +00:00
|
|
|
|
{
|
2018-03-07 09:20:52 +00:00
|
|
|
|
Masking = true,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Child = new Box
|
2016-11-17 08:20:51 +00:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both
|
|
|
|
|
}
|
2018-03-16 01:36:26 +00:00
|
|
|
|
}, s => s.GetTexture("Play/osu/hitcircle") == null);
|
2016-11-17 08:20:51 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-01-05 11:21:19 +00:00
|
|
|
|
}
|