GeometryNodeTree(NodeTree)¶
base classes — bpy_struct, ID, NodeTree
- class bpy.types.GeometryNodeTree(NodeTree)¶
Node tree consisting of linked nodes used for geometries
- is_mode_edit¶
The node group is used in edit mode (default False)
- Type:
bool
- is_mode_object¶
The node group is used in object mode (default False)
- Type:
bool
- is_mode_paint¶
The node group is used in paint mode (default False)
- Type:
bool
- is_mode_sculpt¶
The node group is used in sculpt mode (default False)
- Type:
bool
- is_modifier¶
The node group is used as a geometry modifier (default False)
- Type:
bool
- is_tool¶
The node group is used as a tool (default False)
- Type:
bool
- is_type_curve¶
The node group is used for curves (default False)
- Type:
bool
- is_type_grease_pencil¶
The node group is used for Grease Pencil (default False)
- Type:
bool
- is_type_mesh¶
The node group is used for meshes (default False)
- Type:
bool
- is_type_pointcloud¶
The node group is used for point clouds (default False)
- Type:
bool
- node_tool_idname¶
Unique operator identifier for the node tool (default “”, never None)
- Type:
str
- show_modifier_manage_panel¶
Turn on the option to display the manage panel when creating a modifier (default True)
- Type:
bool
- use_wait_for_click¶
Wait for mouse click input before running the operator from a menu (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