Files
2026-07-21 20:05:30 -04:00

23 lines
300 B
Lua

local M = {}
M.curves = {
{
name = "easeInOutExpo",
curve = {
type = "bezier",
points = { { 0.87, 0 }, { 0.13, 1 } },
},
},
{
name = "rubber",
curve = {
type = "spring",
mass = 1,
stiffness = 500,
dampening = 20,
},
},
}
return M