- small optimization in ragdoll deserialization
git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10373 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
parent
f29b7fadab
commit
a53071ca4d
@ -791,6 +791,7 @@ public class KinematicRagdollControl extends AbstractPhysicsControl implements P
|
||||
* @param rm
|
||||
* @param vp
|
||||
*/
|
||||
@Override
|
||||
public void render(RenderManager rm, ViewPort vp) {
|
||||
}
|
||||
|
||||
@ -809,6 +810,7 @@ public class KinematicRagdollControl extends AbstractPhysicsControl implements P
|
||||
* @param ex
|
||||
* @throws IOException
|
||||
*/
|
||||
@Override
|
||||
public void write(JmeExporter ex) throws IOException {
|
||||
super.write(ex);
|
||||
OutputCapsule oc = ex.getCapsule(this);
|
||||
@ -836,13 +838,12 @@ public class KinematicRagdollControl extends AbstractPhysicsControl implements P
|
||||
* @param im
|
||||
* @throws IOException
|
||||
*/
|
||||
@Override
|
||||
public void read(JmeImporter im) throws IOException {
|
||||
super.read(im);
|
||||
InputCapsule ic = im.getCapsule(this);
|
||||
String[] loadedBoneList = ic.readStringArray("boneList", new String[0]);
|
||||
for (String string : loadedBoneList) {
|
||||
boneList.add(string);
|
||||
}
|
||||
boneList.addAll(Arrays.asList(loadedBoneList));
|
||||
PhysicsBoneLink[] loadedBoneLinks = (PhysicsBoneLink[])ic.readSavableArray("boneList", new PhysicsBoneLink[0]);
|
||||
for (PhysicsBoneLink physicsBoneLink : loadedBoneLinks) {
|
||||
boneLinks.put(physicsBoneLink.bone.getName(), physicsBoneLink);
|
||||
|
Loading…
x
Reference in New Issue
Block a user