Files
2026-03-04 10:03:45 +08:00

37 lines
595 B
C#

using System;
namespace RootMotion
{
[Serializable]
public enum InterpolationMode
{
None = 0,
InOutCubic = 1,
InOutQuintic = 2,
InOutSine = 3,
InQuintic = 4,
InQuartic = 5,
InCubic = 6,
InQuadratic = 7,
InElastic = 8,
InElasticSmall = 9,
InElasticBig = 10,
InSine = 11,
InBack = 12,
OutQuintic = 13,
OutQuartic = 14,
OutCubic = 15,
OutInCubic = 16,
OutInQuartic = 17,
OutElastic = 18,
OutElasticSmall = 19,
OutElasticBig = 20,
OutSine = 21,
OutBack = 22,
OutBackCubic = 23,
OutBackQuartic = 24,
BackInCubic = 25,
BackInQuartic = 26
}
}