Compare commits

...

2 Commits

Author SHA1 Message Date
93f532b09b fixed shit values 2026-06-15 13:31:49 +01:00
017cd2257f adjust values after update changed weighting idk 2026-06-15 13:28:23 +01:00

View File

@@ -29,8 +29,8 @@ for _, bezier in ipairs(beziers) do
type = "spring", type = "spring",
-- If all the parameters are empty make a spring with the values from the wiki -- If all the parameters are empty make a spring with the values from the wiki
mass = bezier.mass or 1, mass = bezier.mass or 1,
stiffness = bezier.stiffness or 70, stiffness = (bezier.stiffness or 70) + 430,
dampening = bezier.dampening or 10, dampening = (bezier.dampening or 10) + 26,
}) })
else else
-- You fucked something up -- You fucked something up