diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2020-10-03 23:01:50 -0400 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2020-10-03 23:11:49 -0400 |
commit | 3aaed194a553a745627d5f06f88b942b2dce2da1 (patch) | |
tree | 2c43e2e4859fc8345c6ea5fb1f193853a5945509 /examples | |
parent | 6e809066edb93ff6907cf342fd896cb554e232d6 (diff) |
Update chickadee to latest commit.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/shmup/shmup.scm | 8 | ||||
-rw-r--r-- | examples/tetra/tetra.scm | 12 |
2 files changed, 10 insertions, 10 deletions
diff --git a/examples/shmup/shmup.scm b/examples/shmup/shmup.scm index fa757e5..95f6292 100644 --- a/examples/shmup/shmup.scm +++ b/examples/shmup/shmup.scm @@ -3,10 +3,10 @@ (chickadee math matrix) (chickadee math rect) (chickadee math vector) - (chickadee render color) - (chickadee render shapes) - (chickadee render texture) - (chickadee render sprite) + (chickadee graphics color) + (chickadee graphics shapes) + (chickadee graphics texture) + (chickadee graphics sprite) (chickadee scripting) (ice-9 match) (oop goops) diff --git a/examples/tetra/tetra.scm b/examples/tetra/tetra.scm index 5bb2ac5..b02aeea 100644 --- a/examples/tetra/tetra.scm +++ b/examples/tetra/tetra.scm @@ -24,11 +24,11 @@ (chickadee math matrix) (chickadee math rect) (chickadee math vector) - (chickadee render color) - (chickadee render font) - (chickadee render particles) - (chickadee render texture) - (chickadee render sprite) + (chickadee graphics color) + (chickadee graphics font) + (chickadee graphics particles) + (chickadee graphics texture) + (chickadee graphics sprite) (chickadee scripting) (ice-9 match) (oop goops) @@ -63,7 +63,7 @@ (define-asset atlas (load-block-atlas "images/blocks.png")) (define-asset star (load-image "images/star.png")) -(define-asset click-font (load-font "fonts/click.xml")) +(define-asset click-font (load-bitmap-font "fonts/click.xml")) ;;; |