Skip to content

textmode.synth.js / EasingFunction

Type Alias: EasingFunction

ts
type EasingFunction = 
  | keyof typeof EASING_FUNCTIONS
  | ((t) => number);

Easing functions from https://gist.github.com/gre/1650294

Available easing functions: 'linear', 'easeInQuad', 'easeOutQuad', 'easeInOutQuad', 'easeInCubic', 'easeOutCubic', 'easeInOutCubic', 'easeInQuart', 'easeOutQuart', 'easeInOutQuart', 'easeInQuint', 'easeOutQuint', 'easeInOutQuint', 'sin'

Example