RenderResult(bpy_struct)#
base class — bpy_struct
- class bpy.types.RenderResult(bpy_struct)#
Result of rendering, including all layers and passes
- layers#
- Type:
bpy_prop_collection
ofRenderLayer
, (readonly)
- resolution_x#
- Type:
int in [-inf, inf], default 0, (readonly)
- resolution_y#
- Type:
int in [-inf, inf], default 0, (readonly)
- views#
- Type:
bpy_prop_collection
ofRenderView
, (readonly)
- load_from_file(filepath)#
Copies the pixels of this render result from an image file
- Parameters:
filepath (string, (never None)) – File Name, Filename to load into this render tile, must be no smaller than the render result
- stamp_data_add_field(field, value)#
Add engine-specific stamp data to the result
- Parameters:
field (string, (never None)) – Field, Name of the stamp field to add
value (string, (never None)) – Value, Value of the stamp data
- classmethod bl_rna_get_subclass(id, default=None)#
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The RNA type or default when not found.
- Return type:
bpy.types.Struct
subclass
- classmethod bl_rna_get_subclass_py(id, default=None)#
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The class or default when not found.
- Return type:
type