# HG changeset patch # User Robert McIntyre # Date 1327233238 25200 # Node ID b591da250afc6a5771b785a92adf1fa7cbcbaa66 # Parent 05e60a0ed0437e2f6b972a92d4df1fe58fee9458 fixed bug in test code. diff -r 05e60a0ed043 -r b591da250afc assets/Models/creature1/try-again.blend Binary file assets/Models/creature1/try-again.blend has changed diff -r 05e60a0ed043 -r b591da250afc org/test-creature.org --- a/org/test-creature.org Sat Jan 21 09:55:59 2012 -0700 +++ b/org/test-creature.org Sun Jan 22 04:53:58 2012 -0700 @@ -872,7 +872,7 @@ (fn [world] (light-up-everything world) (enable-debug world) - (map #(% world) init-vision-fns) + (dorun (map #(% world) init-vision-fns)) (add-eye world (attach-eye creature (test-eye)) diff -r 05e60a0ed043 -r b591da250afc org/util.org --- a/org/util.org Sat Jan 21 09:55:59 2012 -0700 +++ b/org/util.org Sun Jan 22 04:53:58 2012 -0700 @@ -135,9 +135,9 @@ "Increase the dismally slow speed of the world's camera." [world] (.setMoveSpeed (.getFlyByCamera world) - (float 100)) + (float 60)) (.setRotationSpeed (.getFlyByCamera world) - (float 20)) + (float 3)) world)