diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-11-06 10:56:14 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-11-06 12:07:11 +0100 |
commit | 95e09b602176716c747338507123ff8130610417 (patch) | |
tree | e1fe97b097a19c2073f9939f07c6c8c327b41ba9 /characters | |
parent | e5acb707aaceb92982b81f7170add924cc41653f (diff) |
Express all durations in seconds.
Diffstat (limited to 'characters')
-rw-r--r-- | characters/lorenzo.scm | 2 | ||||
-rw-r--r-- | characters/reaper.scm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/characters/lorenzo.scm b/characters/lorenzo.scm index 237ce6a..02880a0 100644 --- a/characters/lorenzo.scm +++ b/characters/lorenzo.scm @@ -47,4 +47,4 @@ (up . #(17 16 18 16)) (down . #(9 8 10 8))) #:current-animation 'idle-front - #:frame-duration 130)) + #:frame-duration 0.15)) diff --git a/characters/reaper.scm b/characters/reaper.scm index 25ee84f..213d8b1 100644 --- a/characters/reaper.scm +++ b/characters/reaper.scm @@ -40,7 +40,7 @@ (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))) #:current-animation 'idle - #:frame-duration 200 + #:frame-duration 0.2 #:conversations '((hello "Salutations!" |