该函数用于将选定的笔画重置为默认的填充变换效果。
bpy.ops.gpencil.reset_transform_fill()
无
若操作成功,则返回 {'FINISHED'},否则返回 {'CANCELLED'}。
import bpy
# 获取笔刷和笔画对象
brush = bpy.data.brushes.get("Draw")
gpencil = bpy.context.selected_objects[0].data.layers.active.active_frame.grease_pencil
# 设置笔画的填充变换效果
bpy.ops.gpencil.layer_opacity(opacity=0.5)
# 重置笔画的填充变换效果
bpy.ops.gpencil.reset_transform_fill()