从当前活动集合中移除选定对象。
bpy.ops.collection.objects_remove_active()
该函数没有参数。
{'FINISHED'}
:成功移除选定对象。import bpy
# 选择当前场景中第一个对象
obj = bpy.context.scene.objects[0]
# 将对象添加到活动集合中
bpy.ops.object.select_all(action="DESELECT")
obj.select_set(True)
bpy.context.view_layer.objects.active = obj
bpy.ops.collection.objects_add_active()
# 从活动集合中移除选定对象
bpy.ops.collection.objects_remove_active()