使用圆形选择工具选择笔画。
bpy.ops.gpencil.select_circle(radius=1.0, threshold=0.0, deselect=False, extend=True)
radius
:float,圆形选择工具的半径,默认值为1.0threshold
:float,选择笔画的灵敏度,默认值为0.0deselect
:bool,如果为True,则取消选择选择范围内的笔画,默认为Falseextend
:bool,如果为True,则扩大选择范围并选择附近的笔画,默认为True。{'FINISHED'}
:如果成功执行操作,则返回此状态# 导入Blender模块
import bpy
# 获取场景中的笔画
gpb = bpy.context.scene.grease_pencil
# 选择笔画
bpy.ops.gpencil.select_circle(radius=1.0, threshold=0.0, deselect=False, extend=True)