bpy.ops.clip.dopesheet_select_channel
函数用于选择指定编辑器剪辑下面的指定通道。
bpy.ops.clip.dopesheet_select_channel(channel=None, extend=False, column=False, deselect=False, show_expanded=False, include_children=False)
channel
(int or None):要选中的通道名(索引)。extend
(bool):如果为 True
,则扩展选择。column
(bool):如果为 True
,则按列进行选择。deselect
(bool):如果为 True
,则取消选择,否则为选择。show_expanded
(bool):如果为 True
,则 Action Editor
将扩展所有通道组。include_children
(bool):如果为 True
,则包括子通道。该函数不返回任何值。
import bpy
# 获取活动剪辑区
clip = bpy.context.area.spaces.active.clip
# 选择所有通道
bpy.ops.clip.dopesheet_select_channel(extend=False, column=False, deselect=False, show_expanded=True, include_children=True)
# 选择第一个通道
bpy.ops.clip.dopesheet_select_channel(channel=0, extend=False, column=False, deselect=False, show_expanded=False, include_children=False)
该函数不会引发任何异常。