PyAPI Docs: Fix wrong modifier path usage

Fixes T84430
This commit is contained in:
Aaron Carlisle 2021-01-06 18:54:56 -05:00
parent 133bdac306
commit a9c607e60e
1 changed files with 2 additions and 2 deletions

View File

@ -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.