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:
authorCampbell Barton <ideasman42@gmail.com>2017-09-14 10:03:40 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-09-14 10:04:41 +0300
commitbd1f946413293665622ae01ada65f83a22273137 (patch)
tree5a075e42666e849da137d4561cd75195af42a105 /release
parent892d304dedb60891d9e0b3091eceecb163644215 (diff)
Recent action-bake used Py3.6 syntax
Diffstat (limited to 'release')
-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.