bpy.context.editable_gpencil_strokes是一个可读写的GPencilStroke集合,其中包含当前正在编辑的Grease Pencil笔画。
bpy.context.editable_gpencil_strokes
bpy.context.editable_gpencil_strokes返回了一个GPencilStroke集合,包含了当前正在编辑的Grease Pencil笔画。返回的类型是<class 'bpy_prop_collection'>。
# 遍历所有可编辑的Grease Pencil笔画
for stroke in bpy.context.editable_gpencil_strokes:
print(stroke.name)
Grease Pencil(GPencil)是Blender中的一个2D绘图工具,可用于视频制作、动画制作、概念设计等多个领域。
该函数是Blender Python API中的一部分,Blender Python API 提供了访问 Blender 内部数据和操作的功能,使你能够编写脚本自动完成很多事情。
bpy,是Blender Python API的核心模块,提供了访问Blender内部数据和操作的功能。