# HG changeset patch # User Robert McIntyre # Date 1323399520 21600 # Node ID 6f74d89fb8b3651219ba18fca565320312c6f100 # Parent 1381a6ebd08b3dd3a34f6f83cc74413e47a8e000 got world working with updated jme system diff -r 1381a6ebd08b -r 6f74d89fb8b3 org/test.org --- a/org/test.org Wed Dec 07 12:16:48 2011 -0600 +++ b/org/test.org Thu Dec 08 20:58:40 2011 -0600 @@ -67,9 +67,6 @@ (.setPauseOnLostFocus false)))) #+end_src - - - * COMMENT generate Source. #+begin_src clojure :tangle ../src/test/all.clj <> diff -r 1381a6ebd08b -r 6f74d89fb8b3 org/world.org --- a/org/world.org Wed Dec 07 12:16:48 2011 -0600 +++ b/org/world.org Thu Dec 08 20:58:40 2011 -0600 @@ -44,7 +44,7 @@ - Separation of Object life-cycles with the Application life-cycle. - Functional interface to the underlying =Application= and =SimpleApplication= classes. - + ** Header #+name: header #+begin_src clojure :results silent @@ -281,6 +281,7 @@ " [root-node key-map setup-fn update-fn] (let [physics-manager (BulletAppState.)] + (JmeSystem/setSystemDelegate (AurellemSystemDelegate.)) (doto (proxy [SimpleApplication ActionListener] [] (simpleInitApp @@ -331,9 +332,9 @@ (.setShowSettings false) ;; continue running simulation even if the window has lost ;; focus. - (JmeSystem/setSystemDelegate (AurellemSystemDelegate.)) (.setPauseOnLostFocus false) (.setSettings *app-settings*)))) + #+end_src