diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-11-06 13:13:57 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-11-06 13:13:57 +0100 |
commit | b539b040447ab6493cfa02477378dd3c2b7ea3e4 (patch) | |
tree | e28dbc50d91746564b6b75b70ae0195f43dbcc29 /characters | |
parent | 0e343b13f76c27c55eb0d2cb7bd26e07a0a012b0 (diff) |
reaper: Fix sprite order.
Old chickadee didn't read sprite files in the correct order.
Diffstat (limited to 'characters')
-rw-r--r-- | characters/reaper.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/characters/reaper.scm b/characters/reaper.scm index 213d8b1..03cd2ec 100644 --- a/characters/reaper.scm +++ b/characters/reaper.scm @@ -35,10 +35,10 @@ #:position start-position #:atlas reaper-atlas #:animations - '((idle . #(12 12 12 13 13 13 5 13 13 13 4 4 4 4 4 4 9 8 8 8 12 12 12 15 15)) - (pause . #(8 8 8 8 8 8 8 9)) - (talk . #(12 15 14 11 9 8 10 9 15 14 14 14 8 8 12 12 12)) - (up . #(7 3 7 0 2 6 2 1))) + '((idle . #(0 0 0 1 1 1 9 1 1 1 8 8 8 8 8 8 5 4 4 4 0 0 0 3 3)) + (pause . #(4 4 4 4 4 4 4 5)) + (talk . #(0 3 2 7 5 4 6 5 3 2 2 2 4 4 0 0 0)) + (up . #(11 15 11 12 14 10 14 13))) #:current-animation 'idle #:frame-duration 0.2 #:conversations |