在 Grease Pencil 图层列表中,复制选定的图层。
bpy.ops.gpencil.layer_duplicate()
该操作没有参数。
类型: {'FINISHED'}
此操作总是返回 {'FINISHED'},除非发生错误。
import bpy
# 获取首选项中 Grease Pencil 的名称
gpencil_data = bpy.context.preferences.addons['grease_pencil'].preferences
# 创建新笔触
bpy.ops.gpencil.layer_new()
# 获取选定的图层,并复制它
selected_layer = bpy.context.view_layer.active_layer
bpy.ops.gpencil.layer_duplicate()
# 重新命名副本图层
bpy.context.view_layer.active_layer.info = selected_layer.info + ' - 副本'