1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:07:25 +08:00
osu-lazer/osu.Game/Storyboards/Drawables/DrawablesExtensions.cs

31 lines
1.3 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Transforms;
namespace osu.Game.Storyboards.Drawables
{
public static class DrawablesExtensions
{
/// <summary>
/// Adjusts <see cref="Drawable.Blending"/> after a delay.
/// </summary>
/// <returns>A <see cref="TransformSequence{T}"/> to which further transforms can be added.</returns>
2019-08-21 12:29:50 +08:00
public static TransformSequence<T> TransformBlendingMode<T>(this T drawable, BlendingParameters newValue, double delay = 0)
2018-04-13 17:19:50 +08:00
where T : Drawable
2019-08-21 12:29:50 +08:00
=> drawable.TransformTo(drawable.PopulateTransform(new TransformBlendingParameters(), newValue, delay));
2018-04-13 17:19:50 +08:00
}
2019-08-21 12:29:50 +08:00
public class TransformBlendingParameters : Transform<BlendingParameters, Drawable>
2018-04-13 17:19:50 +08:00
{
2019-08-21 12:29:50 +08:00
private BlendingParameters valueAt(double time)
2018-04-13 17:19:50 +08:00
=> time < EndTime ? StartValue : EndValue;
public override string TargetMember => nameof(Drawable.Blending);
protected override void Apply(Drawable d, double time) => d.Blending = valueAt(time);
2019-08-21 12:29:50 +08:00
protected override void ReadIntoStartValue(Drawable d) => StartValue = d.Blending;
2018-04-13 17:19:50 +08:00
}
}