清除所有选定的跟踪路径。
bpy.ops.clip.clear_track_path()
该命令没有参数。
该命令的返回值为:
import bpy
# 选中视频剪辑编辑器中的片段
bpy.context.scene.sequence_editor.sequences_all[0].select = True
# 获取选中的片段
clip = bpy.context.scene.sequence_editor.active_strip
# 获取跟踪路径列表
track_paths = clip.tracking.tracks
# 清除所有跟踪路径
bpy.ops.clip.clear_track_path()