~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/blender/python/api2_2x/doc/Render.py

Tags: upstream-2.40
ImportĀ upstreamĀ versionĀ 2.40

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
"""
4
4
The Blender.Scene.Render submodule.
5
5
 
6
 
Scene
7
 
=====
 
6
Scene.Render
 
7
============
8
8
 
9
9
This module provides access to B{Scene Rendering Contexts} in Blender.
10
10
 
98
98
    Render a series of frames to an output directory.
99
99
    """
100
100
 
 
101
  def saveRenderedImage(filename):
 
102
    """
 
103
    Saves the image rendered using RenderData.render() to the filename and path
 
104
    given in the variable 'filename'
 
105
    @param filename: The path+filename for the rendered image.
 
106
    @type filename: string 
 
107
    @since: 2.40
 
108
    @requires: You must have an image currently rendered before calling this method
 
109
    """
 
110
 
101
111
  def play():
102
112
    """
103
113
    play animation of rendered images/avi (searches Pics: field).
104
114
    """
105
115
 
 
116
  def getTimeCode():
 
117
    """
 
118
    Get the current frame as a string in HH:MM:SS:FF format
 
119
    @rtype: string 
 
120
    @return: current frame as a string in HH:MM:SS:FF format
 
121
    """
 
122
 
106
123
  def setRenderPath(path):
107
124
    """
108
125
    Set the path to where the renderer will write to.