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:
Diffstat (limited to 'pose_library/pose_creation.py')
-rw-r--r--pose_library/pose_creation.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pose_library/pose_creation.py b/pose_library/pose_creation.py
index 79efcae4..ac08b776 100644
--- a/pose_library/pose_creation.py
+++ b/pose_library/pose_creation.py
@@ -305,7 +305,7 @@ def create_pose_asset(
) -> Optional[Action]:
"""Create a single-frame Action containing only the pose of the given bones.
- DOES mark as asset, DOES NOT add asset metadata.
+ DOES mark as asset, DOES NOT configure asset metadata.
"""
creator = PoseActionCreator(params)
@@ -313,7 +313,7 @@ def create_pose_asset(
if pose_action is None:
return None
- functions.asset_mark(context, pose_action)
+ pose_action.asset_mark()
return pose_action