mirror of
https://gitlab.com/serenetia/endpild-laman.git
synced 2025-03-15 08:35:53 +08:00
15 lines
328 B
TypeScript
15 lines
328 B
TypeScript
export const AnimFunctions = {
|
|
Forceful: [0.88, 0, 0.22, 1],
|
|
SlowDown: [0.18, 0, 0.08, 1],
|
|
SpeedUp: [0.82, 0, 1, 0.61],
|
|
};
|
|
|
|
export const Forceful = [0.88, 0, 0.22, 1];
|
|
export const SlowDown = [0.18, 0, 0.08, 1];
|
|
export const SpeedUp = [0.82, 0, 1, 0.61];
|
|
export default {
|
|
Forceful,
|
|
SlowDown,
|
|
SpeedUp,
|
|
};
|