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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/python_api/rst/info_quickstart.rst')
-rw-r--r--doc/python_api/rst/info_quickstart.rst6
1 files changed, 1 insertions, 5 deletions
diff --git a/doc/python_api/rst/info_quickstart.rst b/doc/python_api/rst/info_quickstart.rst
index 996169a5227..f4de6b955e5 100644
--- a/doc/python_api/rst/info_quickstart.rst
+++ b/doc/python_api/rst/info_quickstart.rst
@@ -230,11 +230,7 @@ though they may be changed by running API functions or by using the data API.
So ``bpy.context.active_object = obj`` will raise an error.
-But the following will work as expected:
-
- >>> obj = bpy.data.objects["Cube"]
- >>> obj.select_set(state = True, view_layer = bpy.context.view_layer)
- >>> bpy.context.view_layer.objects.active = obj
+But ``bpy.context.view_layer.objects.active = obj`` works as expected.
The context attributes change depending on where they are accessed.
The 3D Viewport has different context members than the Python Console,