Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2017-09-14 14:16:14 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-09-14 14:17:22 +0300
commit75f36266df11a482dc5d00d1030bf263593480a8 (patch)
treef44ffece94a68d1202054d1fb122865ed40325d1 /release/scripts/modules
parent5ae63f03d926748028f52371383e6e239cd63ae7 (diff)
parent09c6c6c486f153a9c9ac7b76bcb010f1354074bc (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'release/scripts/modules')
-rw-r--r--release/scripts/modules/bpy_extras/anim_utils.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/modules/bpy_extras/anim_utils.py b/release/scripts/modules/bpy_extras/anim_utils.py
index f2df1bc16b3..ea0bd77c0f0 100644
--- a/release/scripts/modules/bpy_extras/anim_utils.py
+++ b/release/scripts/modules/bpy_extras/anim_utils.py
@@ -33,7 +33,7 @@ def bake_action(
obj,
*,
action, frames,
- **kwargs,
+ **kwargs
):
"""
:arg obj: Object to bake.
@@ -62,7 +62,7 @@ def bake_action_objects(
object_action_pairs,
*,
frames,
- **kwargs,
+ **kwargs
):
"""
A version of :func:`bake_action_objects_iter` that takes frames and returns the output.
@@ -82,7 +82,7 @@ def bake_action_objects(
def bake_action_objects_iter(
object_action_pairs,
- **kwargs,
+ **kwargs
):
"""
An coroutine that bakes actions for multiple objects.
@@ -122,7 +122,7 @@ def bake_action_iter(
do_visual_keying=True,
do_constraint_clear=False,
do_parents_clear=False,
- do_clean=False,
+ do_clean=False
):
"""
An coroutine that bakes action for a single object.