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
- Type:
int in [-inf, inf], default 0, (readonly)
- bake_mode
ANIMATION
Animation – Bake a frame range.STILL
Still – Bake a single frame.
- Type:
enum in [
'ANIMATION'
,'STILL'
], default"'ANIMATION'"
- bake_target
Where to store the baked data
INHERIT
Inherit from Modifier – Use setting from the modifier.PACKED
Packed – Pack the baked data into the .blend file.DISK
Disk – Store the baked data in a directory on disk.
- Type:
enum in [
'INHERIT'
,'PACKED'
,'DISK'
], default"'INHERIT'"
- data_blocks
- Type:
NodesModifierBakeDataBlocks
bpy_prop_collection
ofNodesModifierDataBlock
, (readonly)
- directory
Location on disk where the bake data is stored
- Type:
string, default “”, (never None, blend relative
//
prefix supported)
- frame_end
Frame where the baking ends
- Type:
int in [-inf, inf], default 0
- frame_start
Frame where the baking starts
- Type:
int in [-inf, inf], default 0
- 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.
- Type:
Node
, (readonly)
- use_custom_path
Specify a path where the baked data should be stored manually
- Type:
boolean, default False
- use_custom_simulation_frame_range
Override the simulation frame range from the scene
- Type:
boolean, default False
- 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