1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-13 18:07:25 +08:00
This commit is contained in:
Dean Herbert 2017-08-08 13:31:55 +09:00
parent e00ea2db04
commit 2203d55d64
3 changed files with 3 additions and 10 deletions

@ -1 +1 @@
Subproject commit 8413a36fd26f3bae2a789208a9317b4511c35e99 Subproject commit dd0daafcfc0d625bb588c8e12d7db58bc00c255e

View File

@ -21,6 +21,8 @@ namespace osu.Game.Rulesets.Catch.UI
public CatchPlayfield() public CatchPlayfield()
: base(Axes.Y) : base(Axes.Y)
{ {
Reversed.Value = true;
Size = new Vector2(1); Size = new Vector2(1);
Anchor = Anchor.TopCentre; Anchor = Anchor.TopCentre;
@ -30,9 +32,7 @@ namespace osu.Game.Rulesets.Catch.UI
{ {
content = new Container<Drawable> content = new Container<Drawable>
{ {
Scale = new Vector2(1, -1),
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Origin = Anchor.BottomLeft
}, },
catcherArea = new CatcherArea catcherArea = new CatcherArea
{ {

View File

@ -219,13 +219,6 @@ namespace osu.Game.Rulesets.UI
return removed; return removed;
} }
public override bool Remove(DrawableHitObject<TObject, TJudgement> hitObject)
{
foreach (var c in InternalChildren.OfType<SpeedAdjustmentContainer>())
c.Remove(hitObject);
return true;
}
protected override void Update() protected override void Update()
{ {
base.Update(); base.Update();