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
1 changed files with 2 additions and 2 deletions

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;