aboutsummaryrefslogtreecommitdiff
path: root/animation.scm
diff options
context:
space:
mode:
authorGene Pasquet <dev@etenil.net>2026-04-17 15:03:13 +0100
committerGene Pasquet <dev@etenil.net>2026-04-17 15:03:13 +0100
commitc9d23f9e8143fbb6e8633ef2db85376f47ad8087 (patch)
tree3cb99c25d02b6fd07f6b22ef1a5202b0b6fded48 /animation.scm
parente29143f891ea0f25480c9e2b2c5b765f0b343bff (diff)
Fix plist handling, add test for timed animation frames
Diffstat (limited to 'animation.scm')
-rw-r--r--animation.scm2
1 files changed, 2 insertions, 0 deletions
diff --git a/animation.scm b/animation.scm
index e3e6e89..0d961a1 100644
--- a/animation.scm
+++ b/animation.scm
@@ -2,6 +2,7 @@
(import scheme
(chicken base)
(chicken keyword)
+ (chicken pretty-print)
(only srfi-1 filter)
downstroke-entity
downstroke-world)
@@ -78,6 +79,7 @@
(define-pipeline (apply-animation animation) (scene entity dt)
guard: (entity-ref entity #:animations #f)
(let ((animations (entity-ref entity #:animations #f)))
+ (pp entity)
(animate-entity entity animations)))
) ;; End of animation module