Move judgement text to internal container

This commit is contained in:
Kyle Chang
2018-09-28 23:27:25 -04:00
parent 1fe5ed5524
commit 88b0c234cc
3 changed files with 29 additions and 23 deletions

View File

@ -31,10 +31,10 @@ namespace osu.Game.Rulesets.Taiko.UI
switch (Result.Type)
{
case HitResult.Good:
Colour = colours.GreenLight;
JudgementBody.Colour = colours.GreenLight;
break;
case HitResult.Great:
Colour = colours.BlueLight;
JudgementBody.Colour = colours.BlueLight;
break;
}
}