1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 21:42:56 +08:00

Update framework

This commit is contained in:
Thomas Müller 2017-07-21 18:23:01 +02:00
parent a7dc8a892b
commit 0f2bcb2904
4 changed files with 5 additions and 5 deletions

@ -1 +1 @@
Subproject commit d09246eeb0e7e30bc31cc017af3847ee09b4df08
Subproject commit 69000e416b7f29a1eaf0aaa7e60f452edb843948

View File

@ -37,7 +37,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Pieces
protected override void LoadComplete()
{
base.LoadComplete();
icon.Spin(1000);
icon.Spin(1000, RotationDirection.Clockwise);
}
public void UpdateProgress(double progress, int repeat)

View File

@ -34,7 +34,7 @@ namespace osu.Game.Graphics.UserInterface
{
base.LoadComplete();
spinner.Spin(2000);
spinner.Spin(2000, RotationDirection.Clockwise);
}
private const float transition_duration = 500;

View File

@ -199,8 +199,8 @@ namespace osu.Game.Overlays
getSample.Play();
innerSpin.Spin(20000);
outerSpin.Spin(40000);
innerSpin.Spin(20000, RotationDirection.Clockwise);
outerSpin.Spin(40000, RotationDirection.Clockwise);
using (BeginDelayedSequence(200, true))
{