mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 21:07:33 +08:00
28 lines
1.1 KiB
C#
28 lines
1.1 KiB
C#
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Transforms;
|
|
|
|
namespace osu.Game.Storyboards.Drawables
|
|
{
|
|
public static class DrawablesExtensions
|
|
{
|
|
/// <summary>
|
|
/// Adjusts <see cref="Drawable.BlendingMode"/> after a delay.
|
|
/// </summary>
|
|
/// <returns>A <see cref="TransformSequence{T}"/> to which further transforms can be added.</returns>
|
|
public static TransformSequence<T> TransformBlendingMode<T>(this T drawable, BlendingMode newValue, double delay = 0)
|
|
where T : Drawable
|
|
=> drawable.TransformTo(drawable.PopulateTransform(new TransformBlendingMode(), newValue, delay));
|
|
}
|
|
|
|
public class TransformBlendingMode : Transform<BlendingMode, Drawable>
|
|
{
|
|
private BlendingMode valueAt(double time)
|
|
=> time < EndTime ? StartValue : EndValue;
|
|
|
|
public override string TargetMember => nameof(Drawable.Blending);
|
|
|
|
protected override void Apply(Drawable d, double time) => d.Blending = valueAt(time);
|
|
protected override void ReadIntoStartValue(Drawable d) => StartValue = d.Blending.Mode;
|
|
}
|
|
}
|