Better masking.

This commit is contained in:
smoogipooo
2017-04-12 14:34:49 +09:00
parent 04baa9eb72
commit 5d5040ee73
2 changed files with 26 additions and 35 deletions

View File

@ -4,6 +4,7 @@
using OpenTK;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Primitives;
using osu.Framework.MathUtils;
using osu.Framework.Testing;
using osu.Framework.Timing;
@ -63,7 +64,12 @@ namespace osu.Desktop.VisualTests.Tests
Clock = new FramedClock(rateAdjustClock),
Children = new[]
{
playfield = new TaikoPlayfield()
playfield = new TaikoPlayfield
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Height = 0.75f
}
}
});
}