osu/osu.Game.Rulesets.Catch/Objects/Drawable/DrawableDroplet.cs

54 lines
1.7 KiB
C#
Raw Normal View History

// 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.
2018-04-13 09:19:50 +00:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
2020-02-19 04:27:15 +00:00
using osu.Framework.Graphics.Containers;
2018-04-13 09:19:50 +00:00
using osu.Game.Rulesets.Catch.Objects.Drawable.Pieces;
2020-02-19 04:27:15 +00:00
using osu.Game.Skinning;
2018-11-20 07:51:59 +00:00
using osuTK;
2020-02-19 04:27:15 +00:00
using osuTK.Graphics;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Rulesets.Catch.Objects.Drawable
{
public class DrawableDroplet : PalpableCatchHitObject<Droplet>
{
public override bool StaysOnPlate => false;
2018-04-13 09:19:50 +00:00
public DrawableDroplet(Droplet h)
: base(h)
{
Origin = Anchor.Centre;
2020-02-19 04:27:15 +00:00
Size = new Vector2(CatchHitObject.OBJECT_RADIUS * 2) / 4;
2018-04-13 09:19:50 +00:00
Masking = false;
}
2020-02-19 04:27:15 +00:00
private Container scaleContainer;
2018-04-13 09:19:50 +00:00
[BackgroundDependencyLoader]
private void load()
{
2020-02-19 04:27:15 +00:00
AddRangeInternal(new Framework.Graphics.Drawable[]
{
2020-02-19 04:27:15 +00:00
scaleContainer = new Container
{
RelativeSizeAxes = Axes.Both,
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
Children = new Framework.Graphics.Drawable[]
{
new SkinnableDrawable(
new CatchSkinComponent(CatchSkinComponents.Droplet), _ => new Pulp
{
Size = Size,
AccentColour = { Value = Color4.White }
})
}
}
});
2020-02-19 04:27:15 +00:00
scaleContainer.Scale = new Vector2(HitObject.Scale);
2018-04-13 09:19:50 +00:00
}
}
}