NodesModifier(Modifier)

base classes — bpy_struct, Modifier

class bpy.types.NodesModifier(Modifier)
bake_directory

Location on disk where the bake data is stored

Type

string, default “”, (never None, blend relative // prefix supported)

bake_target

Where to store the baked data

  • PACKED Packed – Pack the baked data into the .blend file.

  • DISK Disk – Store the baked data in a directory on disk.

Type

enum in ['PACKED', 'DISK'], default "'PACKED'"

bakes
Type

NodesModifierBakes bpy_prop_collection of NodesModifierBake, (readonly)

node_group

Node group that controls what this modifier does

Type

NodeTree

node_warnings
Type

bpy_prop_collection of NodesModifierWarning, (readonly)

open_bake_data_blocks_panel
Type

boolean, default False

open_bake_panel
Type

boolean, default False

open_manage_panel
Type

boolean, default False

open_named_attributes_panel
Type

boolean, default False

open_output_attributes_panel
Type

boolean, default False

open_warnings_panel
Type

boolean, default False

panels
Type

NodesModifierPanels bpy_prop_collection of NodesModifierPanel, (readonly)

show_group_selector
Type

boolean, default False

bl_system_properties_get(*, do_create=False)

DEBUG ONLY. Internal access to runtime-defined RNA data storage, intended solely for testing and debugging purposes. Do not access it in regular scripting work, and in particular, do not assume that it contains writable data

Parameters

do_create (boolean, (optional)) – Ensure that system properties are created if they do not exist yet

Returns

The system properties root container, or None if there are no system properties stored in this data yet, and its creation was not requested

Return type

PropertyGroup

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

Inherited Properties

Inherited Functions