1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:47:28 +08:00

Scale cursortrail along with cursor

This commit is contained in:
HoLLy-HaCKeR 2019-10-08 19:40:46 +02:00
parent b6047e4613
commit 1c22fb485f

View File

@ -69,7 +69,7 @@ namespace osu.Game.Rulesets.Osu.UI.Cursor
scale *= 1f - 0.7f * (1f + beatmap.Value.BeatmapInfo.BaseDifficulty.CircleSize - BeatmapDifficulty.DEFAULT_DIFFICULTY) / BeatmapDifficulty.DEFAULT_DIFFICULTY;
}
ActiveCursor.Scale = new Vector2(scale);
ActiveCursor.Scale = cursorTrail.Scale = new Vector2(scale);
}
protected override void LoadComplete()