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
path: root/doc
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2021-01-07 02:54:56 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2021-01-07 02:54:56 +0300
commita9c607e60ebfbb669694bda132af31734da9b709 (patch)
treea74e7bed0a09d6ea89969c38df4857cf46f8b27c /doc
parent133bdac306ae000f0409a2c593c53090f7137fd5 (diff)
PyAPI Docs: Fix wrong modifier path usage
Fixes T84430
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/rst/info_api_reference.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/python_api/rst/info_api_reference.rst b/doc/python_api/rst/info_api_reference.rst
index f62b81f43f2..0de977aaaa7 100644
--- a/doc/python_api/rst/info_api_reference.rst
+++ b/doc/python_api/rst/info_api_reference.rst
@@ -163,13 +163,13 @@ Now in the button's context menu select *Copy Data Path*, then paste the result
.. code-block:: python
- bpy.context.active_object.modifiers["Subsurf"].levels
+ bpy.context.active_object.modifiers["Subdivision"].levels
Press :kbd:`Return` and you'll get the current value of 1. Now try changing the value to 2:
.. code-block:: python
- bpy.context.active_object.modifiers["Subsurf"].levels = 2
+ bpy.context.active_object.modifiers["Subdivision"].levels = 2
You can see the value update in the Subdivision Surface modifier's UI as well as the cube.