From c5efd0b06e6008c5aedd37a847a84e4b08eaa76e Mon Sep 17 00:00:00 2001 From: "nor..67" Date: Mon, 11 Apr 2011 21:35:23 +0000 Subject: [PATCH] - move ragdoll classes to separate package git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@7231 75d07b2b-3a1a-0410-a2c5-0572b91ccdca --- engine/src/jbullet/com/jme3/bullet/control/RagdollControl.java | 2 ++ .../bullet/control/{ => ragdoll}/HumanoidRagdollPreset.java | 2 +- .../com/jme3/bullet/control/{ => ragdoll}/RagdollPreset.java | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) rename engine/src/jbullet/com/jme3/bullet/control/{ => ragdoll}/HumanoidRagdollPreset.java (98%) rename engine/src/jbullet/com/jme3/bullet/control/{ => ragdoll}/RagdollPreset.java (98%) diff --git a/engine/src/jbullet/com/jme3/bullet/control/RagdollControl.java b/engine/src/jbullet/com/jme3/bullet/control/RagdollControl.java index 3c755eedc..48018a7dc 100644 --- a/engine/src/jbullet/com/jme3/bullet/control/RagdollControl.java +++ b/engine/src/jbullet/com/jme3/bullet/control/RagdollControl.java @@ -1,5 +1,7 @@ package com.jme3.bullet.control; +import com.jme3.bullet.control.ragdoll.RagdollPreset; +import com.jme3.bullet.control.ragdoll.HumanoidRagdollPreset; import com.jme3.animation.AnimControl; import com.jme3.animation.Bone; import com.jme3.animation.Skeleton; diff --git a/engine/src/jbullet/com/jme3/bullet/control/HumanoidRagdollPreset.java b/engine/src/jbullet/com/jme3/bullet/control/ragdoll/HumanoidRagdollPreset.java similarity index 98% rename from engine/src/jbullet/com/jme3/bullet/control/HumanoidRagdollPreset.java rename to engine/src/jbullet/com/jme3/bullet/control/ragdoll/HumanoidRagdollPreset.java index c3455760c..24e8b90b5 100644 --- a/engine/src/jbullet/com/jme3/bullet/control/HumanoidRagdollPreset.java +++ b/engine/src/jbullet/com/jme3/bullet/control/ragdoll/HumanoidRagdollPreset.java @@ -2,7 +2,7 @@ * To change this template, choose Tools | Templates * and open the template in the editor. */ -package com.jme3.bullet.control; +package com.jme3.bullet.control.ragdoll; import com.jme3.math.FastMath; diff --git a/engine/src/jbullet/com/jme3/bullet/control/RagdollPreset.java b/engine/src/jbullet/com/jme3/bullet/control/ragdoll/RagdollPreset.java similarity index 98% rename from engine/src/jbullet/com/jme3/bullet/control/RagdollPreset.java rename to engine/src/jbullet/com/jme3/bullet/control/ragdoll/RagdollPreset.java index 415b719fa..ad332ac1b 100644 --- a/engine/src/jbullet/com/jme3/bullet/control/RagdollPreset.java +++ b/engine/src/jbullet/com/jme3/bullet/control/ragdoll/RagdollPreset.java @@ -2,7 +2,7 @@ * To change this template, choose Tools | Templates * and open the template in the editor. */ -package com.jme3.bullet.control; +package com.jme3.bullet.control.ragdoll; import com.jme3.bullet.joints.SixDofJoint; import java.util.HashMap;