1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-27 21:05:53 +00:00
* Fixed: Animation error for leave effect.
This commit is contained in:
SirStendec 2023-03-27 19:49:24 -04:00
parent 21bc0a704f
commit 53814e7024
2 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
{
"name": "frankerfacez",
"author": "Dan Salvato LLC",
"version": "4.44.0",
"version": "4.44.1",
"description": "FrankerFaceZ is a Twitch enhancement suite.",
"private": true,
"license": "Apache-2.0",

View file

@ -60,7 +60,7 @@ const APPEAR_FRAMES = [
const LEAVE_FRAMES = [
[0, 0, 1, 0],
[39.99, 1, 1, 0],
[39.99, 0, 1, 0],
[40, 0, -.9, .9, -3],
[45, -2, -.8, .8, 2],
[50, -4, -.7, .7, -3],
@ -69,9 +69,9 @@ const LEAVE_FRAMES = [
[65, -10, -.4, .4, .6],
[70, -12, -.3, .3, -4],
[75, -14, -.2, .2, .6],
[80, 16, -.1, .1, 0],
[80, -16, -.1, .1, 0],
[85, -18, -0.01, 0, 0],
[100, -18, -0.01, 0, 0]
[100, -18, 0, 0, 0]
];