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:
parent
add68ff068
commit
e0e84ff370
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user