From a629964d6385630bb8c986d05d9a8006eb5d99df Mon Sep 17 00:00:00 2001 From: jill Date: Sat, 18 Sep 2021 02:33:08 +0300 Subject: [PATCH] reorder eases correctly --- easelib.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easelib.lua b/easelib.lua index ceb5933..8c89533 100644 --- a/easelib.lua +++ b/easelib.lua @@ -106,6 +106,7 @@ table.insert(self, {'inOutCirc', function(t) end end}) +table.insert(self, {'inBounce', function(t) return 1 - self.outBounce(1 - t) end}) table.insert(self, {'outBounce', function(t) if t < 1 / 2.75 then return 7.5625 * t * t @@ -120,7 +121,6 @@ table.insert(self, {'outBounce', function(t) return 7.5625 * t * t + 0.984375 end end}) -table.insert(self, {'inBounce', function(t) return 1 - self.outBounce(1 - t) end}) table.insert(self, {'inOutBounce', function(t) if t < 0.5 then return self.inBounce(t * 2) * 0.5