Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bpy.types.Context.temp_override.2.py « examples « python_api « doc - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ce3e1594baa97d40b6734b28cd6adc68f4320d0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
Overriding the context can be useful to set the context after loading files
(which would otherwise by None). For example:
"""

import bpy
from bpy import context

# Reload the current file and select all.
bpy.ops.wm.open_mainfile(filepath=bpy.data.filepath)
window = context.window_manager.windows[0]
with context.temp_override(window=window):
    bpy.ops.mesh.primitive_uv_sphere_add()
    # The context override is needed so it's possible to set edit-mode.
    bpy.ops.object.mode_set(mode='EDIT')