[Bf-extensions-cvs] [9524dbf] master: Fix T40719: FBX exporting armature but changing the bone name.

Bastien Montagne noreply at git.blender.org
Thu Jul 17 15:16:58 CEST 2014


Commit: 9524dbf65b33539ee2a5e30f62e9839cd3d162df
Author: Bastien Montagne
Date:   Thu Jul 17 15:07:49 2014 +0200
https://developer.blender.org/rBA9524dbf65b33539ee2a5e30f62e9839cd3d162df

Fix T40719: FBX exporting armature but changing the bone name.

Not sure exactly why this is such an issue, but remove armature name prepend for bone names...

===================================================================

M	io_scene_fbx/fbx_utils.py

===================================================================

diff --git a/io_scene_fbx/fbx_utils.py b/io_scene_fbx/fbx_utils.py
index d8fcf7a..32b5bbb 100644
--- a/io_scene_fbx/fbx_utils.py
+++ b/io_scene_fbx/fbx_utils.py
@@ -834,7 +834,7 @@ class ObjectWrapper(metaclass=MetaObjectWrapper):
             if isinstance(bdata, PoseBone):
                 bdata = armature.data.bones[bdata.name]
             self._tag = 'BO'
-            self.name = get_blenderID_name((armature, bdata))
+            self.name = get_blenderID_name(bdata)
             self.bdata = bdata
             self._ref = armature



More information about the Bf-extensions-cvs mailing list