1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 18:03:11 +08:00

Reduce distance requirement for lock-in behaviour

This commit is contained in:
Dean Herbert 2023-03-20 15:36:58 +09:00
parent 13a32b5246
commit c056d5a6fb

View File

@ -27,7 +27,7 @@ namespace osu.Game.Rulesets.Osu.UI
/// After this distance is covered, any extra touches on the screen will be considered as button inputs, unless
/// a new touch directly interacts with a hit circle.
/// </summary>
private const float distance_before_position_tracking_lock_in = 200;
private const float distance_before_position_tracking_lock_in = 100;
private TrackedTouch? positionTrackingTouch;