mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-03-03 15:30:27 +00:00
24 lines
582 B
C#
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
|
|
}
|
|
}
|