1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 15:33:21 +08:00
This commit is contained in:
smoogipoo 2020-01-14 18:14:31 +09:00
parent f0a65254ee
commit 92daf9b8f1
2 changed files with 2 additions and 7 deletions

View File

@ -34,7 +34,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
Blending = BlendingParameters.Additive;
Origin = Anchor.Centre;
InternalChild = scaleContainer = new ReverseArrowPiece(repeatPoint);
InternalChild = scaleContainer = new ReverseArrowPiece();
}
private readonly IBindable<float> scaleBindable = new Bindable<float>();

View File

@ -1,7 +1,6 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Audio.Track;
using osu.Framework.Graphics;
using osuTK;
@ -14,12 +13,8 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Pieces
{
public class ReverseArrowPiece : BeatSyncedContainer
{
private readonly RepeatPoint repeatPoint;
public ReverseArrowPiece(RepeatPoint repeatPoint)
public ReverseArrowPiece()
{
this.repeatPoint = repeatPoint;
Divisor = 2;
MinimumBeatLength = 200;