2021-06-22 11:47:24 +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-06-22 11:47:24 +08:00
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Rulesets.Catch.UI;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Edit
|
|
|
|
{
|
|
|
|
public class CatchEditorPlayfield : CatchPlayfield
|
|
|
|
{
|
|
|
|
// TODO fixme: the size of the catcher is not changed when circle size is changed in setup screen.
|
2021-10-01 13:56:42 +08:00
|
|
|
public CatchEditorPlayfield(IBeatmapDifficultyInfo difficulty)
|
2021-06-22 11:47:24 +08:00
|
|
|
: base(difficulty)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
// TODO: honor "hit animation" setting?
|
2021-07-19 18:52:40 +08:00
|
|
|
Catcher.CatchFruitOnPlate = false;
|
2021-06-22 11:47:24 +08:00
|
|
|
|
|
|
|
// TODO: disable hit lighting as well
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|