mirror of
https://github.com/ppy/osu.git
synced 2025-01-26 23:13:20 +08:00
Change AimCount
to not consider height
This commit is contained in:
parent
ba0990d43e
commit
4cb068ceb9
@ -172,7 +172,7 @@ namespace osu.Game.Graphics.Backgrounds
|
|||||||
// Limited by the maximum size of QuadVertexBuffer for safety.
|
// Limited by the maximum size of QuadVertexBuffer for safety.
|
||||||
const int max_triangles = ushort.MaxValue / (IRenderer.VERTICES_PER_QUAD + 2);
|
const int max_triangles = ushort.MaxValue / (IRenderer.VERTICES_PER_QUAD + 2);
|
||||||
|
|
||||||
AimCount = (int)Math.Min(max_triangles, DrawWidth * DrawHeight * 0.0005f * SpawnRatio);
|
AimCount = (int)Math.Min(max_triangles, DrawWidth * 0.02f * SpawnRatio);
|
||||||
|
|
||||||
int currentCount = parts.Count;
|
int currentCount = parts.Count;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user