1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-27 02:32:59 +08:00

Fix mania playfield scrolling hitobjects in the wrong direction

This commit is contained in:
smoogipoo 2018-01-04 22:05:20 +09:00
parent add68ff068
commit e0e84ff370
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ namespace osu.Game.Rulesets.Mania.UI
private const float opacity_pressed = 0.25f;
public Column()
: base(ScrollingDirection.Down)
: base(ScrollingDirection.Up)
{
Width = column_width;

View File

@ -58,7 +58,7 @@ namespace osu.Game.Rulesets.Mania.UI
private readonly int columnCount;
public ManiaPlayfield(int columnCount)
: base(ScrollingDirection.Down)
: base(ScrollingDirection.Up)
{
this.columnCount = columnCount;