在Blender中,bpy.context.selected_ids
是一个包含当前选择对象的ID的元组(tuple)。
bpy.context.selected_ids
bpy.context.selected_ids
返回一个包含当前选择对象ID的元组(tuple)。
以下示例演示了如何使用bpy.context.selected_ids
来获取当前所选对象的ID。
import bpy
for obj_id in bpy.context.selected_ids:
obj = bpy.data.objects[obj_id]
print(obj.name)
上述代码遍历选中的每个对象并打印它们的名称。
bpy.context.selected_ids
只适用于ID类型的对象(例如,对象、材质、纹理、网格等)。