mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:07:25 +08:00
Misc. fixes
This commit is contained in:
parent
4d0c8ed441
commit
2954c19345
@ -62,7 +62,7 @@ namespace osu.Game.Graphics.UserInterface
|
||||
|
||||
protected virtual void transformAnimate()
|
||||
{
|
||||
countSpriteText.Colour = TintColour;
|
||||
countSpriteText.FadeColour(TintColour, 0);
|
||||
countSpriteText.ScaleTo(new Vector2(1, ScaleFactor));
|
||||
countSpriteText.FadeColour(OriginalColour, TintDuration, TintEasing);
|
||||
countSpriteText.ScaleTo(new Vector2(1, 1), TintDuration, TintEasing);
|
||||
|
@ -96,7 +96,7 @@ namespace osu.Game.Graphics.UserInterface
|
||||
IsRollingProportional
|
||||
? getProportionalDuration(VisibleCount, value)
|
||||
: RollingDuration;
|
||||
transformCount(IsRollingContinuous ? VisibleCount : count, value);
|
||||
transformCount(IsRollingContinuous ? VisibleCount : prevCount, value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -23,7 +23,7 @@ namespace osu.Game.Graphics.UserInterface
|
||||
public float PopOutSmallScale = 1.2f;
|
||||
public EasingTypes PopOutEasing = EasingTypes.None;
|
||||
public bool CanPopOutWhenBackwards = false;
|
||||
public float PopOutInitialAlpha = 1.0f;
|
||||
public float PopOutInitialAlpha = 0.75f;
|
||||
|
||||
public StandardComboCounter() : base()
|
||||
{
|
||||
|
@ -110,7 +110,7 @@ namespace osu.Game.Graphics.UserInterface
|
||||
transform.StartValue = stars[i].Scale;
|
||||
transform.EndValue = new Vector2(
|
||||
Interpolation.ValueAt(
|
||||
(isIncrement ? Math.Min(i + 1, Count) : Math.Max(i, Count)),
|
||||
Math.Min(Math.Max(i, Count), i + 1),
|
||||
MinStarSize,
|
||||
1.0f,
|
||||
i,
|
||||
|
Loading…
Reference in New Issue
Block a user