feat: init animation config

This commit is contained in:
2026-05-30 05:55:44 -04:00
parent 9bd03f67e4
commit d6d95173bd
3 changed files with 53 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
local M = {}
M.curves = {
{
name = "easeInOutExpo",
curve = {
type = "bezier",
points = { { 0.87, 0 }, { 0.13, 1 } },
},
},
{
name = "rubber",
curve = {
type = "spring",
mass = 1,
stiffness = 50,
dampening = 6,
},
},
}
return M