summaryrefslogtreecommitdiff
path: root/bonnie-bee/splash.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson@vistahigherlearning.com>2021-10-24 11:53:05 -0400
committerDavid Thompson <dthompson@vistahigherlearning.com>2021-10-24 11:53:05 -0400
commit9523f936cf6f761ccc6127546540580cb57f9a5f (patch)
tree895b333dd0c07c1a94cff80f3fd2227dfd46437e /bonnie-bee/splash.scm
parent7e76d1c2005435c412ff96bf3e0f0f6be12c22c5 (diff)
Preparing for release!
Diffstat (limited to 'bonnie-bee/splash.scm')
-rw-r--r--bonnie-bee/splash.scm14
1 files changed, 10 insertions, 4 deletions
diff --git a/bonnie-bee/splash.scm b/bonnie-bee/splash.scm
index 98239d6..7059f91 100644
--- a/bonnie-bee/splash.scm
+++ b/bonnie-bee/splash.scm
@@ -14,16 +14,22 @@
(define-class <splash> (<scene-2d>))
-(define %text-color (rgb #xfee761))
+(define %text-color (rgb #x181425))
(define-method (on-boot (splash <splash>))
(set-cameras! splash)
(attach-to splash
(make <sprite>
- #:texture darkness-image)
+ #:texture lightness-image)
+ (make <sprite>
+ #:texture chickadee-image
+ #:position (vec2 (/ %game-width 2.0)
+ (/ %game-height 2.0))
+ #:origin (vec2 8.0 8.0)
+ #:scale (vec2 4.0 4.0))
(make <label>
#:rank 1
- #:position (vec2 (/ %game-width 2.0) 120.0)
+ #:position (vec2 (/ %game-width 2.0) 70.5)
#:font monogram-font
#:color %text-color
#:align 'center
@@ -31,7 +37,7 @@
#:text "Made with Chickadee")
(make <label>
#:rank 1
- #:position (vec2 (/ %game-width 2.0) 100.0)
+ #:position (vec2 (/ %game-width 2.0) 50.5)
#:font monogram-font
#:color %text-color
#:align 'center