mirror of
https://github.com/ppy/osu.git
synced 2025-01-27 17:53:15 +08:00
Simplify more
This commit is contained in:
parent
419f041291
commit
1771e003f7
@ -117,49 +117,33 @@ namespace osu.Game.Screens.Menu
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
purpleCircle = new CircularContainer
|
purpleCircle = new Circle
|
||||||
{
|
{
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.TopCentre,
|
Origin = Anchor.TopCentre,
|
||||||
Masking = true,
|
Masking = true,
|
||||||
Child = new Box
|
Colour = OsuColour.FromHex(@"AA92FF"),
|
||||||
{
|
|
||||||
RelativeSizeAxes = Axes.Both,
|
|
||||||
Colour = OsuColour.FromHex(@"AA92FF"),
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
yellowCircle = new CircularContainer
|
yellowCircle = new Circle
|
||||||
{
|
{
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.BottomCentre,
|
Origin = Anchor.BottomCentre,
|
||||||
Masking = true,
|
Masking = true,
|
||||||
Child = new Box
|
Colour = OsuColour.FromHex(@"FFD64C"),
|
||||||
{
|
|
||||||
RelativeSizeAxes = Axes.Both,
|
|
||||||
Colour = OsuColour.FromHex(@"FFD64C"),
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
blueCircle = new CircularContainer
|
blueCircle = new Circle
|
||||||
{
|
{
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.CentreRight,
|
Origin = Anchor.CentreRight,
|
||||||
Masking = true,
|
Masking = true,
|
||||||
Child = new Box
|
Colour = OsuColour.FromHex(@"8FE5FE"),
|
||||||
{
|
|
||||||
RelativeSizeAxes = Axes.Both,
|
|
||||||
Colour = OsuColour.FromHex(@"8FE5FE"),
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
pinkCircle = new CircularContainer
|
pinkCircle = new Circle
|
||||||
{
|
{
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.CentreLeft,
|
Origin = Anchor.CentreLeft,
|
||||||
Masking = true,
|
Masking = true,
|
||||||
Child = new Box
|
Colour = OsuColour.FromHex(@"e967a1"),
|
||||||
{
|
|
||||||
RelativeSizeAxes = Axes.Both,
|
|
||||||
Colour = OsuColour.FromHex(@"e967a1"),
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user