1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 09:27:29 +08:00

Fix coordinate space

This commit is contained in:
Dan Balasescu 2024-02-07 00:25:22 +09:00
parent 69db1b2778
commit af20eacc82
No known key found for this signature in database

View File

@ -13,9 +13,9 @@ namespace osu.Game.Rulesets.Mania.Mods
public class ManiaModHidden : ManiaModWithPlayfieldCover public class ManiaModHidden : ManiaModWithPlayfieldCover
{ {
/// <summary> /// <summary>
/// osu!stable is referenced to 480px. /// osu!stable is referenced to 768px.
/// </summary> /// </summary>
private const float playfield_height = 480; private const float playfield_height = 768;
private const float min_coverage = 160f / playfield_height; private const float min_coverage = 160f / playfield_height;
private const float max_coverage = 400f / playfield_height; private const float max_coverage = 400f / playfield_height;