BlendGen
Generated modules

passes.base

Generated Python API reference for blendgen.passes.base.

blendgen.passes.base

Public symbols exposed by blendgen.passes.base.

ImageOutputType

Class source

class ImageOutputType(Enum)

An enum to change output file type of a given pass in a session @todo Add FFMPEG video and npy binary options to BlendGen

Values

PNG = 'PNG'
JPEG = 'JPEG'
TIFF = 'TIFF'
EXR = 'OPEN_EXR'

BaseRenderPass

Class source

class BaseRenderPass

No description is available yet.

Values

kind = None

BaseRenderPass.__init__

Method source

def __init__(self, prefix=None, output_type=None, display_transform=False)

No description is available yet.

BaseRenderPass.init

Method source

def init(self, scene, base_path, background)

No description is available yet.

BaseRenderPass.add_map_value

Method source

def add_map_value(self, minimum=0, maximum=255, size=0.08)

Add a clamped Map Value compositor operation.

BaseRenderPass.add_invert

Method source

def add_invert(self)

Add an image invert compositor operation.

BaseRenderPass.add_material_index_mask

Method source

def add_material_index_mask(self, index, color=None)

Add a material-index mask, optionally colored with RGB values.

BaseRenderPass.output

Method source

def output(self)

Create this pass's File Output node.

BaseRenderPass.connect_nodes

Method source

def connect_nodes(self, layer_input)

No description is available yet.

BaseRenderPass.create_pass

Method source

def create_pass(self, source_socket)

Build this pass from a backend-resolved compositor socket.

BaseRenderPass.render_path

Property source

def render_path(self)

No description is available yet.

BaseRenderPass.ops

Property source

def ops(self)

No description is available yet.

BaseRenderPass.linker

Property source

def linker(self)

No description is available yet.

BaseRenderPass.node_manager

Property source

def node_manager(self)

No description is available yet.

BaseRenderPass.prefix

Property source

def prefix(self)

No description is available yet.

BaseRenderPass.base_path

Property source

def base_path(self)

No description is available yet.

BaseRenderPass.output_type

Property source

def output_type(self)

No description is available yet.

BaseRenderPass.file_extension

Property source

def file_extension(self)

No description is available yet.

BaseRenderPass.type

Property source

def type(self)

No description is available yet.

BaseRenderPass.display_transform

Property source

def display_transform(self)

Whether non-EXR output should be converted to sRGB for display.

On this page