From 1c8743e9e84bb4b5bbdb4f85548cec5fc44f939b Mon Sep 17 00:00:00 2001 From: Kistaro Windrider Date: Sat, 3 Feb 2024 13:49:51 -0800 Subject: [PATCH] cubic feels better than quadratic at 60fps --- vacation.p8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vacation.p8 b/vacation.p8 index 99034fd..a72b54a 100644 --- a/vacation.p8 +++ b/vacation.p8 @@ -344,7 +344,7 @@ function scoot:update() return end local t, range = self.f/self.frames, self.to - self.from - v.y = self.from + range * t * t + v.y = self.from + range * t * t * t end function scoot:draw()