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:
authorBastien Montagne <montagne29@wanadoo.fr>2015-07-15 22:37:41 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-07-15 22:37:41 +0300
commitb7567791a19f85b6886ab3bc933f9c2e1ed7333f (patch)
treea21a8a2c131bdd317dad5ecc3c1f763440342f89 /io_scene_fbx/__init__.py
parent3d0f53c1d65f3a55d108f25b1ee8f391ef323910 (diff)
FBX export: add option to not key first/last frames of an exported action.
User request (see T45438).
Diffstat (limited to 'io_scene_fbx/__init__.py')
-rw-r--r--io_scene_fbx/__init__.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py
index da4a4233..7c752458 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": (3, 4, 7),
+ "version": (3, 4, 8),
"blender": (2, 74, 0),
"location": "File > Import-Export",
"description": "FBX IO meshes, UV's, vertex colors, materials, textures, cameras, lamps and actions",
@@ -373,6 +373,11 @@ class ExportFBX(bpy.types.Operator, ExportHelper, IOFBXOrientationHelper):
"others will get no animation at all)",
default=True,
)
+ bake_anim_force_startend_keying = BoolProperty(
+ name="Force Start/End Keying",
+ description="Always add a keyframe at start and end of actions for animated channels",
+ default=True,
+ )
bake_anim_step = FloatProperty(
name="Sampling Rate",
description="How often to evaluate animated values (in frames)",
@@ -475,6 +480,7 @@ class ExportFBX(bpy.types.Operator, ExportHelper, IOFBXOrientationHelper):
col.prop(self, "bake_anim_use_all_bones")
col.prop(self, "bake_anim_use_nla_strips")
col.prop(self, "bake_anim_use_all_actions")
+ col.prop(self, "bake_anim_force_startend_keying")
col.prop(self, "bake_anim_step")
col.prop(self, "bake_anim_simplify_factor")
else: