diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2021-10-23 17:09:34 -0400 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2021-10-23 17:09:34 -0400 |
commit | 3fc18437f905f18aa4bf3b688930dbc68f8721b3 (patch) | |
tree | e14a25532309c88e2a33d5a7641f381a69733966 /bonnie-bee/moth.scm | |
parent | fb31282c18f33acb6de24e604059df6d05477491 (diff) |
Lots of tweaks and also sprite animations!
Diffstat (limited to 'bonnie-bee/moth.scm')
-rw-r--r-- | bonnie-bee/moth.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/bonnie-bee/moth.scm b/bonnie-bee/moth.scm index 8f4ed5f..bcd165b 100644 --- a/bonnie-bee/moth.scm +++ b/bonnie-bee/moth.scm @@ -19,9 +19,12 @@ (define-method (on-boot (moth <moth>)) (attach-to moth - (make <sprite> - #:texture moth-image - #:origin (vec2 32.0 32.0)))) + (make <animated-sprite> + #:atlas moth-atlas + #:origin (vec2 32.0 32.0) + #:animations `((default . ,(make <animation> + #:frames #(0 1 0 2) + #:frame-duration .1)))))) (define-method (on-collide (moth <moth>) (bullet <bullet>)) (cond |