2019-01-24 08:43:03 +00:00
|
|
|
|
// 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
|
|
|
|
|
2020-11-30 10:19:14 +00:00
|
|
|
|
using JetBrains.Annotations;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
|
2020-02-19 09:01:59 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects.Drawables
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2020-11-24 08:03:26 +00:00
|
|
|
|
public class DrawableJuiceStream : DrawableCatchHitObject
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
private readonly Container dropletContainer;
|
|
|
|
|
|
2020-11-30 10:19:14 +00:00
|
|
|
|
public DrawableJuiceStream()
|
|
|
|
|
: this(null)
|
|
|
|
|
{
|
|
|
|
|
}
|
2020-03-10 10:34:52 +00:00
|
|
|
|
|
2020-11-30 10:19:14 +00:00
|
|
|
|
public DrawableJuiceStream([CanBeNull] JuiceStream s)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
: base(s)
|
|
|
|
|
{
|
2020-03-10 10:34:52 +00:00
|
|
|
|
RelativeSizeAxes = Axes.X;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
Origin = Anchor.BottomLeft;
|
|
|
|
|
|
2019-03-25 04:47:28 +00:00
|
|
|
|
AddInternal(dropletContainer = new Container { RelativeSizeAxes = Axes.Both, });
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-17 04:52:21 +00:00
|
|
|
|
protected override void AddNestedHitObject(DrawableHitObject hitObject)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-10-17 04:52:21 +00:00
|
|
|
|
base.AddNestedHitObject(hitObject);
|
2019-10-17 03:53:54 +00:00
|
|
|
|
dropletContainer.Add(hitObject);
|
2019-10-17 03:37:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-17 04:52:21 +00:00
|
|
|
|
protected override void ClearNestedHitObjects()
|
2019-10-17 03:37:09 +00:00
|
|
|
|
{
|
2019-10-17 04:52:21 +00:00
|
|
|
|
base.ClearNestedHitObjects();
|
2020-11-30 10:19:14 +00:00
|
|
|
|
dropletContainer.Clear(false);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|