Add back fade

This commit is contained in:
smoogipoo 2020-02-08 00:28:52 +09:00
parent 678eb8ec31
commit 51edd88277
1 changed files with 3 additions and 0 deletions

View File

@ -2,6 +2,7 @@
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Graphics;
using osu.Framework.Input.Events;
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Osu.Edit.Blueprints.Spinners.Components;
@ -52,6 +53,8 @@ protected override bool OnMouseDown(MouseDownEvent e)
return false;
BeginPlacement();
piece.FadeTo(1f, 150, Easing.OutQuint);
isPlacingEnd = true;
}