[Bf-extensions-cvs] [ab7af1c] master: FBX IO: More visible warning that 'apply transform' is experimental!

Bastien Montagne noreply at git.blender.org
Sat Apr 18 11:42:16 CEST 2015


Commit: ab7af1cd008cca599bd146ca497f38932e2ebd03
Author: Bastien Montagne
Date:   Sat Apr 18 11:41:04 2015 +0200
Branches: master
https://developer.blender.org/rBAab7af1cd008cca599bd146ca497f38932e2ebd03

FBX IO: More visible warning that 'apply transform' is experimental!

People do not read tooltips it seems...

Would not mind a big red flashing message even, but fear UI mafia would not be happy.

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

M	io_scene_fbx/__init__.py

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

diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py
index 461189c..9b03056 100644
--- a/io_scene_fbx/__init__.py
+++ b/io_scene_fbx/__init__.py
@@ -85,10 +85,10 @@ class ImportFBX(bpy.types.Operator, ImportHelper, IOFBXOrientationHelper):
             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, might give odd/wrong results)",
+                        "(WARNING! experimental option, use at own risks, known broken with armatures/animations)",
             default=False,
             )
 
@@ -238,10 +238,10 @@ class ExportFBX(bpy.types.Operator, ExportHelper, IOFBXOrientationHelper):
             )
     # 7.4 only
     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, might give odd/wrong results)",
+                        "(WARNING! experimental option, use at own risks, known broken with armatures/animations)",
             default=False,
             )



More information about the Bf-extensions-cvs mailing list