summaryrefslogtreecommitdiff
path: root/starling/node.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson@vistahigherlearning.com>2019-06-12 09:56:14 -0400
committerDavid Thompson <dthompson@vistahigherlearning.com>2019-06-12 09:56:14 -0400
commitd909f353075aa4c9ee661d356ef2f3c249449c5c (patch)
treeee80b4eb16804bb9fb3a130f59c27718d66bd137 /starling/node.scm
parent810a4a0538eb9e97be2254cf3b6573bc1cb306ba (diff)
Rename update*/render* to update-tree/render-tree.
Diffstat (limited to 'starling/node.scm')
-rw-r--r--starling/node.scm12
1 files changed, 6 insertions, 6 deletions
diff --git a/starling/node.scm b/starling/node.scm
index 73125da..d3dc129 100644
--- a/starling/node.scm
+++ b/starling/node.scm
@@ -41,9 +41,9 @@
show
hide
update
- update*
+ update-tree
render
- render*
+ render-tree
child-ref
&
attach-to
@@ -89,11 +89,11 @@
"Advance simulation of NODE by the time delta DT."
#t)
-(define-method (update* (node <node>) dt)
+(define-method (update-tree (node <node>) dt)
"Update NODE and all of its children. DT is the amount of time
passed since the last update, in milliseconds."
;; Update children first, recursively.
- (for-each-child (lambda (child) (update* child dt)) node)
+ (for-each-child (lambda (child) (update-tree child dt)) node)
;; Update script, then "physics" (or whatever the update method is
;; doing).
(with-agenda (agenda node)
@@ -105,13 +105,13 @@ passed since the last update, in milliseconds."
the next update represented as a ratio in the range [0, 1]."
#t)
-(define-method (render* (node <node>) alpha)
+(define-method (render-tree (node <node>) alpha)
"Render NODE and all of its children, recursively.
ALPHA is the distance between the previous update and the next update
represented as a ratio in the range [0, 1]."
(when (visible? node)
(render node alpha)
- (for-each-child (lambda (child) (render* child alpha)) node)))
+ (for-each-child (lambda (child) (render-tree child alpha)) node)))
(define-method (on-boot (node <node>))
"Perform initialization tasks for NODE."