Blender Git Loki
Git Commits -> Revision b54cef3
Revision b54cef3 by Sybren A. Stüvel (asset-browser, asset-browser-poselib, asset-system-filelist, temp-pose-flipping-fix-attempt) March 15, 2021, 16:02 (GMT) |
Pose library: add simple blending of pose Action onto current pose Naieve blending of the pose Action onto the current pose. This performs linear blending (LERP) per FCurve. This is not suitable for rotations, so it's probably better to do proper matrix interpolation for loc/rot/scale. However, for other properties, the current LERP will be necessary anyway. |
Commit Details:
Full Hash: b54cef37fee72af278cefb9f1e2e387fd7751f0c
Parent Commit: e62016a
Lines Changed: +114, -4
5 Modified Paths:
/source/blender/blenkernel/BKE_animsys.h (+7, -0) (Diff)
/source/blender/blenkernel/BKE_armature.h (+5, -0) (Diff)
/source/blender/blenkernel/intern/anim_sys.c (+65, -0) (Diff)
/source/blender/blenkernel/intern/armature_pose.cc (+36, -2) (Diff)
/source/blender/editors/armature/pose_lib_2.c (+1, -2) (Diff)
/source/blender/blenkernel/BKE_armature.h (+5, -0) (Diff)
/source/blender/blenkernel/intern/anim_sys.c (+65, -0) (Diff)
/source/blender/blenkernel/intern/armature_pose.cc (+36, -2) (Diff)
/source/blender/editors/armature/pose_lib_2.c (+1, -2) (Diff)