9.0 Released! → Native ESM runtimes 🚀, Vite support ⚡️, multi-window apps and more...
Read Announcement
ts
const CORE_ANIMATION_DEFAULTS: {
  duration: number;
  spring: {
     friction: number;
     mass: number;
     tension: number;
     velocity: number;
  };
};

Defined in: utils/animation-helpers.ts

Default animation values used throughout core

Type Declaration

duration

ts
duration: number;

spring

ts
spring: {
  friction: number;
  mass: number;
  tension: number;
  velocity: number;
};

spring.friction

ts
friction: number;

spring.mass

ts
mass: number;

spring.tension

ts
tension: number;

spring.velocity

ts
velocity: number;
Previous
android
Next
debug