根据圆形选择指定范围内的帧或关键帧。
选择要进行圆形选择的关键帧或帧范围,然后按下Shift键并拖拽鼠标以绘制圆形范围。在释放鼠标之前,可以通过按住Ctrl键来扩大或缩小圆形范围。
radius
:圆形的半径。x
:圆形的中心点的X坐标。y
:圆形的中心点的Y坐标。wait_for_input
:如果为True,操作将等待用户在视图窗口中完成绘制圆形范围的操作。{'FINISHED'}
:成功执行操作。import bpy
# 选择一个帧范围
bpy.context.scene.frame_start = 10
bpy.context.scene.frame_end = 50
# 选择一个动作
action = bpy.context.object.animation_data.action
# 根据圆形范围选择关键帧
bpy.ops.actions.select_circle(action=action, radius=10, x=0, y=0)
RuntimeError
:如果发生错误。