CompositorNodeTree(NodeTree)#
base classes — bpy_struct, ID, NodeTree
- class bpy.types.CompositorNodeTree(NodeTree)#
Node tree consisting of linked nodes used for compositing
- chunk_size#
Max size of a tile (smaller values gives better distribution of multiple threads, but more overhead)
3232×32 – Chunksize of 32×32.6464×64 – Chunksize of 64×64.128128×128 – Chunksize of 128×128.256256×256 – Chunksize of 256×256.512512×512 – Chunksize of 512×512.10241024×1024 – Chunksize of 1024×1024.
- Type:
enum in [‘32’, ‘64’, ‘128’, ‘256’, ‘512’, ‘1024’], default ‘32’
- edit_quality#
Quality when editing
HIGHHigh – High quality.MEDIUMMedium – Medium quality.LOWLow – Low quality.
- Type:
enum in [‘HIGH’, ‘MEDIUM’, ‘LOW’], default ‘HIGH’
- execution_mode#
Set how compositing is executed
TILEDTiled – Compositing is tiled, having as priority to display first tiles as fast as possible.FULL_FRAMEFull Frame – Composites full image result as fast as possible.REALTIMEGPU – Use GPU accelerated compositing with more limited functionality.
- Type:
enum in [‘TILED’, ‘FULL_FRAME’, ‘REALTIME’], default ‘TILED’
- precision#
The precision of compositor intermediate result
AUTOAuto – Full precision for final renders, half precision otherwise.FULLFull – Full precision.
- Type:
enum in [‘AUTO’, ‘FULL’], default ‘AUTO’
- render_quality#
Quality when rendering
HIGHHigh – High quality.MEDIUMMedium – Medium quality.LOWLow – Low quality.
- Type:
enum in [‘HIGH’, ‘MEDIUM’, ‘LOW’], default ‘HIGH’
- use_groupnode_buffer#
Enable buffering of group nodes
- Type:
boolean, default False
- use_opencl#
Enable GPU calculations
- Type:
boolean, default False
- use_two_pass#
Use two pass execution during editing: first calculate fast nodes, second pass calculate all nodes
- Type:
boolean, default False
- use_viewer_border#
Use boundaries for viewer nodes and composite backdrop
- Type:
boolean, default False
- classmethod bl_rna_get_subclass(id, default=None)#
- Parameters:
id (string) – The RNA type identifier.
- Returns:
The RNA type or default when not found.
- Return type:
bpy.types.Structsubclass
- classmethod bl_rna_get_subclass_py(id, default=None)#
- Parameters:
id (string) – The RNA type identifier.
- Returns:
The class or default when not found.
- Return type:
type
Inherited Properties
Inherited Functions