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
|
|
|
|
|
2017-10-10 07:34:01 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2020-02-19 09:01:59 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects.Drawables
|
2017-10-10 07:34:01 +00:00
|
|
|
|
{
|
2020-11-24 08:03:26 +00:00
|
|
|
|
public partial class DrawableJuiceStream : DrawableCatchHitObject
|
2017-10-10 07:34:01 +00:00
|
|
|
|
{
|
|
|
|
|
private readonly Container dropletContainer;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2020-11-30 10:19:14 +00:00
|
|
|
|
public DrawableJuiceStream()
|
|
|
|
|
: this(null)
|
|
|
|
|
{
|
|
|
|
|
}
|
2020-03-10 10:34:52 +00:00
|
|
|
|
|
2023-01-15 07:27:49 +00:00
|
|
|
|
public DrawableJuiceStream(JuiceStream? s)
|
2018-01-10 06:37:55 +00:00
|
|
|
|
: base(s)
|
2017-10-10 07:34:01 +00:00
|
|
|
|
{
|
2020-03-10 10:34:52 +00:00
|
|
|
|
RelativeSizeAxes = Axes.X;
|
2018-01-11 11:56:09 +00:00
|
|
|
|
Origin = Anchor.BottomLeft;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2024-01-02 10:55:59 +00:00
|
|
|
|
AddInternal(dropletContainer = new NestedFruitContainer { RelativeSizeAxes = Axes.Both, });
|
2017-10-10 07:34:01 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-10-17 04:52:21 +00:00
|
|
|
|
protected override void AddNestedHitObject(DrawableHitObject hitObject)
|
2017-10-10 07:34:01 +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);
|
2017-10-10 07:34:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|