mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Apply CornerExponent fixes
This commit is contained in:
@ -17,7 +17,9 @@ namespace osu.Game.Rulesets.Osu.Edit.Blueprints.HitCircles.Components
|
|||||||
Origin = Anchor.Centre;
|
Origin = Anchor.Centre;
|
||||||
|
|
||||||
Size = new Vector2(OsuHitObject.OBJECT_RADIUS * 2);
|
Size = new Vector2(OsuHitObject.OBJECT_RADIUS * 2);
|
||||||
|
|
||||||
CornerRadius = Size.X / 2;
|
CornerRadius = Size.X / 2;
|
||||||
|
CornerExponent = 2;
|
||||||
|
|
||||||
InternalChild = new RingPiece();
|
InternalChild = new RingPiece();
|
||||||
}
|
}
|
||||||
|
@ -25,11 +25,10 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections
|
|||||||
{
|
{
|
||||||
Origin = Anchor.Centre;
|
Origin = Anchor.Centre;
|
||||||
|
|
||||||
Child = new SkinnableDrawable(new OsuSkinComponent(OsuSkinComponents.FollowPoint), _ => new Container
|
Child = new SkinnableDrawable(new OsuSkinComponent(OsuSkinComponents.FollowPoint), _ => new CircularContainer
|
||||||
{
|
{
|
||||||
Masking = true,
|
Masking = true,
|
||||||
AutoSizeAxes = Axes.Both,
|
AutoSizeAxes = Axes.Both,
|
||||||
CornerRadius = width / 2,
|
|
||||||
EdgeEffect = new EdgeEffectParameters
|
EdgeEffect = new EdgeEffectParameters
|
||||||
{
|
{
|
||||||
Type = EdgeEffectType.Glow,
|
Type = EdgeEffectType.Glow,
|
||||||
|
@ -16,7 +16,9 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Pieces
|
|||||||
{
|
{
|
||||||
Size = new Vector2(OsuHitObject.OBJECT_RADIUS * 2);
|
Size = new Vector2(OsuHitObject.OBJECT_RADIUS * 2);
|
||||||
Masking = true;
|
Masking = true;
|
||||||
|
|
||||||
CornerRadius = Size.X / 2;
|
CornerRadius = Size.X / 2;
|
||||||
|
CornerExponent = 2;
|
||||||
|
|
||||||
Anchor = Anchor.Centre;
|
Anchor = Anchor.Centre;
|
||||||
Origin = Anchor.Centre;
|
Origin = Anchor.Centre;
|
||||||
|
@ -18,10 +18,9 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Pieces
|
|||||||
Anchor = Anchor.Centre;
|
Anchor = Anchor.Centre;
|
||||||
Origin = Anchor.Centre;
|
Origin = Anchor.Centre;
|
||||||
|
|
||||||
InternalChild = new Container
|
InternalChild = new CircularContainer
|
||||||
{
|
{
|
||||||
Masking = true,
|
Masking = true,
|
||||||
CornerRadius = Size.X / 2,
|
|
||||||
BorderThickness = 10,
|
BorderThickness = 10,
|
||||||
BorderColour = Color4.White,
|
BorderColour = Color4.White,
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
|
@ -106,6 +106,7 @@ namespace osu.Game.Tournament.Components
|
|||||||
Width = main_width,
|
Width = main_width,
|
||||||
Height = TournamentBeatmapPanel.HEIGHT,
|
Height = TournamentBeatmapPanel.HEIGHT,
|
||||||
CornerRadius = TournamentBeatmapPanel.HEIGHT / 2,
|
CornerRadius = TournamentBeatmapPanel.HEIGHT / 2,
|
||||||
|
CornerExponent = 2,
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
new Box
|
new Box
|
||||||
@ -126,6 +127,7 @@ namespace osu.Game.Tournament.Components
|
|||||||
{
|
{
|
||||||
Masking = true,
|
Masking = true,
|
||||||
CornerRadius = TournamentBeatmapPanel.HEIGHT / 2,
|
CornerRadius = TournamentBeatmapPanel.HEIGHT / 2,
|
||||||
|
CornerExponent = 2,
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
|
@ -52,6 +52,7 @@ namespace osu.Game.Tournament.Components
|
|||||||
currentMatch.BindTo(ladder.CurrentMatch);
|
currentMatch.BindTo(ladder.CurrentMatch);
|
||||||
|
|
||||||
CornerRadius = HEIGHT / 2;
|
CornerRadius = HEIGHT / 2;
|
||||||
|
CornerExponent = 2;
|
||||||
Masking = true;
|
Masking = true;
|
||||||
|
|
||||||
AddRangeInternal(new Drawable[]
|
AddRangeInternal(new Drawable[]
|
||||||
|
@ -100,6 +100,7 @@ namespace osu.Game.Overlays.Comments
|
|||||||
Size = new Vector2(avatar_size),
|
Size = new Vector2(avatar_size),
|
||||||
Masking = true,
|
Masking = true,
|
||||||
CornerRadius = avatar_size / 2f,
|
CornerRadius = avatar_size / 2f,
|
||||||
|
CornerExponent = 2,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -43,6 +43,7 @@ namespace osu.Game.Overlays.Volume
|
|||||||
{
|
{
|
||||||
Content.BorderThickness = 3;
|
Content.BorderThickness = 3;
|
||||||
Content.CornerRadius = HEIGHT / 2;
|
Content.CornerRadius = HEIGHT / 2;
|
||||||
|
Content.CornerExponent = 2;
|
||||||
|
|
||||||
Size = new Vector2(width, HEIGHT);
|
Size = new Vector2(width, HEIGHT);
|
||||||
|
|
||||||
|
@ -20,6 +20,7 @@ namespace osu.Game.Screens.Edit.Components
|
|||||||
{
|
{
|
||||||
base.Update();
|
base.Update();
|
||||||
Content.CornerRadius = DrawHeight / 2f;
|
Content.CornerRadius = DrawHeight / 2f;
|
||||||
|
Content.CornerExponent = 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -31,6 +31,12 @@ namespace osu.Game.Users.Drawables
|
|||||||
set => base.CornerRadius = value;
|
set => base.CornerRadius = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public new float CornerExponent
|
||||||
|
{
|
||||||
|
get => base.CornerExponent;
|
||||||
|
set => base.CornerExponent = value;
|
||||||
|
}
|
||||||
|
|
||||||
public new EdgeEffectParameters EdgeEffect
|
public new EdgeEffectParameters EdgeEffect
|
||||||
{
|
{
|
||||||
get => base.EdgeEffect;
|
get => base.EdgeEffect;
|
||||||
|
Reference in New Issue
Block a user