mirror of
https://github.com/ppy/osu.git
synced 2025-01-27 14:12:56 +08:00
Cleanups + fix CircularContainer usages.
This commit is contained in:
parent
790997db90
commit
9c325ddd33
@ -39,35 +39,27 @@ namespace osu.Game.Modes.Taiko.UI
|
|||||||
new Box
|
new Box
|
||||||
{
|
{
|
||||||
Name = "Bar Upper",
|
Name = "Bar Upper",
|
||||||
|
|
||||||
Anchor = Anchor.TopCentre,
|
Anchor = Anchor.TopCentre,
|
||||||
Origin = Anchor.TopCentre,
|
Origin = Anchor.TopCentre,
|
||||||
|
|
||||||
Y = border_offset,
|
Y = border_offset,
|
||||||
|
|
||||||
Size = new Vector2(3, (TaikoPlayfield.PlayfieldHeight - finisher_diameter) / 2f - border_offset),
|
Size = new Vector2(3, (TaikoPlayfield.PlayfieldHeight - finisher_diameter) / 2f - border_offset),
|
||||||
|
|
||||||
Alpha = 0.1f
|
Alpha = 0.1f
|
||||||
},
|
},
|
||||||
new CircularContainer
|
new CircularContainer
|
||||||
{
|
{
|
||||||
Name = "Finisher Ring",
|
Name = "Finisher Ring",
|
||||||
|
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
|
|
||||||
Size = new Vector2(finisher_diameter),
|
Size = new Vector2(finisher_diameter),
|
||||||
|
Masking = true,
|
||||||
BorderColour = Color4.White,
|
BorderColour = Color4.White,
|
||||||
BorderThickness = 2,
|
BorderThickness = 2,
|
||||||
Alpha = 0.1f,
|
Alpha = 0.1f,
|
||||||
|
|
||||||
Children = new[]
|
Children = new[]
|
||||||
{
|
{
|
||||||
new Box
|
new Box
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
|
|
||||||
Alpha = 0,
|
Alpha = 0,
|
||||||
AlwaysPresent = true
|
AlwaysPresent = true
|
||||||
}
|
}
|
||||||
@ -76,22 +68,18 @@ namespace osu.Game.Modes.Taiko.UI
|
|||||||
new CircularContainer
|
new CircularContainer
|
||||||
{
|
{
|
||||||
Name = "Normal Ring",
|
Name = "Normal Ring",
|
||||||
|
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
|
|
||||||
Size = new Vector2(normal_diameter),
|
Size = new Vector2(normal_diameter),
|
||||||
|
Masking = true,
|
||||||
BorderColour = Color4.White,
|
BorderColour = Color4.White,
|
||||||
BorderThickness = 2,
|
BorderThickness = 2,
|
||||||
Alpha = 0.5f,
|
Alpha = 0.5f,
|
||||||
|
|
||||||
Children = new[]
|
Children = new[]
|
||||||
{
|
{
|
||||||
new Box
|
new Box
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
|
|
||||||
Alpha = 0,
|
Alpha = 0,
|
||||||
AlwaysPresent = true
|
AlwaysPresent = true
|
||||||
}
|
}
|
||||||
@ -100,14 +88,10 @@ namespace osu.Game.Modes.Taiko.UI
|
|||||||
new Box
|
new Box
|
||||||
{
|
{
|
||||||
Name = "Bar Lower",
|
Name = "Bar Lower",
|
||||||
|
|
||||||
Anchor = Anchor.BottomCentre,
|
Anchor = Anchor.BottomCentre,
|
||||||
Origin = Anchor.BottomCentre,
|
Origin = Anchor.BottomCentre,
|
||||||
|
|
||||||
Y = -border_offset,
|
Y = -border_offset,
|
||||||
|
|
||||||
Size = new Vector2(3, (TaikoPlayfield.PlayfieldHeight - finisher_diameter) / 2f - border_offset),
|
Size = new Vector2(3, (TaikoPlayfield.PlayfieldHeight - finisher_diameter) / 2f - border_offset),
|
||||||
|
|
||||||
Alpha = 0.1f
|
Alpha = 0.1f
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -29,25 +29,18 @@ namespace osu.Game.Modes.Taiko.UI
|
|||||||
new TaikoHalfDrum(false)
|
new TaikoHalfDrum(false)
|
||||||
{
|
{
|
||||||
Name = "Left Half",
|
Name = "Left Half",
|
||||||
|
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.CentreRight,
|
Origin = Anchor.CentreRight,
|
||||||
|
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
|
|
||||||
Keys = new List<Key>(new[] { Key.F, Key.D })
|
Keys = new List<Key>(new[] { Key.F, Key.D })
|
||||||
},
|
},
|
||||||
new TaikoHalfDrum(true)
|
new TaikoHalfDrum(true)
|
||||||
{
|
{
|
||||||
Name = "Right Half",
|
Name = "Right Half",
|
||||||
|
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.CentreLeft,
|
Origin = Anchor.CentreLeft,
|
||||||
|
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
|
|
||||||
Position = new Vector2(-1f, 0),
|
Position = new Vector2(-1f, 0),
|
||||||
|
|
||||||
Keys = new List<Key>(new[] { Key.J, Key.K })
|
Keys = new List<Key>(new[] { Key.J, Key.K })
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -81,25 +74,20 @@ namespace osu.Game.Modes.Taiko.UI
|
|||||||
{
|
{
|
||||||
Anchor = flipped ? Anchor.CentreLeft : Anchor.CentreRight,
|
Anchor = flipped ? Anchor.CentreLeft : Anchor.CentreRight,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
|
|
||||||
RelativeSizeAxes = Axes.Both
|
RelativeSizeAxes = Axes.Both
|
||||||
},
|
},
|
||||||
outerHit = new Sprite
|
outerHit = new Sprite
|
||||||
{
|
{
|
||||||
Anchor = flipped ? Anchor.CentreLeft : Anchor.CentreRight,
|
Anchor = flipped ? Anchor.CentreLeft : Anchor.CentreRight,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
|
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
|
|
||||||
Alpha = 0,
|
Alpha = 0,
|
||||||
|
|
||||||
BlendingMode = BlendingMode.Additive
|
BlendingMode = BlendingMode.Additive
|
||||||
},
|
},
|
||||||
inner = new Sprite
|
inner = new Sprite
|
||||||
{
|
{
|
||||||
Anchor = flipped ? Anchor.CentreLeft : Anchor.CentreRight,
|
Anchor = flipped ? Anchor.CentreLeft : Anchor.CentreRight,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
|
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
Size = new Vector2(0.7f)
|
Size = new Vector2(0.7f)
|
||||||
},
|
},
|
||||||
@ -107,12 +95,9 @@ namespace osu.Game.Modes.Taiko.UI
|
|||||||
{
|
{
|
||||||
Anchor = flipped ? Anchor.CentreLeft : Anchor.CentreRight,
|
Anchor = flipped ? Anchor.CentreLeft : Anchor.CentreRight,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
|
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
Size = new Vector2(0.7f),
|
Size = new Vector2(0.7f),
|
||||||
|
|
||||||
Alpha = 0,
|
Alpha = 0,
|
||||||
|
|
||||||
BlendingMode = BlendingMode.Additive
|
BlendingMode = BlendingMode.Additive
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -40,31 +40,24 @@ namespace osu.Game.Modes.Taiko.UI
|
|||||||
{
|
{
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
|
|
||||||
AutoSizeAxes = Axes.Both,
|
AutoSizeAxes = Axes.Both,
|
||||||
|
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
new BufferedContainer
|
new BufferedContainer
|
||||||
{
|
{
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
|
|
||||||
BlurSigma = new Vector2(10),
|
BlurSigma = new Vector2(10),
|
||||||
CacheDrawnFrameBuffer = true,
|
CacheDrawnFrameBuffer = true,
|
||||||
|
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
Size = new Vector2(3),
|
Size = new Vector2(3),
|
||||||
|
|
||||||
BlendingMode = BlendingMode.Additive,
|
BlendingMode = BlendingMode.Additive,
|
||||||
|
|
||||||
Children = new[]
|
Children = new[]
|
||||||
{
|
{
|
||||||
glowText = new OsuSpriteText
|
glowText = new OsuSpriteText
|
||||||
{
|
{
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
|
|
||||||
Font = "Venera",
|
Font = "Venera",
|
||||||
TextSize = 22f,
|
TextSize = 22f,
|
||||||
}
|
}
|
||||||
@ -74,7 +67,6 @@ namespace osu.Game.Modes.Taiko.UI
|
|||||||
{
|
{
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
|
|
||||||
Font = "Venera",
|
Font = "Venera",
|
||||||
TextSize = 22f,
|
TextSize = 22f,
|
||||||
}
|
}
|
||||||
|
@ -39,6 +39,7 @@ namespace osu.Game.Modes.Taiko.UI
|
|||||||
BorderThickness = 1;
|
BorderThickness = 1;
|
||||||
|
|
||||||
Alpha = 0.15f;
|
Alpha = 0.15f;
|
||||||
|
Masking = true;
|
||||||
|
|
||||||
Children = new[]
|
Children = new[]
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user