移动指定的草图图层
bpy.ops.gpencil.layer_move(type='UP', confirm=True)
'UP'
或'DOWN'
import bpy
# 获取当前激活的草图对象
gpb = bpy.context.active_gpencil
# 获取当前选中的草图图层
layer = gpb.layers.active
# 移动选中的图层向上
bpy.ops.gpencil.layer_move(type='UP', confirm=False)
# 移动选中的图层向下
bpy.ops.gpencil.layer_move(type='DOWN', confirm=False)
False
。