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

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
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Rulesets.Objects.Drawables;
namespace osu.Game.Rulesets.Catch.Objects.Drawables
2018-04-13 17:19:50 +08:00
{
2022-11-24 13:32:20 +08:00
public partial class DrawableJuiceStream : DrawableCatchHitObject
2018-04-13 17:19:50 +08:00
{
private readonly Container dropletContainer;
public DrawableJuiceStream()
: this(null)
{
}
public DrawableJuiceStream(JuiceStream? s)
2018-04-13 17:19:50 +08:00
: base(s)
{
RelativeSizeAxes = Axes.X;
2018-04-13 17:19:50 +08:00
Origin = Anchor.BottomLeft;
AddInternal(dropletContainer = new Container { RelativeSizeAxes = Axes.Both, });
2018-04-13 17:19:50 +08:00
}
protected override void AddNestedHitObject(DrawableHitObject hitObject)
2018-04-13 17:19:50 +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);
2018-04-13 17:19:50 +08:00
}
}
}