mirror of
https://github.com/ppy/osu
synced 2024-12-15 11:25:29 +00:00
Add back mis-removed fade transform
This commit is contained in:
parent
4f8240f19a
commit
840c22a3b1
@ -75,7 +75,7 @@ namespace osu.Game.Screens.Edit.Compose.Components
|
||||
if (activeHandle?.InOperation == true || activeHandle?.IsHovered == true)
|
||||
return;
|
||||
|
||||
displayedRotationHandle?.Hide();
|
||||
displayedRotationHandle?.FadeOut(SelectionBoxControl.TRANSFORM_DURATION, Easing.OutQuint);
|
||||
displayedRotationHandle = null;
|
||||
|
||||
activeHandle = allDragHandles.SingleOrDefault(h => h.InOperation);
|
||||
@ -84,7 +84,7 @@ namespace osu.Game.Screens.Edit.Compose.Components
|
||||
if (activeHandle != null)
|
||||
{
|
||||
displayedRotationHandle = getCorrespondingRotationHandle(activeHandle, rotationHandles);
|
||||
displayedRotationHandle?.Show();
|
||||
displayedRotationHandle?.FadeIn(SelectionBoxControl.TRANSFORM_DURATION, Easing.OutQuint);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user