Fix T41245: FBX import error.

You can't swich hidden objects to Edit mode... :/
This commit is contained in:
Bastien Montagne 2014-07-30 14:02:36 +02:00
parent 21a8a5824d
commit 2b27ba8d49
Notes: blender-bot 2023-02-14 20:05:20 +01:00
Referenced by issue #41245, FBX import error
1 changed files with 3 additions and 0 deletions

View File

@ -534,12 +534,15 @@ def blen_read_armatures(fbx_tmpl, armatures, fbx_bones_to_fake_object, scene, gl
# Switch to Edit mode.
scene.objects.active = bl_adata
is_hidden = bl_adata.hide
bl_adata.hide = False # Can't switch to Edit mode hidden objects...
bpy.ops.object.mode_set(mode='EDIT')
for b_uuid in bones:
blen_read_armatures_add_bone(bl_adata, bl_arm, bones, b_uuid, matrices, fbx_tmpl)
bpy.ops.object.mode_set(mode='OBJECT')
bl_adata.hide = is_hidden
# Bind armature to objects.
arm_mat_back = bl_adata.matrix_basis.copy()