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:
authorPhilipp Oeser <info@graphics-engineer.com>2021-11-19 14:19:51 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2021-11-22 16:09:13 +0300
commit162cba016c8c11bcebea4d8d3cf80da9faf4ce76 (patch)
treee6ce8798a869c4ffb0646974c9eec5512939cc00 /io_scene_fbx/__init__.py
parent13ecbb8fee64fe3c262c6f904a2bd21ea2ca2070 (diff)
Fix T93209: FBX export error if there is an action in NLA tweakmode
Code tried to set the action to None, but in this case, the action is read-only. If we find such a case, now set tweakmode to False temporarily and restore after actions have been processed. Maniphest Tasks: T93209 Differential Revision: https://developer.blender.org/D13286
Diffstat (limited to 'io_scene_fbx/__init__.py')
-rw-r--r--io_scene_fbx/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py
index 07a7b62d..5a2b7997 100644
--- a/io_scene_fbx/__init__.py
+++ b/io_scene_fbx/__init__.py
@@ -21,7 +21,7 @@
bl_info = {
"name": "FBX format",
"author": "Campbell Barton, Bastien Montagne, Jens Restemeier",
- "version": (4, 26, 0),
+ "version": (4, 27, 0),
"blender": (2, 90, 0),
"location": "File > Import-Export",
"description": "FBX IO meshes, UV's, vertex colors, materials, textures, cameras, lamps and actions",