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 'source/blender/python/api2_2x/doc/Object.py')
-rw-r--r--source/blender/python/api2_2x/doc/Object.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/source/blender/python/api2_2x/doc/Object.py b/source/blender/python/api2_2x/doc/Object.py
index 2cea8d90f75..29b6cd79200 100644
--- a/source/blender/python/api2_2x/doc/Object.py
+++ b/source/blender/python/api2_2x/doc/Object.py
@@ -526,13 +526,14 @@ class Object:
isn't modified, there's no need to recalculate this data. This method is
here for the *few cases* where a script may need it, like when toggling
the "SubSurf" mode for a mesh:
+
Example::
- object = Blender.Object.Get("Sphere")
- nmesh = object.getData()
- nmesh.setMode("SubSurf")
- nmesh.update() # don't forget to update!
- object.makeDisplayList()
- Blender.Window.RedrawAll() # and don't forget to redraw
+ object = Blender.Object.Get("Sphere")
+ nmesh = object.getData()
+ nmesh.setMode("SubSurf")
+ nmesh.update() # don't forget to update!
+ object.makeDisplayList()
+ Blender.Window.Redraw()
If you try this example without the line to update the display list, the
object will disappear from the screen until you press "SubSurf".