Does anyone know what type of ease setting the wick engine uses? (ex. quart,cubic,quad) Just wanna know
Just regular ol’ ease in and ease out. No exact type.
Mmmmm… not really sure you understood what I meant. Since Wick Editor’s main programming language is mainly JavaScript, I don’t think there is just “a regular ol’ ease in and ease out” coded for the easing options. If you don’t understand, see this: https://easings.net/# or read this: https://stackoverflow.com/questions/30007853/simple-easing-function-in-javascript
I just wanna know what type they use just for the fun of it.
the ease-in, ease-out, and ease-in-out are all quadratic. in and out are both just single quadratic formulas. in-out is 2 quadratics put together to make something resembling a sine wave.
you can also see them here (https://github.com/Wicklets/wick-editor/blob/master/engine/src/base/Tween.js):
Oh, so that’s what the normal one’s called… quad.
The more you know!