Trees | Indices | Help |
---|
|
The Blender.Scene.Render submodule.
This module provides access to Scene Rendering Contexts in Blender.
Example:
import Blender from Blender import * from Blender.Scene import Render scn = Scene.GetCurrent() context = scn.getRenderingContext() Render.EnableDispWin() context.extensions = True context.renderPath = "//myRenderdir/" context.sizePreset(Render.PC) context.imageType = Render.AVIRAW context.sFrame = 2 context.eFrame = 10 context.renderAnim() context.imageType = Render.TARGA context.fps = 15 context.sFrame = 15 context.eFrame = 22 context.renderAnim() Render.CloseRenderWindow() print context.fps print context.cFrame
|
|||
RenderData This object gives access to Scene rendering contexts in Blender. |
|
|||
|
|||
|
|||
|
|||
|
|
|||
AVICODEC Output format. |
|||
AVIJPEG Output format. |
|||
AVIRAW Output format. |
|||
BEST Yafray GI Quality. |
|||
BMP Output format. |
|||
B_PR_FULL Output format. |
|||
readonly dictionary |
BakeModes Constant dict used for with RenderData.bakeMode attribute. |
||
readonly dictionary |
BakeNormalSpaceModes Constant dict used for with RenderData.bakeNormalSpace attribute. |
||
CINEON Output format. |
|||
DEFAULT Output format. |
|||
DPX Output format. |
|||
FFMPEG Output format. |
|||
FTYPE Output format. |
|||
readonly dictionary |
FramingModes Constant dict used for with RenderData.gameFrame attribute. |
||
GIFULL Yafray GI Method. |
|||
HAMX Output format. |
|||
HDR Output format. |
|||
HIGH Yafray GI Quality. |
|||
HIGHER Yafray GI Quality. |
|||
INTERNAL The internal rendering engine. |
|||
IRIS Output format. |
|||
IRISZ Output format. |
|||
JPEG Output format. |
|||
LOW Yafray GI Quality. |
|||
MEDIUM Yafray GI Quality. |
|||
MULTILAYER Output format. |
|||
readonly dictionary |
Modes Constant dict used for with RenderData.mode bitfield attribute. |
||
NONE Yafray GI Quality / Method. |
|||
NTSC Output format. |
|||
OPENEXR Output format. |
|||
PAL Output format. |
|||
PAL169 Output format. |
|||
PC Output format. |
|||
PNG Output format. |
|||
PREVIEW Output format. |
|||
QUICKTIME Output format. |
|||
RAWTGA Output format. |
|||
SKYDOME Yafray GI Method. |
|||
readonly dictionary |
SceModes Constant dict used for with RenderData.sceneMode bitfield attribute. |
||
TARGA Output format. |
|||
TIFF Output format. |
|||
USEAOSETTINGS Yafray GI Quality. |
|||
YAFRAY Yafray rendering engine. |
|||
__package__ = None
|
|
Render in the 3d View area. Note this method is deprecated; use the l{displayMode} attribute instead. |
Render in Render window. Note this method is deprecated; use the l{displayMode} attribute instead. |
Set the position of the Render window on the screen. Possible values are:
|
|
AVICODECOutput format. Use with renderdata.imageType / setImageType() |
AVIJPEGOutput format. Use with renderdata.imageType / setImageType() |
AVIRAWOutput format. Use with renderdata.imageType / setImageType() |
BESTYafray GI Quality. Use with renderdata.setYafrayGIQuality() |
BMPOutput format. Use with renderdata.imageType / setImageType() |
B_PR_FULLOutput format. Use with renderdata.sizePreset() |
BakeModesConstant dict used for with RenderData.bakeMode attribute. One of the following modes can be active:
|
BakeNormalSpaceModesConstant dict used for with RenderData.bakeNormalSpace attribute. One of the following modes can be active:
|
CINEONOutput format. Use with renderdata.imageType / setImageType() |
DEFAULTOutput format. Use with renderdata.sizePreset() |
DPXOutput format. Use with renderdata.imageType / setImageType() |
FFMPEGOutput format. Use with renderdata.imageType / setImageType() |
FTYPEOutput format. Use with renderdata.imageType / setImageType() |
FramingModesConstant dict used for with RenderData.gameFrame attribute. One of the following modes can be active:
|
GIFULLYafray GI Method. Use with renderdata.setYafrayGIMethod() |
HAMXOutput format. Use with renderdata.imageType / setImageType() |
HDROutput format. Use with renderdata.imageType / setImageType() |
HIGHYafray GI Quality. Use with renderdata.setYafrayGIQuality() |
HIGHERYafray GI Quality. Use with renderdata.setYafrayGIQuality() |
INTERNALThe internal rendering engine. Use with setRenderer() |
IRISOutput format. Use with renderdata.imageType / setImageType() |
IRISZOutput format. Use with renderdata.imageType / setImageType() |
JPEGOutput format. Use with renderdata.imageType / setImageType() |
LOWYafray GI Quality. Use with renderdata.setYafrayGIQuality() |
MEDIUMYafray GI Quality. Use with renderdata.setYafrayGIQuality() |
MULTILAYEROutput format. Use with renderdata.imageType / setImageType() |
ModesConstant dict used for with RenderData.mode bitfield attribute. Values can be ORed together. Individual bits can also be set/cleared with boolean attributes.
|
NONEYafray GI Quality / Method. Use with renderdata.setYafrayGIQuality() |
NTSCOutput format. Use with renderdata.sizePreset() |
OPENEXROutput format. Use with renderdata.imageType / setImageType() |
PALOutput format. Use with renderdata.sizePreset() |
PAL169Output format. Use with renderdata.sizePreset() |
PCOutput format. Use with renderdata.sizePreset() |
PNGOutput format. Use with renderdata.imageType / setImageType() |
PREVIEWOutput format. Use with renderdata.sizePreset() |
QUICKTIMEOutput format. Use with renderdata.imageType / setImageType() |
RAWTGAOutput format. Use with renderdata.imageType / setImageType() |
SKYDOMEYafray GI Method. Use with renderdata.setYafrayGIMethod() |
SceModesConstant dict used for with RenderData.sceneMode bitfield attribute. Values can be ORed together. Individual bits can also be set/cleared with boolean attributes.
|
TARGAOutput format. Use with renderdata.imageType / setImageType() |
TIFFOutput format. Use with renderdata.imageType / setImageType() |
USEAOSETTINGSYafray GI Quality. Use with renderdata.setYafrayGIQuality() |
YAFRAYYafray rendering engine. Use with setRenderer() |
Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Fri Oct 24 10:23:51 2008 | http://epydoc.sourceforge.net |