summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2021-10-06 08:08:00 -0400
committerDavid Thompson <dthompson2@worcester.edu>2021-10-06 08:08:00 -0400
commit03cb76faf452dcf30fe86d6522c1de88ba2fa923 (patch)
tree7953fe88ab5fd379714889ae436a71014b793fb2 /examples
parent8f4d24f0400ad34424e9c077c3111e2e8136ded6 (diff)
examples: path: Adjust tween time due to new default timer.
Diffstat (limited to 'examples')
-rw-r--r--examples/path.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/path.scm b/examples/path.scm
index aabfb4d..202a859 100644
--- a/examples/path.scm
+++ b/examples/path.scm
@@ -52,10 +52,10 @@
(define (load)
(script
(forever
- (tween 60 1.0 4.0
+ (tween 1.0 1.0 4.0
(lambda (s)
(set-canvas-painter! canvas (make-example-painter s))))
- (tween 60 4.0 1.0
+ (tween 1.0 4.0 1.0
(lambda (s)
(set-canvas-painter! canvas (make-example-painter s)))))))