preset
: 希望设置为笔刷曲线的预设曲线名称, type .blend
。remove_unused
: 如果该参数被设置为True, 那么将删除bpy.data.sculpt.concat_brushes中未使用的笔刷预设。 默认值为False,type boolean。{'FINISHED'}
:操作成功完成。设置笔刷曲线为预设曲线。
import bpy
# set the brush curve to the "Crease" preset curve
bpy.ops.brush.curve_preset(preset="Crease")
# set the brush curve to the "Smooth" preset curve and remove unused brush presets
bpy.ops.brush.curve_preset(preset="Smooth", remove_unused=True)