1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 23:12:56 +08:00

Adjust cursor trail display length

In line with shader change at ad5ddec7b2
This commit is contained in:
Dean Herbert 2018-03-11 02:11:56 +09:00
parent df2815f19e
commit 5092fe5596

View File

@ -99,7 +99,7 @@ namespace osu.Game.Rulesets.Osu.UI.Cursor
const int fade_clock_reset_threshold = 1000000;
time = (float)(Time.Current - timeOffset) / 500f;
time = (float)(Time.Current - timeOffset) / 300f;
if (time > fade_clock_reset_threshold)
resetTime();
}