mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 10:07:27 +08:00
37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
// 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.
|
|
|
|
using System;
|
|
using System.Linq;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects.Drawable
|
|
{
|
|
public class DrawableBananaShower : DrawableCatchHitObject<BananaShower>
|
|
{
|
|
private readonly Container bananaContainer;
|
|
|
|
public DrawableBananaShower(BananaShower s, Func<CatchHitObject, DrawableHitObject<CatchHitObject>> getVisualRepresentation = null)
|
|
: base(s)
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
Origin = Anchor.BottomLeft;
|
|
X = 0;
|
|
|
|
InternalChild = bananaContainer = new Container { RelativeSizeAxes = Axes.Both };
|
|
|
|
foreach (var b in s.NestedHitObjects.Cast<Banana>())
|
|
AddNested(getVisualRepresentation?.Invoke(b));
|
|
}
|
|
|
|
protected override void AddNested(DrawableHitObject h)
|
|
{
|
|
((DrawableCatchHitObject)h).CheckPosition = o => CheckPosition?.Invoke(o) ?? false;
|
|
bananaContainer.Add(h);
|
|
base.AddNested(h);
|
|
}
|
|
}
|
|
}
|