From ab7af1cd008cca599bd146ca497f38932e2ebd03 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Sat, 18 Apr 2015 11:41:04 +0200 Subject: 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. --- io_scene_fbx/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py index 461189c1..9b030569 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, ) -- cgit v1.2.3