2021-06-04 18:46:50 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2021-07-25 22:50:52 +08:00
|
|
|
using osu.Framework.Graphics;
|
2021-06-04 18:46:50 +08:00
|
|
|
using osu.Framework.Graphics.Pooling;
|
|
|
|
using osu.Game.Rulesets.Objects.Pooling;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.UI
|
|
|
|
{
|
|
|
|
public class HitExplosionContainer : PooledDrawableWithLifetimeContainer<HitExplosionEntry, HitExplosion>
|
|
|
|
{
|
|
|
|
protected override bool RemoveRewoundEntry => true;
|
|
|
|
|
|
|
|
private readonly DrawablePool<HitExplosion> pool;
|
|
|
|
|
|
|
|
public HitExplosionContainer()
|
|
|
|
{
|
2021-07-25 22:50:52 +08:00
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
2021-06-04 18:46:50 +08:00
|
|
|
AddInternal(pool = new DrawablePool<HitExplosion>(10));
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override HitExplosion GetDrawable(HitExplosionEntry entry) => pool.Get(d => d.Apply(entry));
|
|
|
|
}
|
|
|
|
}
|