Let's invert the playfield by default for now.

This commit is contained in:
smoogipooo
2017-05-16 18:02:54 +09:00
parent ac02d1ab10
commit 8ed97a8335
2 changed files with 6 additions and 2 deletions

View File

@ -10,6 +10,7 @@ using System.Linq;
using System;
using System.Collections.Generic;
using osu.Game.Beatmaps.Timing;
using OpenTK;
namespace osu.Desktop.VisualTests.Tests
{
@ -32,7 +33,8 @@ namespace osu.Desktop.VisualTests.Tests
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
SpecialColumnPosition = pos
SpecialColumnPosition = pos,
Scale = new Vector2(1, -1)
});
};