[Bf-extensions-cvs] [90c32d29] blender-v2.81-release: FBX IO: Bring back experimental hint for apply transform option

Julian Eisel noreply at git.blender.org
Wed Oct 16 15:13:04 CEST 2019


Commit: 90c32d29577295546b5a75c7524924fd73565a6d
Author: Julian Eisel
Date:   Wed Oct 16 15:08:16 2019 +0200
Branches: blender-v2.81-release
https://developer.blender.org/rBA90c32d29577295546b5a75c7524924fd73565a6d

FBX IO: Bring back experimental hint for apply transform option

We shouldn't have removed this, the option only works in specific cases.

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

M	io_scene_fbx/__init__.py

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

diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py
index 893c13d2..5211b845 100644
--- a/io_scene_fbx/__init__.py
+++ b/io_scene_fbx/__init__.py
@@ -95,7 +95,7 @@ class ImportFBX(bpy.types.Operator, ImportHelper):
             default=1.0,
             )
     bake_space_transform: BoolProperty(
-            name="Apply Transform",
+            name="!EXPERIMENTAL! Apply Transform",
             description="Bake space transform into object data, avoids getting unwanted rotations to objects when "
                         "target space is not aligned with Blender's space "
                         "(WARNING! experimental option, use at own risks, known broken with armatures/animations)",
@@ -425,7 +425,7 @@ class ExportFBX(bpy.types.Operator, ExportHelper):
                         "but many other applications do not handle the same way)",
             )
     bake_space_transform: BoolProperty(
-            name="Apply Transform",
+            name="!EXPERIMENTAL! Apply Transform",
             description="Bake space transform into object data, avoids getting unwanted rotations to objects when "
                         "target space is not aligned with Blender's space "
                         "(WARNING! experimental option, use at own risks, known broken with armatures/animations)",



More information about the Bf-extensions-cvs mailing list