Pixel-Composer/scripts/animation_curve/animation_curve.gml

4 lines
129 B
Plaintext
Raw Normal View History

2022-11-03 11:44:49 +01:00
function animation_curve_eval(curve, t) {
var ch = animcurve_get_channel(curve, 0);
return animcurve_channel_evaluate(ch, t);
}