mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-03-03 15:30:27 +00:00
GUI桌面环境
This commit is contained in:
23
Gui/UILib/Animations/EasingDirection.cs
Normal file
23
Gui/UILib/Animations/EasingDirection.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user