NodesModifier(Modifier)¶
base classes — bpy_struct, Modifier
- class bpy.types.NodesModifier(Modifier)¶
- bake_directory¶
Location on disk where the bake data is stored (default “”, never None, blend relative
//prefix supported)- Type:
str
- bake_target¶
Where to store the baked data (default
'PACKED')PACKEDPacked – Pack the baked data into the .blend file.DISKDisk – Store the baked data in a directory on disk.
- Type:
Literal[‘PACKED’, ‘DISK’]
- bakes¶
All potential bakes, as defined by the assigned Geometry Nodes (default None, readonly)
- node_warnings¶
(default None, readonly)
- open_bake_data_blocks_panel¶
(default False)
- Type:
bool
- open_bake_panel¶
(default False)
- Type:
bool
- open_manage_panel¶
(default False)
- Type:
bool
- open_named_attributes_panel¶
(default False)
- Type:
bool
- open_output_attributes_panel¶
(default False)
- Type:
bool
- open_warnings_panel¶
(default False)
- Type:
bool
- panels¶
(default None, readonly)
- properties¶
(readonly)
- Type:
NodesModifierProperties| None
- show_group_selector¶
(default False)
- Type:
bool
- show_manage_panel¶
(default False)
- Type:
bool
- is_input_visible(identifier)¶
Check whether an input is currently visible based on modifier settings.
- Parameters:
identifier (str) – The identifier of the input (never None)
- Returns:
Result
- Return type:
bool
- is_input_used(identifier)¶
Check whether an input is currently used based on modifier settings.
- Parameters:
identifier (str) – The identifier of the input (never None)
- Returns:
Result
- Return 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