将剪辑中的约束转换为fcurve。
将剪辑中的速度/位置约束和旋转约束转换为 fcurve.这将会生成新的 fcurve 类型对象,每个对象都可以用于进一步编辑约束。
bpy.ops.clip.constraint_to_fcurve()
无
{'FINISHED'}
表示操作成功完成。无
import bpy
# 首先必须选择一个对象
clip = bpy.context.scene.sequence_editor.active_strip
constraint = None
if clip.type == 'SOUND':
constraint = clip.sound_contraints[0]
elif clip.type == 'MOVIE':
constraint = clip.track.camera_contraint
if constraint:
bpy.context.scene.frame_set(constraint.frame_begin)
bpy.ops.clip.constraint_to_fcurve()
无
无