Class representing a render pass, i.e. the pass of a specific layer
rendered through a specific camera. In other words, a RenderPass instance is bound to a specific RenderLayer instance, and consequently, by definition of
the RenderLayer class, to a specific RenderCamera instance.
|
|
RenderLayer
|
|
RenderCamera
|
|
Scene
|
|
str
|
getName(self)
Returns:
The render pass display name, as a unicode string. |
|
|
str
|
getAnchor(self)
Returns:
The render pass anchor, as a unicode string. |
|
|
int
|
getVersion(self)
Returns:
The version number of the render pass, as an integer. |
|
|
str
|
getDescription(self)
Returns:
The render pass description, possibly empty, as a unicode string. |
|
|
str
|
getNote(self)
Returns:
A note about the render pass, possibly empty, as a unicode string. |
|
|
str
|
getFileSequencePath(self)
Returns:
The absolute path (unicode) of the file sequence for this render
pass. |
|
|
str
|
|
bool
|
isSingleFrame(self)
Returns:
A bool indicating whether the render of this pass is a
single file that doesn't have a frame index in its name. |
|
|
tuple
|
getFrameRange(self)
Returns:
A tuple specifying the start and end frames of the
rendered file sequence for this pass, as integers (taking frame
renumbering into account if applicable). |
|
|
int
|
getFrameIndexPadding(self)
Returns:
An integer specifying the frame index padding used in file names
rendered from this pass. |
|
|
bool
|
isFileSequenceMultiChannel(self)
Returns:
A bool indicating whether the rendered files for this
pass contain multiple channels (other than the standard RGBA
channels). |
|
|
str
|
getFileChannelViewName(self)
Returns:
The name of the channel view in which the render pass channels are
stored, when rendered to a multi-channel file, as a unicode string. |
|
|
int
|
getRenderWidth(self)
Returns:
The render resolution width used for this pass, as an integer. |
|
|
int
|
getRenderHeight(self)
Returns:
The render resolution height used for this pass, as an integer. |
|
|
float
|
|
int
|
getRenderNbChannels(self)
Returns:
The number of channels in the rendered images, as an integer. |
|
|
int
|
getRenderDepth(self)
Returns:
The bit depth of the rendered images, as an integer. |
|
|
bool
|
|
tuple
|
|
bool
|
isSelectedForImport(self)
Returns:
A bool indicating whether this render pass should be
imported by default. |
|
|
Inherited from PrecompObject :
getAppId ,
getPrecompModule ,
invokePrecompMethod
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|