Update "Overriding Context" API example

This commit is contained in:
Dalai Felinto 2019-05-24 19:21:30 -03:00
parent 7d44184c85
commit caf52e3779
1 changed files with 1 additions and 1 deletions

View File

@ -20,5 +20,5 @@ you would pass ``{'active_object': object}``.
# remove all objects in scene rather than the selected ones
import bpy
override = bpy.context.copy()
override['selected_bases'] = list(bpy.context.scene.object_bases)
override['selected_objects'] = list(bpy.context.scene.objects)
bpy.ops.object.delete(override)