Skip to content
Snippets Groups Projects
Commit 9524dbf6 authored by Bastien Montagne's avatar Bastien Montagne
Browse files

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...
parent 272b8093
Branches
Tags
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment