changeset 67:6f74d89fb8b3

got world working with updated jme system
author Robert McIntyre <rlm@mit.edu>
date Thu, 08 Dec 2011 20:58:40 -0600
parents 1381a6ebd08b
children 6cd5a034d855
files org/test.org org/world.org
diffstat 2 files changed, 3 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
     1.1 --- a/org/test.org	Wed Dec 07 12:16:48 2011 -0600
     1.2 +++ b/org/test.org	Thu Dec 08 20:58:40 2011 -0600
     1.3 @@ -67,9 +67,6 @@
     1.4       (.setPauseOnLostFocus false))))
     1.5  #+end_src
     1.6  
     1.7 -
     1.8 -
     1.9 -
    1.10  * COMMENT generate Source.
    1.11  #+begin_src clojure :tangle ../src/test/all.clj
    1.12  <<body-main>>
     2.1 --- a/org/world.org	Wed Dec 07 12:16:48 2011 -0600
     2.2 +++ b/org/world.org	Thu Dec 08 20:58:40 2011 -0600
     2.3 @@ -44,7 +44,7 @@
     2.4   - Separation of Object life-cycles with the Application life-cycle.
     2.5   - Functional interface to the underlying =Application= and
     2.6     =SimpleApplication= classes.
     2.7 -
     2.8 +   
     2.9  ** Header
    2.10  #+name: header
    2.11  #+begin_src clojure :results silent    
    2.12 @@ -281,6 +281,7 @@
    2.13    "
    2.14    [root-node key-map setup-fn update-fn]
    2.15    (let [physics-manager (BulletAppState.)]
    2.16 +    (JmeSystem/setSystemDelegate (AurellemSystemDelegate.))
    2.17      (doto
    2.18          (proxy [SimpleApplication ActionListener] []
    2.19            (simpleInitApp
    2.20 @@ -331,9 +332,9 @@
    2.21        (.setShowSettings false)
    2.22        ;; continue running simulation even if the window has lost
    2.23        ;; focus.
    2.24 -      (JmeSystem/setSystemDelegate (AurellemSystemDelegate.))
    2.25        (.setPauseOnLostFocus false)
    2.26        (.setSettings *app-settings*))))
    2.27 +
    2.28  #+end_src 
    2.29  
    2.30