mirror of
https://github.com/ppy/osu
synced 2025-01-10 08:09:40 +00:00
General fixes.
This commit is contained in:
parent
cd6fdcf029
commit
8aa723b6a3
@ -15,7 +15,7 @@ namespace osu.Game.Modes.Taiko.Objects
|
|||||||
public double Duration => EndTime - StartTime;
|
public double Duration => EndTime - StartTime;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The multiplier for cases in which the number of required hits by a Swell is not
|
/// The multiplier for cases in which the number of required hits by a swell is not
|
||||||
/// dependent on solely the overall difficulty and the duration of the swell.
|
/// dependent on solely the overall difficulty and the duration of the swell.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public double HitMultiplier { get; set; } = 1;
|
public double HitMultiplier { get; set; } = 1;
|
||||||
|
@ -19,9 +19,9 @@ namespace osu.Game.Modes.Taiko.UI
|
|||||||
internal class HitExplosion : CircularContainer
|
internal class HitExplosion : CircularContainer
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The size of a hit explosion if a hit object has been hit with the second key.
|
/// The size multiplier of a hit explosion if a hit object has been hit with the second key.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private const float secondhit_scale = 1.5f;
|
private const float secondhit_size_multiplier = 1.5f;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The judgement this hit explosion visualises.
|
/// The judgement this hit explosion visualises.
|
||||||
@ -85,7 +85,7 @@ namespace osu.Game.Modes.Taiko.UI
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public void VisualiseSecondHit()
|
public void VisualiseSecondHit()
|
||||||
{
|
{
|
||||||
ResizeTo(Size * secondhit_scale, 50);
|
ResizeTo(Size * secondhit_size_multiplier, 50);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user