blender中使用Lasso Tool根据滑鼠轨迹选择动作编辑器中的关键帧。
bpy.ops.actions.select_lasso(path_mode='ROOT', selection_mode='SET')
path_mode (string)
- 路径模式, 选择“ROOT”或“FULL” (默认为“ROOT”)selection_mode (string)
- 选择模式, 选择“SET”, “ADD”, “SUBTRACT”或“INTERSECT” (默认为“SET”)Lasso tool 可以用于按鼠标轨迹选择关键帧, 根据轨迹周围指定的区域.
{'FINISHED'}
- 操作成功完成import bpy
# Select all keyframes within the lasso
bpy.ops.actions.select_lasso()