Tweak doc section about overriding context - point out context.copy() usage!
This commit is contained in:
@@ -10,9 +10,14 @@ The context overrides are passed as a dictionary, with keys matching the context
|
|||||||
member names in bpy.context.
|
member names in bpy.context.
|
||||||
For example to override ``bpy.context.active_object``,
|
For example to override ``bpy.context.active_object``,
|
||||||
you would pass ``{'active_object': object}``.
|
you would pass ``{'active_object': object}``.
|
||||||
|
|
||||||
|
.. note::
|
||||||
|
You will nearly always want to use a copy of the actual current context as basis
|
||||||
|
(otherwise, you'll have to find and gather all needed data yourself).
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# remove all objects in scene rather than the selected ones
|
# remove all objects in scene rather than the selected ones
|
||||||
import bpy
|
import bpy
|
||||||
override = {'selected_bases': list(bpy.context.scene.object_bases)}
|
override = bpy.context.copy()
|
||||||
|
override['selected_bases'] = list(bpy.context.scene.object_bases)
|
||||||
bpy.ops.object.delete(override)
|
bpy.ops.object.delete(override)
|
||||||
|
Reference in New Issue
Block a user