mirror of https://github.com/ppy/osu
Give repeat points a size specification
This commit is contained in:
parent
efad9b3150
commit
28653e871c
|
@ -26,7 +26,7 @@ public DrawableRepeatPoint(RepeatPoint repeatPoint, DrawableSlider drawableSlide
|
|||
this.repeatPoint = repeatPoint;
|
||||
this.drawableSlider = drawableSlider;
|
||||
|
||||
Size = new Vector2(45 * repeatPoint.Scale);
|
||||
Size = new Vector2(OsuHitObject.OBJECT_RADIUS * 2 * repeatPoint.Scale);
|
||||
|
||||
Blending = BlendingMode.Additive;
|
||||
Origin = Anchor.Centre;
|
||||
|
@ -36,7 +36,8 @@ public DrawableRepeatPoint(RepeatPoint repeatPoint, DrawableSlider drawableSlide
|
|||
new SkinnableDrawable("Play/osu/reversearrow", _ => new SpriteIcon
|
||||
{
|
||||
RelativeSizeAxes = Axes.Both,
|
||||
Icon = FontAwesome.Solid.ChevronRight
|
||||
Icon = FontAwesome.Solid.ChevronRight,
|
||||
Size = new Vector2(0.35f)
|
||||
})
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue