959e80cf72
assets upload description.
17 lines
453 B
C#
17 lines
453 B
C#
using UnityEngine;
|
|
|
|
namespace AwesomeTechnologies.Utility
|
|
{
|
|
public static class AnimationCurveExtention
|
|
{
|
|
public static float[] GenerateCurveArray(this AnimationCurve self, int sampleCount)
|
|
{
|
|
float[] returnArray = new float[sampleCount];
|
|
for (int j = 0; j <= sampleCount-1; j++)
|
|
returnArray[j] = self.Evaluate(j / (float)sampleCount);
|
|
|
|
return returnArray;
|
|
}
|
|
}
|
|
}
|