diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-11-06 12:43:08 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-11-06 12:43:08 +0100 |
commit | 0e343b13f76c27c55eb0d2cb7bd26e07a0a012b0 (patch) | |
tree | a50b25a092aea2d7b1b7e6117b7d09d96f99fb90 /characters | |
parent | 0e8a214f8a6c46a98ec507369431c19b07e6244e (diff) |
lorenzo: Fix sprite order.
Old chickadee didn't read sprite files in the correct order.
Diffstat (limited to 'characters')
-rw-r--r-- | characters/lorenzo.scm | 12 |
1 files 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)) |