diff options
Diffstat (limited to 'bonnie-bee/splash.scm')
-rw-r--r-- | bonnie-bee/splash.scm | 14 |
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 |