该操作用于切换 Grease Pencil 编辑模式和顶点模式之间的切换。当编辑模式下时,可以通过该操作在顶点模式和编辑模式之间切换,在顶点模式下时,可以使用该操作返回到编辑模式。
bpy.ops.gpencil.vertexmode_toggle(mode='VERTEX')
mode
(string) - 设置模式,可选值为 'VERTEX'
和 'EDIT'
,默认值为 'VERTEX'
。{'FINISHED'}
,表示操作已完成。如下所示,通过使用以下代码,可以在脚本中触发该操作:
import bpy
bpy.ops.gpencil.vertexmode_toggle(mode='EDIT')
上述脚本将使 Grease Pencil 进入编辑模式。
import bpy
bpy.ops.gpencil.vertexmode_toggle(mode='VERTEX')
上述脚本将切换 Grease Pencil 到顶点模式。
AttributeError
- 如果 Grease Pencil 模块未加载或版本不受支持,则将引发此错误。RuntimeError
- 如果在执行操作时发生错误,则将引发此错误。