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/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2007-01-27 07:58:09 +0300
committerCampbell Barton <ideasman42@gmail.com>2007-01-27 07:58:09 +0300
commit8f075f9518c8173523e3726b436fa02de6fea994 (patch)
treea32c7b56c76132e2ecc4a84bac8913bd8d1ef4e0 /source
parent853785782e5fea7805b05ce834a661271fd24358 (diff)
minor tweaks from testing scripts. correction in my last commit.
Diffstat (limited to 'source')
-rw-r--r--source/blender/python/api2_2x/doc/Camera.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/doc/Camera.py b/source/blender/python/api2_2x/doc/Camera.py
index 9f384a797bc..01dc4525d59 100644
--- a/source/blender/python/api2_2x/doc/Camera.py
+++ b/source/blender/python/api2_2x/doc/Camera.py
@@ -17,7 +17,7 @@ Example::
cam.scale = 6.0 # set scale value for ortho view
scn = Scene.GetCurrent() # get current scene
ob = scn.objects.new(cam) # add a new camera object from the data
- cur.setCurrentCamera(ob) # make this camera the active
+ scn.setCurrentCamera(ob) # make this camera the active
"""
def New (type = 'persp', name = 'CamData'):