Browse Source

Fix bam2egg issue with animated models

09th 10 years ago
parent
commit
c0e4de3df7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/egg2pg/eggSaver.cxx

+ 1 - 1
panda/src/egg2pg/eggSaver.cxx

@@ -347,7 +347,7 @@ convert_character_bundle(PartGroup *bundleNode, EggGroupNode *egg_parent, Charac
     CharacterJoint *character_joint = DCAST(CharacterJoint, bundleNode);
 
     LMatrix4 transformf;
-    character_joint->get_net_transform(transformf);
+    character_joint->get_transform(transformf);
     LMatrix4d transformd(LCAST(double, transformf));
     EggGroup *joint = new EggGroup(bundleNode->get_name());
     joint->add_matrix4(transformd);