NodesModifierBake(bpy_struct)¶
base class — bpy_struct
- class bpy.types.NodesModifierBake(bpy_struct)¶
- bake_id¶
Identifier for this bake which remains unchanged even when the bake node is renamed, grouped or ungrouped (in [-inf, inf], default 0, readonly)
- Type:
int
- bake_mode¶
(default
'ANIMATION')ANIMATIONAnimation – Bake a frame range.STILLStill – Bake a single frame.
- Type:
Literal[‘ANIMATION’, ‘STILL’]
- bake_target¶
Where to store the baked data (default
'INHERIT')INHERITInherit from Modifier – Use setting from the modifier.PACKEDPacked – Pack the baked data into the .blend file.DISKDisk – Store the baked data in a directory on disk.
- Type:
Literal[‘INHERIT’, ‘PACKED’, ‘DISK’]
- data_blocks¶
(default None, readonly)
- directory¶
Location on disk where the bake data is stored (default “”, never None, blend relative
//prefix supported)- Type:
str
- frame_end¶
Frame where the baking ends (in [-inf, inf], default 0)
- Type:
int
- frame_start¶
Frame where the baking starts (in [-inf, inf], default 0)
- Type:
int
- node¶
Bake node or simulation output node that corresponds to this bake. This node may be deeply nested in the modifier node group. It can be none in some cases like missing linked data blocks. (readonly)
- Type:
- use_custom_path¶
Specify a path where the baked data should be stored manually (default False)
- Type:
bool
- use_custom_simulation_frame_range¶
Override the simulation frame range from the scene (default False)
- Type:
bool
- classmethod bl_rna_get_subclass(id, default=None, /)¶
- Parameters:
id (str) – The RNA type identifier.
default (
bpy.types.Struct| None) – The value to return when not found.
- Returns:
The RNA type or default when not found.
- Return type:
- classmethod bl_rna_get_subclass_py(id, default=None, /)¶
- Parameters:
id (str) – The RNA type identifier.
default (type | None) – The value to return when not found.
- Returns:
The class or default when not found.
- Return type:
type