mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 00:53:56 +09:00
Increase RingExplosion base size for finishers.
Subtle but looks good imo (checked with flyte).
This commit is contained in:
@ -41,7 +41,8 @@ namespace osu.Desktop.VisualTests.Tests
|
|||||||
Result = HitResult.Hit,
|
Result = HitResult.Hit,
|
||||||
Score = score,
|
Score = score,
|
||||||
TimeOffset = 0,
|
TimeOffset = 0,
|
||||||
ComboAtHit = 1
|
ComboAtHit = 1,
|
||||||
|
SecondHit = RNG.Next(2) == 0
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -16,7 +16,7 @@ namespace osu.Game.Modes.Taiko.UI
|
|||||||
{
|
{
|
||||||
internal class RingExplosion : CircularContainer
|
internal class RingExplosion : CircularContainer
|
||||||
{
|
{
|
||||||
public TaikoScoreResult ScoreResult;
|
public TaikoJudgementInfo Judgement;
|
||||||
|
|
||||||
private Box innerFill;
|
private Box innerFill;
|
||||||
|
|
||||||
@ -46,7 +46,10 @@ namespace osu.Game.Modes.Taiko.UI
|
|||||||
[BackgroundDependencyLoader]
|
[BackgroundDependencyLoader]
|
||||||
private void load(OsuColour colours)
|
private void load(OsuColour colours)
|
||||||
{
|
{
|
||||||
switch (ScoreResult)
|
if (Judgement.SecondHit)
|
||||||
|
Size *= 1.5f;
|
||||||
|
|
||||||
|
switch (Judgement.Score)
|
||||||
{
|
{
|
||||||
case TaikoScoreResult.Good:
|
case TaikoScoreResult.Good:
|
||||||
innerFill.Colour = colours.Green;
|
innerFill.Colour = colours.Green;
|
||||||
|
@ -202,7 +202,7 @@ namespace osu.Game.Modes.Taiko.UI
|
|||||||
{
|
{
|
||||||
ringExplosionContainer.Add(new RingExplosion
|
ringExplosionContainer.Add(new RingExplosion
|
||||||
{
|
{
|
||||||
ScoreResult = judgedObject.Judgement.Score
|
Judgement = judgedObject.Judgement
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user