1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 17:07:38 +08:00

Minor variable change

This commit is contained in:
Adonais Romero González 2016-10-15 14:01:11 -05:00
parent 2625d06553
commit c268500f89
2 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ namespace osu.Game.GameModes.Play.Catch
/// </summary>
public class CatchComboCounter : OsuComboCounter
{
protected override bool CanPopOutWhenBackwards => true;
protected override bool CanPopOutWhileRolling => true;
protected override string FormatCount(ulong count)
{

View File

@ -20,7 +20,7 @@ namespace osu.Game.GameModes.Play.Osu
protected uint ScheduledPopOutCurrentId = 0;
protected virtual float PopOutSmallScale => 1.1f;
protected virtual bool CanPopOutWhenBackwards => false;
protected virtual bool CanPopOutWhileRolling => false;
public Vector2 InnerCountPosition
@ -101,7 +101,7 @@ namespace osu.Game.GameModes.Play.Osu
else
CountSpriteText.Show();
if (CanPopOutWhenBackwards)
if (CanPopOutWhileRolling)
transformPopOut(currentValue, newValue);
else
transformNoPopOut(newValue);