feature/simple_ui #18

Merged
PeaAshMeter merged 25 commits from feature/simple_ui into main 2025-11-08 01:32:47 +03:00
Showing only changes of commit 0eb06dce3f - Show all commits

View File

@ -4,6 +4,11 @@
local easing = {} local easing = {}
--- @type ease
function easing.linear(x)
return x
end
--- @type ease --- @type ease
function easing.easeInSine(x) function easing.easeInSine(x)
return 1 - math.cos((x * math.pi) / 2); return 1 - math.cos((x * math.pi) / 2);