1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 16:07:24 +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
{
/// <summary>
/// osu!stable is referenced to 480px.
/// osu!stable is referenced to 768px.
/// </summary>
private const float playfield_height = 480;
private const float playfield_height = 768;
private const float min_coverage = 160f / playfield_height;
private const float max_coverage = 400f / playfield_height;