6 lines
96 B
GLSL
6 lines
96 B
GLSL
float quadraticOut(float t) {
|
|
return -t * (t - 2.0);
|
|
}
|
|
|
|
#pragma glslify: export(quadraticOut)
|