From 6ceaa68e960669ecce970ef3104fa8bd058ed376 Mon Sep 17 00:00:00 2001 From: HeySora Date: Wed, 3 Nov 2021 22:42:15 +0100 Subject: [PATCH 1/2] inOutLinear --- template/ease.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/template/ease.xml b/template/ease.xml index b877f6e..37f6281 100644 --- a/template/ease.xml +++ b/template/ease.xml @@ -85,6 +85,7 @@ function instant() return 1 end function linear(t) return t end + inOutLinear = linear function inQuad(t) return t * t end function outQuad(t) return -t * (t - 2) end function inOutQuad(t) From 036b3c544d89cf1b05f784a6d3c59c43e85dd329 Mon Sep 17 00:00:00 2001 From: HeySora Date: Wed, 5 Jan 2022 19:46:04 +0100 Subject: [PATCH 2/2] inLinear, outLinear, outInLinear --- template/ease.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/ease.xml b/template/ease.xml index 37f6281..79828ec 100644 --- a/template/ease.xml +++ b/template/ease.xml @@ -85,7 +85,7 @@ function instant() return 1 end function linear(t) return t end - inOutLinear = linear + inLinear, outLinear, inOutLinear, outInLinear = linear, linear, linear, linear function inQuad(t) return t * t end function outQuad(t) return -t * (t - 2) end function inOutQuad(t)