根据当前选择的片段,选择与之相连且在时间轴上相邻的所有片段。
bpy.ops.clip.select_grouped(type='TYPE', extend=False)
type
(string, 可选) – 选择类型,作用于选择过程。默认值为 'TYPE'
。extend
(boolean, 可选) – 如果为真则保留已有的选择,并将新选择添加到它们和持久选择中。否则清除当前选择。默认值为 False
。{"FINISHED"}
:操作成功完成。选择所有与当前片段相邻的片段:
import bpy
# Get the clip editor area
area = next(area for area in bpy.context.screen.areas if area.type == 'CLIP_EDITOR')
# Set the area as active
bpy.context.screen.area = area
bpy.ops.clip.select_grouped()