mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 00:23:59 +09:00
Rename aborted -> fired
This commit is contained in:
@ -17,11 +17,11 @@ namespace osu.Game.Tests.Visual
|
|||||||
{
|
{
|
||||||
bool fired = false;
|
bool fired = false;
|
||||||
|
|
||||||
var abortText = new OsuSpriteText
|
var firedText = new OsuSpriteText
|
||||||
{
|
{
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
Text = "Aborted!",
|
Text = "Fired!",
|
||||||
TextSize = 50,
|
TextSize = 50,
|
||||||
Alpha = 0,
|
Alpha = 0,
|
||||||
};
|
};
|
||||||
@ -31,14 +31,14 @@ namespace osu.Game.Tests.Visual
|
|||||||
Action = () =>
|
Action = () =>
|
||||||
{
|
{
|
||||||
fired = true;
|
fired = true;
|
||||||
abortText.FadeTo(1).Then().FadeOut(1000);
|
firedText.FadeTo(1).Then().FadeOut(1000);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
overlay,
|
overlay,
|
||||||
abortText
|
firedText
|
||||||
};
|
};
|
||||||
|
|
||||||
AddStep("start confirming", () => overlay.Begin());
|
AddStep("start confirming", () => overlay.Begin());
|
||||||
|
Reference in New Issue
Block a user