From 0e343b13f76c27c55eb0d2cb7bd26e07a0a012b0 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 6 Nov 2023 12:43:08 +0100 Subject: lorenzo: Fix sprite order. Old chickadee didn't read sprite files in the correct order. --- characters/lorenzo.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/characters/lorenzo.scm b/characters/lorenzo.scm index 02880a0..bd9dae8 100644 --- a/characters/lorenzo.scm +++ b/characters/lorenzo.scm @@ -38,13 +38,13 @@ #:tint (if dead? (make-color 1.0 1.0 1.0 0.0) (make-color 1.0 1.0 1.0 1.0)) - #:animations '((idle-right . #(24 24 24 24 24 39 39 39 39 39)) - (idle-left . #(32 32 32 32 32 31 31 31 31 31)) - (idle-front . #(8 8 8 8 8 0 0 0 0 0)) + #:animations '((idle-right . #(8 8 8 8 8 7 7 7 7 7)) + (idle-left . #(0 0 0 0 0 15 15 15 15 15)) + (idle-front . #(24 24 24 24 32 32 32 32)) (idle-back . #(16)) - (left . #(33 3 34 3)) - (right . #(25 2 26 2)) + (left . #(1 35 2 35)) + (right . #(9 34 10 34)) (up . #(17 16 18 16)) - (down . #(9 8 10 8))) + (down . #(25 24 26 24))) #:current-animation 'idle-front #:frame-duration 0.15)) -- cgit v1.2.3