mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:47:52 +08:00
28 lines
801 B
C#
28 lines
801 B
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 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.
|
|
public CatchEditorPlayfield(IBeatmapDifficultyInfo difficulty)
|
|
: base(difficulty)
|
|
{
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
// TODO: honor "hit animation" setting?
|
|
Catcher.CatchFruitOnPlate = false;
|
|
|
|
// TODO: disable hit lighting as well
|
|
}
|
|
}
|
|
}
|