Expand abilities of catcher

This commit is contained in:
Dean Herbert
2017-08-07 15:09:31 +09:00
parent c930085213
commit b71caca131
6 changed files with 175 additions and 80 deletions

View File

@ -0,0 +1,26 @@
using osu.Framework.Graphics;
using osu.Game.Rulesets.Catch.UI;
using OpenTK;
namespace osu.Desktop.Tests.Visual
{
internal class TestCaseCatcher : OsuTestCase
{
protected override void LoadComplete()
{
base.LoadComplete();
Children = new Drawable[]
{
new CatcherArea
{
RelativePositionAxes = Axes.Both,
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
Size = new Vector2(1, 0.2f),
}
};
}
}
}