mirror of
https://github.com/ppy/osu.git
synced 2025-02-21 23:36:10 +08:00
Reorder constructor arguments for HitExplosionEntry
This commit is contained in:
parent
f3045b3152
commit
e79150d4da
@ -367,7 +367,7 @@ namespace osu.Game.Rulesets.Catch.UI
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void addLighting(JudgementResult judgementResult, Color4 colour, float x) =>
|
private void addLighting(JudgementResult judgementResult, Color4 colour, float x) =>
|
||||||
hitExplosionContainer.Add(new HitExplosionEntry(judgementResult, colour, x, Time.Current));
|
hitExplosionContainer.Add(new HitExplosionEntry(Time.Current, judgementResult, colour, x));
|
||||||
|
|
||||||
private CaughtObject getCaughtObject(PalpableCatchHitObject source)
|
private CaughtObject getCaughtObject(PalpableCatchHitObject source)
|
||||||
{
|
{
|
||||||
|
@ -32,7 +32,7 @@ namespace osu.Game.Rulesets.Catch.UI
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public float Position { get; }
|
public float Position { get; }
|
||||||
|
|
||||||
public HitExplosionEntry(JudgementResult judgementResult, Color4 objectColour, float position, double startTime)
|
public HitExplosionEntry(double startTime, JudgementResult judgementResult, Color4 objectColour, float position)
|
||||||
{
|
{
|
||||||
LifetimeStart = startTime;
|
LifetimeStart = startTime;
|
||||||
Position = position;
|
Position = position;
|
||||||
|
Loading…
Reference in New Issue
Block a user