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