Give repeat points a size specification

This commit is contained in:
Dean Herbert 2019-07-18 15:59:29 +09:00
parent efad9b3150
commit 28653e871c
1 changed files with 3 additions and 2 deletions

View File

@ -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)
})
};
}