Custom easing functions
-- You can add any code here obviously :D
return {
-- You can either write a single direction style:
CoolEasing = function(alpha)
return alpha
end,
-- Or you can write an all directions style:
SuperCoolEasing = {
In = function(alpha)
return alpha
end,
Out = function(alpha)
return alpha
end,
InOut = function(alpha)
return alpha
end,
OutIn = function(alpha)
return alpha
end
}
}Last updated