Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'io_scene_fbx/export_fbx_bin.py')
-rw-r--r--io_scene_fbx/export_fbx_bin.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/io_scene_fbx/export_fbx_bin.py b/io_scene_fbx/export_fbx_bin.py
index b852adaa..d1ba96bb 100644
--- a/io_scene_fbx/export_fbx_bin.py
+++ b/io_scene_fbx/export_fbx_bin.py
@@ -1686,7 +1686,9 @@ def fbx_data_object_elements(root, ob_obj, scene_data):
# Custom properties.
if scene_data.settings.use_custom_props:
- fbx_data_element_custom_properties(props, ob_obj.bdata)
+ # Here we want customprops from the 'pose' bone, not the 'edit' bone...
+ bdata = ob_obj.bdata_pose_bone if ob_obj.is_bone else ob_obj.bdata
+ fbx_data_element_custom_properties(props, bdata)
# Those settings would obviously need to be edited in a complete version of the exporter, may depends on
# object type, etc.