From 51d2b9c35ce255e161cdd5c00a874a2b1587a7f9 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Wed, 2 Aug 2017 20:41:38 +0900 Subject: [PATCH] Tidy up visually --- .../Objects/Drawable/DrawableFruit.cs | 2 +- osu.Game.Rulesets.Catch/UI/CatchPlayfield.cs | 15 +++++---------- 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/osu.Game.Rulesets.Catch/Objects/Drawable/DrawableFruit.cs b/osu.Game.Rulesets.Catch/Objects/Drawable/DrawableFruit.cs index 01f9a78c8e..9b4a9bd957 100644 --- a/osu.Game.Rulesets.Catch/Objects/Drawable/DrawableFruit.cs +++ b/osu.Game.Rulesets.Catch/Objects/Drawable/DrawableFruit.cs @@ -82,7 +82,7 @@ namespace osu.Game.Rulesets.Catch.Objects.Drawable this.MoveToY(-0.1f).FadeOut(); // animation - this.FadeIn(200).MoveToY(0.9f, preempt); + this.FadeIn(200).MoveToY(1, preempt); } Expire(true); diff --git a/osu.Game.Rulesets.Catch/UI/CatchPlayfield.cs b/osu.Game.Rulesets.Catch/UI/CatchPlayfield.cs index 3aa5b3f1e3..ba766fa61b 100644 --- a/osu.Game.Rulesets.Catch/UI/CatchPlayfield.cs +++ b/osu.Game.Rulesets.Catch/UI/CatchPlayfield.cs @@ -2,7 +2,6 @@ // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Framework.Graphics; -using osu.Framework.Graphics.Shapes; using osu.Game.Rulesets.Catch.Objects; using osu.Game.Rulesets.UI; using OpenTK; @@ -14,17 +13,13 @@ namespace osu.Game.Rulesets.Catch.UI { public CatchPlayfield() { - Size = new Vector2(1, 0.9f); - Anchor = Anchor.BottomCentre; - Origin = Anchor.BottomCentre; + Size = new Vector2(1); + + Anchor = Anchor.TopCentre; + Origin = Anchor.TopCentre; Children = new Drawable[] { - new Box - { - RelativeSizeAxes = Axes.Both, - Alpha = 0.5f - }, new Catcher { RelativePositionAxes = Axes.Both, @@ -32,7 +27,7 @@ namespace osu.Game.Rulesets.Catch.UI Scale = new Vector2(0.2f), FillMode = FillMode.Fit, Origin = Anchor.TopCentre, - Position = new Vector2(0.5f, 0.9f), + Position = new Vector2(0.5f, 1), } }; }