mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 03:17:39 +08:00
44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Rulesets.Catch.Objects.Drawable.Pieces;
|
|
using OpenTK;
|
|
using OpenTK.Graphics;
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects.Drawable
|
|
{
|
|
public class DrawableDroplet : PalpableCatchHitObject<Droplet>
|
|
{
|
|
private Pulp pulp;
|
|
|
|
public DrawableDroplet(Droplet h)
|
|
: base(h)
|
|
{
|
|
Origin = Anchor.Centre;
|
|
Size = new Vector2((float)CatchHitObject.OBJECT_RADIUS) / 4;
|
|
Masking = false;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
InternalChild = pulp = new Pulp
|
|
{
|
|
Size = Size
|
|
};
|
|
}
|
|
|
|
public override Color4 AccentColour
|
|
{
|
|
get { return base.AccentColour; }
|
|
set
|
|
{
|
|
base.AccentColour = value;
|
|
pulp.AccentColour = AccentColour;
|
|
}
|
|
}
|
|
}
|
|
}
|