1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-15 17:47:18 +08:00

Don't show UR for now

This commit is contained in:
Dean Herbert 2022-06-11 23:54:11 +09:00
parent 5b3b9a2cd3
commit af353c37c0

View File

@ -120,7 +120,10 @@ namespace osu.Game.Screens.Utility
private void hit(HitEvent h)
{
hitEvents.Add(h);
unstableRate.Text = $"UR: {hitEvents.CalculateUnstableRate():N0}";
// Disabled to keep things simple based on internal feedback nothing it's not helpful.
// Can be reconsidered in the future.
// unstableRate.Text = $"UR: {hitEvents.CalculateUnstableRate():N0}";
}
public class SampleHitCircle : LatencySampleComponent