cirnogodot/GTweensGodot/GTweens/Source/Easings/Easing.cs
2025-02-24 11:52:50 +01:00

37 lines
No EOL
626 B
C#

namespace GTweens.Easings
{
public enum Easing
{
Linear,
InSine,
OutSine,
InOutSine,
InQuad,
OutQuad,
InOutQuad,
InCubic,
OutCubic,
InOutCubic,
InQuart,
OutQuart,
InOutQuart,
InQuint,
OutQuint,
InOutQuint,
InExpo,
OutExpo,
InOutExpo,
InCirc,
OutCirc,
InOutCirc,
InBack,
OutBack,
InOutBack,
InElastic,
OutElastic,
InOutElastic,
InBounce,
OutBounce,
InOutBounce
}
}