diff options
Diffstat (limited to 'examples/09-ghoulspree.lisp')
-rw-r--r-- | examples/09-ghoulspree.lisp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/09-ghoulspree.lisp b/examples/09-ghoulspree.lisp index cf18e31..b3c0106 100644 --- a/examples/09-ghoulspree.lisp +++ b/examples/09-ghoulspree.lisp @@ -80,7 +80,7 @@ on which boundary VAL is outside of." ;; first handle collisions (when (collision-on-p app) (with-pairs - (g1 g2) (ww:container-units app) + (g1 g2) (ww::application-scene app) (when (ww:units-intersect-p g1 g2) (handle-collision g1 g2 1.0) ;; need a "bounce" @@ -93,7 +93,7 @@ on which boundary VAL is outside of." (gravity-on-p app)) (accelleration (/ 9.8 (ww:fps app)))) - (loop for ghoul in (ww:container-units app) + (loop for ghoul in (ww::application-scene app) do (advance-pos ghoul) when gravity do (apply-gravity-to ghoul accelleration) @@ -111,9 +111,9 @@ on which boundary VAL is outside of." (loop repeat (ghouls-per-click app) for rx = (random 800); (+ x (* (random-sign) (random-between 30 60))) for ry = (random 600); (+ y (* (random-sign) (random-between 30 60))) - do (ww:add-unit app (make-ghoul rx ry))) + do (ww:add-unit (make-ghoul rx ry))) (format t "~a ghouls on screen~%" - (length (ww:container-units app ))))) + (length (ww::application-scene app ))))) (ww:defhandler toggle-collision |