mirror of
https://github.com/ppy/osu
synced 2025-02-08 14:17:29 +00:00
Fix up DrawableJuiceStream/BananaShower
(cherry picked from commit 0bfb3b6)
This commit is contained in:
parent
66ebe2ee66
commit
0609fc40de
@ -16,15 +16,10 @@ namespace osu.Game.Rulesets.Catch.Objects.Drawable
|
||||
public DrawableJuiceStream(JuiceStream s) : base(s)
|
||||
{
|
||||
RelativeSizeAxes = Axes.Both;
|
||||
Height = (float)HitObject.Duration;
|
||||
Origin = Anchor.BottomLeft;
|
||||
X = 0;
|
||||
|
||||
Child = dropletContainer = new Container
|
||||
{
|
||||
RelativeSizeAxes = Axes.Both,
|
||||
RelativeChildOffset = new Vector2(0, (float)HitObject.StartTime),
|
||||
RelativeChildSize = new Vector2(1, (float)HitObject.Duration)
|
||||
};
|
||||
Child = dropletContainer = new Container { RelativeSizeAxes = Axes.Both, };
|
||||
|
||||
foreach (CatchHitObject tick in s.NestedHitObjects.OfType<CatchHitObject>())
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user