mirror of
https://github.com/osukey/osukey.git
synced 2025-06-25 05:07:59 +09: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;
|
private const float opacity_pressed = 0.25f;
|
||||||
|
|
||||||
public Column()
|
public Column()
|
||||||
: base(ScrollingDirection.Down)
|
: base(ScrollingDirection.Up)
|
||||||
{
|
{
|
||||||
Width = column_width;
|
Width = column_width;
|
||||||
|
|
||||||
|
@ -58,7 +58,7 @@ namespace osu.Game.Rulesets.Mania.UI
|
|||||||
private readonly int columnCount;
|
private readonly int columnCount;
|
||||||
|
|
||||||
public ManiaPlayfield(int columnCount)
|
public ManiaPlayfield(int columnCount)
|
||||||
: base(ScrollingDirection.Down)
|
: base(ScrollingDirection.Up)
|
||||||
{
|
{
|
||||||
this.columnCount = columnCount;
|
this.columnCount = columnCount;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user