Files
CMLeonOS/Gui/UILib/Animations/EasingDirection.cs
2026-03-01 17:03:49 +08:00

24 lines
582 B
C#

namespace CMLeonOS.UILib.Animations
{
/// <summary>
/// Defines the direction of an easing type.
/// </summary>
internal enum EasingDirection
{
/// <summary>
/// Starts the animation slowly, and finishes at full speed.
/// </summary>
In,
/// <summary>
/// Starts the animation at full speed, and finishes slowly.
/// </summary>
Out,
/// <summary>
/// Starts the animation slowly, reaches full speed at the middle, and finishes slowly.
/// </summary>
InOut
}
}