合并指定范围内距离相近的笔画。
# 合并距离相近的笔画(阈值为0.1),并清除无效路径
import bpy
threshold = 0.1
clean_paths = True
count = bpy.ops.gpencil.stroke_merge_by_distance(threshold=threshold, clean_paths=clean_paths)
print("合并的笔画数:", count)
请参考如何使用 Blender 的 Grease Pencil: 补充材料:Blender 中 aistudio 双飞翼动画项目的质量改进。