changeset 122:b591da250afc

fixed bug in test code.
author Robert McIntyre <rlm@mit.edu>
date Sun, 22 Jan 2012 04:53:58 -0700
parents 05e60a0ed043
children 91773e8ec50f
files assets/Models/creature1/try-again.blend org/test-creature.org org/util.org
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
     1.1 Binary file assets/Models/creature1/try-again.blend has changed
     2.1 --- a/org/test-creature.org	Sat Jan 21 09:55:59 2012 -0700
     2.2 +++ b/org/test-creature.org	Sun Jan 22 04:53:58 2012 -0700
     2.3 @@ -872,7 +872,7 @@
     2.4     (fn [world]
     2.5       (light-up-everything world)
     2.6       (enable-debug world)
     2.7 -     (map #(% world) init-vision-fns)
     2.8 +     (dorun (map #(% world) init-vision-fns))
     2.9       
    2.10       (add-eye world
    2.11                (attach-eye creature (test-eye))
     3.1 --- a/org/util.org	Sat Jan 21 09:55:59 2012 -0700
     3.2 +++ b/org/util.org	Sun Jan 22 04:53:58 2012 -0700
     3.3 @@ -135,9 +135,9 @@
     3.4    "Increase the dismally slow speed of the world's camera."
     3.5    [world]
     3.6    (.setMoveSpeed (.getFlyByCamera world)
     3.7 -                 (float 100))
     3.8 +                 (float 60))
     3.9    (.setRotationSpeed (.getFlyByCamera world)
    3.10 -                     (float 20))
    3.11 +                     (float 3))
    3.12    world)
    3.13  
    3.14