mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 09:27:29 +08:00
Fix taps on judged circles changing cursor position
This commit is contained in:
parent
260c224619
commit
ff0c0d54c9
@ -47,7 +47,7 @@ namespace osu.Game.Rulesets.Osu
|
|||||||
//
|
//
|
||||||
// Based on user feedback of more nuanced scenarios (where touch doesn't behave as expected),
|
// Based on user feedback of more nuanced scenarios (where touch doesn't behave as expected),
|
||||||
// this can be expanded to a more complex implementation, but I'd still want to keep it as simple as we can.
|
// this can be expanded to a more complex implementation, but I'd still want to keep it as simple as we can.
|
||||||
NonPositionalInputQueue.OfType<DrawableHitCircle.HitReceptor>().Any(c => c.ReceivePositionalInputAt(screenSpacePosition));
|
NonPositionalInputQueue.OfType<DrawableHitCircle.HitReceptor>().Any(c => c.CanBeHit() && c.ReceivePositionalInputAt(screenSpacePosition));
|
||||||
|
|
||||||
public OsuInputManager(RulesetInfo ruleset)
|
public OsuInputManager(RulesetInfo ruleset)
|
||||||
: base(ruleset, 0, SimultaneousBindingMode.Unique)
|
: base(ruleset, 0, SimultaneousBindingMode.Unique)
|
||||||
|
Loading…
Reference in New Issue
Block a user