diff options
Diffstat (limited to 'scenes/intro.scm')
-rw-r--r-- | scenes/intro.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scenes/intro.scm b/scenes/intro.scm index 15a25c0..422d2ec 100644 --- a/scenes/intro.scm +++ b/scenes/intro.scm @@ -84,7 +84,7 @@ The leaf begins to dry.")) (wait-until (key-pressed? 'return)) ;; Fade out - (tween 60 0.0 1.0 + (tween 1 0.0 1.0 (lambda (alpha) (set! fade-box-fill (make-color 0 0 0 alpha)))) @@ -92,7 +92,7 @@ The leaf begins to dry.")) (module-ref (resolve-interface '(scenes game)) 'scene)))) (script ;; Fade in - (tween 120 1.0 0.0 + (tween 2 1.0 0.0 (lambda (alpha) (set! fade-box-fill (make-color 1 1 1 alpha)))))) |