10 lines
104 B
C#
10 lines
104 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public enum smooth_method_enum
|
|
{
|
|
lerp = 0,
|
|
smoothstep = 1,
|
|
clamp = 2
|
|
}
|