bpy.context.selected_sequences
bpy.context.selected_sequences
是用于访问当前选择的序列的Blender上下文属性。序列通常是图像、视频或音频剪辑片段。选中序列是在视频剪辑器或序列编辑器中选择序列的过程。
bpy.context.selected_sequences
bpy.context.selected_sequences
返回当前选择的序列列表。序列使用bpy.types.Sequence
对象表示,该对象具有许多属性和方法来管理它们。
以下示例演示如何使用bpy.context.selected_sequences
属性获取当前选择的序列列表并将其打印出来。
import bpy
selected_sequences = bpy.context.selected_sequences
for sequence in selected_sequences:
print(sequence.name)
请注意,bpy.context.selected_sequences
仅在你在视频剪辑器或序列编辑器中选择序列时才有值。如果没有选择序列,则该属性将返回一个空列表。