6 lines
101 B
GLSL
6 lines
101 B
GLSL
float qinticOut(float t) {
|
|
return 1.0 - (pow(t - 1.0, 5.0));
|
|
}
|
|
|
|
#pragma glslify: export(qinticOut)
|