设置当前手绘笔画笔的起点。
location
(Vector) – 笔画起点的坐标。thickness
(float) – 笔画的宽度。{'FINISHED'}
import bpy
# 获取当前工作的笔画
current_stroke = bpy.context.active_gpencil_layer.active_frame.strokes.active
# 设置起点为 (0, 0, 0),宽度为 1
bpy.ops.gpencil.stroke_start_set(location=(0, 0, 0), thickness=1)