made change also for jbullet

Signed-off-by: Kai Börnert <kai-boernert@visiongamestudios.de>
This commit is contained in:
Kai Börnert 2015-03-01 07:05:44 +01:00
parent 409f5ab766
commit d40de2629d

View File

@ -399,4 +399,23 @@ public class VehicleWheel implements Savable {
public void setApplyLocal(boolean applyLocal) { public void setApplyLocal(boolean applyLocal) {
this.applyLocal = applyLocal; 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);
}
} }