From 7e962159a957a5f1893806ae8b73f13566fb8954 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Sat, 19 Sep 2020 23:40:55 +0200 Subject: Fix animation direction --- heyllama.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heyllama.scm b/heyllama.scm index d1e3be3..dbe8833 100644 --- a/heyllama.scm +++ b/heyllama.scm @@ -141,7 +141,7 @@ (vec2-add! (get-pos llama) #v((* tstep 0.2) 0)) (set-animation-step! llama (floor-remainder - (+ (get-animation-step llama) 1) + (+ (get-animation-step llama) -1) 16))) (when (key-pressed? 'left) -- cgit v1.2.3