Pixel-Composer/scripts/animation_curve/animation_curve.gml
2022-11-03 17:44:49 +07:00

4 lines
129 B
Plaintext

function animation_curve_eval(curve, t) {
var ch = animcurve_get_channel(curve, 0);
return animcurve_channel_evaluate(ch, t);
}