1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 21:47:25 +08:00
osu-lazer/osu.Game.Rulesets.Catch/Objects/Drawables/DrawableJuiceStream.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.1 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 17:19:50 +08:00
2017-10-10 15:34:01 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Rulesets.Objects.Drawables;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Catch.Objects.Drawables
2017-10-10 15:34:01 +08:00
{
public partial class DrawableJuiceStream : DrawableCatchHitObject
2017-10-10 15:34:01 +08:00
{
private readonly Container dropletContainer;
2018-04-13 17:19:50 +08:00
public DrawableJuiceStream()
: this(null)
{
}
public DrawableJuiceStream(JuiceStream? s)
: base(s)
2017-10-10 15:34:01 +08:00
{
RelativeSizeAxes = Axes.X;
Origin = Anchor.BottomLeft;
2018-04-13 17:19:50 +08:00
AddInternal(dropletContainer = new Container { RelativeSizeAxes = Axes.Both, });
2017-10-10 15:34:01 +08:00
}
2018-04-13 17:19:50 +08:00
protected override void AddNestedHitObject(DrawableHitObject hitObject)
2017-10-10 15:34:01 +08:00
{
base.AddNestedHitObject(hitObject);
2019-10-17 11:53:54 +08:00
dropletContainer.Add(hitObject);
}
protected override void ClearNestedHitObjects()
{
base.ClearNestedHitObjects();
dropletContainer.Clear(false);
2017-10-10 15:34:01 +08:00
}
}
}