在Blender中,bpy.ops.clip.graph_disable_markers
用于禁用片段编辑器中的标记点。
bpy.ops.clip.graph_disable_markers()
该操作没有任何参数。
该操作没有任何返回值。
以下示例演示了如何使用bpy.ops.clip.graph_disable_markers
操作。
import bpy
# 获取当前的视频剪辑数据
clip = bpy.context.scene.sequence_editor.active_strip.clip
# 选择视频剪辑
bpy.context.scene.sequence_editor.active_strip = clip
# 禁用标记点
bpy.ops.clip.graph_disable_markers()
如果当前没有选择视频剪辑,则该操作将抛出异常RuntimeError
。