From ef271a096602637755544beb9db94cf20a8a9966 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 18 Oct 2021 14:01:15 -0400 Subject: node: Advance agenda by timestep. --- starling/node.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/starling/node.scm b/starling/node.scm index cbb1027..0872c19 100644 --- a/starling/node.scm +++ b/starling/node.scm @@ -220,7 +220,7 @@ (for-each-child (lambda (child) (update-tree child dt)) node) ;; Scripts take precedence over the update method. (with-agenda (agenda node) - (update-agenda 1) + (update-agenda dt) (update node dt)))) (define-method (render (node ) alpha) -- cgit v1.2.3