bpy.context.selectable_objects
是Blender中的一个全局变量,用于访问当前可选择的对象列表。
bpy.context.selectable_objects
bpy.context.selectable_objects
返回一个列表,包含当前可选择的所有对象。这些对象包括:
以下示例将遍历当前场景中的所有可选择对象,并将它们的名称打印到控制台:
import bpy
for obj in bpy.context.selectable_objects:
print(obj.name)
当使用bpy.context.selected_objects
访问当前选择的对象列表时,只返回同时在bpy.context.selectable_objects
列表中的对象。因此,如果要访问隐藏或已禁用选择的对象,请改用bpy.data.objects
或bpy.data.meshes
等其他数据来源。