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:
authorKen Hughes <khughes@pacific.edu>2008-08-07 00:05:08 +0400
committerKen Hughes <khughes@pacific.edu>2008-08-07 00:05:08 +0400
commit6688ab7ae45b894deec3d469099086ae7c51d35b (patch)
tree50698e1add8fc0007cdb5f33a68e020adb43c618 /source/blender
parent5539d57b1ad6c7a500b4c421c2f9990040dc7396 (diff)
Python API
---------- Fix typo in documentation for render.startFrame() and render.endFrame(). Arguments are valid in the range 1 to MAXFRAME.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/python/api2_2x/doc/Render.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/api2_2x/doc/Render.py b/source/blender/python/api2_2x/doc/Render.py
index d4dc83e84a0..df688893aa3 100644
--- a/source/blender/python/api2_2x/doc/Render.py
+++ b/source/blender/python/api2_2x/doc/Render.py
@@ -772,7 +772,7 @@ class RenderData:
"""
Get/set the starting frame for sequence rendering.
@type frame: int (optional)
- @param frame: must be between 1 - 18000
+ @param frame: must be a valid Blender frame number.
@rtype: int (if prototype is empty)
@return: Current starting frame for the scene.
"""
@@ -781,7 +781,7 @@ class RenderData:
"""
Get/set the ending frame for sequence rendering.
@type frame: int (optional)
- @param frame: must be between 1 - 18000
+ @param frame: must be a valid Blender frame number.
@rtype: int (if prototype is empty)
@return: Current ending frame for the scene.
"""