1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 16:47:29 +08:00

Merge pull request #26562 from kyubxy/spinner-speed-fix

Make spinner-top and spinner-middle2 spin at different speeds to match stable
This commit is contained in:
Dean Herbert 2024-01-17 01:24:36 +09:00 committed by GitHub
commit 658fa14a92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -135,7 +135,11 @@ namespace osu.Game.Rulesets.Osu.Skinning.Legacy
protected override void Update() protected override void Update()
{ {
base.Update(); base.Update();
spinningMiddle.Rotation = discTop.Rotation = DrawableSpinner.RotationTracker.Rotation;
float turnRatio = spinningMiddle.Texture != null ? 0.5f : 1;
discTop.Rotation = DrawableSpinner.RotationTracker.Rotation * turnRatio;
spinningMiddle.Rotation = DrawableSpinner.RotationTracker.Rotation;
discBottom.Rotation = discTop.Rotation / 3; discBottom.Rotation = discTop.Rotation / 3;
glow.Alpha = DrawableSpinner.Progress; glow.Alpha = DrawableSpinner.Progress;