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:
authorJulian Eisel <eiseljulian@gmail.com>2019-10-16 16:08:16 +0300
committerJulian Eisel <eiseljulian@gmail.com>2019-10-16 16:12:51 +0300
commit90c32d29577295546b5a75c7524924fd73565a6d (patch)
tree115f5ff2f90ecd6d8297f9c84c9a6f3023349ddc
parent17ae0409f87791f779c76fc0f41b3b0ea2a8fce3 (diff)
FBX IO: Bring back experimental hint for apply transform option
We shouldn't have removed this, the option only works in specific cases.
-rw-r--r--io_scene_fbx/__init__.py4
1 files changed, 2 insertions, 2 deletions
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)",