Преглед на файлове

A very small change that creates two getters in VehicleWheel,,
these are necessary if jme's bullet wrapper is used in a non Scenegraph enviroment,
for example a ES based server.

Signed-off-by: Kai Börnert <[email protected]>

Kai Börnert преди 10 години
родител
ревизия
409f5ab766
променени са 1 файла, в които са добавени 18 реда и са изтрити 0 реда
  1. 18 0
      jme3-bullet/src/main/java/com/jme3/bullet/objects/VehicleWheel.java

+ 18 - 0
jme3-bullet/src/main/java/com/jme3/bullet/objects/VehicleWheel.java

@@ -420,4 +420,22 @@ public class VehicleWheel implements Savable {
         this.applyLocal = applyLocal;
     }
 
+    /**
+    * write the content of the wheelWorldRotation into the store
+    * 
+    * @param store
+    */
+    public void getWheelWorldRotation(final Quaternion store) {
+        store.set(this.wheelWorldRotation);
+    }
+
+    /**
+    * write the content of the wheelWorldLocation into the store
+    * 
+    * @param store
+    */
+    public void getWheelWorldLocation(final Vector3f store) {
+        store.set(this.wheelWorldLocation);
+    }
+
 }