mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:07:44 +08:00
7d76fcf2b6
The input area is vertical infinite, but horizontally restricted to the playfield due to `CatchPlayfield`'s `ReceivePositionalInputAt` override.
31 lines
979 B
C#
31 lines
979 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.Framework.Allocation;
|
|
using osu.Game.Rulesets.Catch.Objects;
|
|
using osu.Game.Rulesets.Edit;
|
|
using osu.Game.Rulesets.UI;
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Rulesets.Catch.Edit.Blueprints
|
|
{
|
|
public class CatchPlacementBlueprint<THitObject> : PlacementBlueprint
|
|
where THitObject : CatchHitObject, new()
|
|
{
|
|
protected new THitObject HitObject => (THitObject)base.HitObject;
|
|
|
|
protected ScrollingHitObjectContainer HitObjectContainer => (ScrollingHitObjectContainer)playfield.HitObjectContainer;
|
|
|
|
[Resolved]
|
|
private Playfield playfield { get; set; }
|
|
|
|
public CatchPlacementBlueprint()
|
|
: base(new THitObject())
|
|
{
|
|
}
|
|
|
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => true;
|
|
}
|
|
}
|