fake-bpy-module 20250612__py3-none-any.whl → 20260118__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_calltip/__init__.pyi +0 -13
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_import/__init__.pyi +0 -5
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_namespace/__init__.pyi +0 -11
- {bl_console_utils → _bl_console_utils}/autocomplete/intellisense/__init__.pyi +0 -10
- {bl_i18n_utils → _bl_i18n_utils}/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/bl_extract_messages/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/settings/__init__.pyi +3 -1
- {bl_i18n_utils → _bl_i18n_utils}/utils/__init__.pyi +4 -4
- _bl_i18n_utils/utils_spell_check/__init__.pyi +22 -0
- {bl_ui_utils → _bl_ui_utils}/__init__.pyi +1 -0
- _blendfile_header/__init__.pyi +48 -0
- _bpy_internal/__init__.pyi +4 -1
- _bpy_internal/assets/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/blender_asset_library_openapi/__init__.pyi +13 -0
- _bpy_internal/disk_file_hash_service/__init__.pyi +19 -0
- _bpy_internal/disk_file_hash_service/backend_sqlite/__init__.pyi +48 -0
- _bpy_internal/disk_file_hash_service/hash_service/__init__.pyi +64 -0
- _bpy_internal/disk_file_hash_service/types/__init__.pyi +53 -0
- _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
- _bpy_internal/filesystem/__init__.pyi +5 -0
- _bpy_internal/filesystem/locking/__init__.pyi +28 -0
- _bpy_internal/grease_pencil/stroke/__init__.pyi +2 -2
- _bpy_internal/platform/__init__.pyi +5 -0
- _bpy_types/__init__.pyi +1592 -0
- {keyingsets_utils → _keyingsets_utils}/__init__.pyi +2 -0
- {rna_info → _rna_info}/__init__.pyi +4 -2
- addon_utils/__init__.pyi +0 -13
- aud/__init__.pyi +122 -145
- bl_app_templates_system/Storyboarding/__init__.pyi +11 -0
- bl_app_templates_system/__init__.pyi +5 -0
- bl_app_templates_system/py.typed +0 -0
- bl_math/__init__.pyi +3 -13
- bl_operators/__init__.pyi +1 -0
- bl_operators/add_mesh_torus/__init__.pyi +2 -3
- bl_operators/anim/__init__.pyi +62 -38
- bl_operators/assets/__init__.pyi +4 -9
- bl_operators/bone_selection_sets/__init__.pyi +15 -42
- bl_operators/clip/__init__.pyi +12 -31
- bl_operators/connect_to_output/__init__.pyi +2 -3
- bl_operators/console/__init__.pyi +6 -15
- bl_operators/constraint/__init__.pyi +6 -13
- bl_operators/copy_global_transform/__init__.pyi +261 -0
- bl_operators/file/__init__.pyi +6 -11
- bl_operators/freestyle/__init__.pyi +5 -12
- bl_operators/geometry_nodes/__init__.pyi +5 -12
- bl_operators/grease_pencil/__init__.pyi +2 -3
- bl_operators/image/__init__.pyi +6 -15
- bl_operators/image_as_planes/__init__.pyi +3 -10
- bl_operators/mesh/__init__.pyi +3 -49
- bl_operators/node/__init__.pyi +294 -73
- bl_operators/object/__init__.pyi +17 -53
- bl_operators/object_align/__init__.pyi +2 -3
- bl_operators/object_quick_effects/__init__.pyi +5 -12
- bl_operators/object_randomize_transform/__init__.pyi +2 -3
- bl_operators/presets/__init__.pyi +27 -76
- bl_operators/rigidbody/__init__.pyi +4 -9
- bl_operators/screen_play_rendered_anim/__init__.pyi +2 -3
- bl_operators/sequencer/__init__.pyi +12 -27
- bl_operators/spreadsheet/__init__.pyi +2 -3
- bl_operators/userpref/__init__.pyi +26 -75
- bl_operators/uvcalc_follow_active/__init__.pyi +3 -4
- bl_operators/uvcalc_lightmap/__init__.pyi +3 -4
- bl_operators/uvcalc_transform/__init__.pyi +26 -16
- bl_operators/vertexpaint_dirt/__init__.pyi +2 -3
- bl_operators/view3d/__init__.pyi +9 -24
- bl_operators/wm/__init__.pyi +48 -139
- bl_operators/world/__init__.pyi +3 -4
- bl_ui/__init__.pyi +7 -7
- bl_ui/anim/__init__.pyi +2 -3
- bl_ui/asset_shelf/__init__.pyi +2 -3
- bl_ui/generic_ui_list/__init__.pyi +4 -19
- bl_ui/node_add_menu/__init__.pyi +263 -7
- bl_ui/node_add_menu_compositor/__init__.pyi +96 -79
- bl_ui/node_add_menu_geometry/__init__.pyi +309 -270
- bl_ui/node_add_menu_shader/__init__.pyi +49 -49
- bl_ui/node_add_menu_texture/__init__.pyi +17 -62
- bl_ui/properties_collection/__init__.pyi +9 -22
- bl_ui/properties_constraint/__init__.pyi +129 -282
- bl_ui/properties_data_armature/__init__.pyi +22 -57
- bl_ui/properties_data_bone/__init__.pyi +12 -31
- bl_ui/properties_data_camera/__init__.pyi +18 -47
- bl_ui/properties_data_curve/__init__.pyi +18 -47
- bl_ui/properties_data_curves/__init__.pyi +11 -26
- bl_ui/properties_data_empty/__init__.pyi +3 -6
- bl_ui/properties_data_grease_pencil/__init__.pyi +23 -62
- bl_ui/properties_data_lattice/__init__.pyi +7 -14
- bl_ui/properties_data_light/__init__.pyi +13 -32
- bl_ui/properties_data_lightprobe/__init__.pyi +16 -43
- bl_ui/properties_data_mesh/__init__.pyi +47 -62
- bl_ui/properties_data_metaball/__init__.pyi +9 -20
- bl_ui/properties_data_modifier/__init__.pyi +22 -28
- bl_ui/properties_data_pointcloud/__init__.pyi +8 -19
- bl_ui/properties_data_shaderfx/__init__.pyi +2 -3
- bl_ui/properties_data_speaker/__init__.pyi +9 -20
- bl_ui/properties_data_volume/__init__.pyi +12 -29
- bl_ui/properties_freestyle/__init__.pyi +27 -76
- bl_ui/properties_grease_pencil_common/__init__.pyi +10 -168
- bl_ui/properties_mask_common/__init__.pyi +8 -21
- bl_ui/properties_material/__init__.pyi +26 -86
- bl_ui/properties_material_gpencil/__init__.pyi +36 -57
- bl_ui/properties_object/__init__.pyi +59 -65
- bl_ui/properties_output/__init__.pyi +21 -60
- bl_ui/properties_paint_common/__init__.pyi +30 -22
- bl_ui/properties_particle/__init__.pyi +58 -161
- bl_ui/properties_physics_cloth/__init__.pyi +15 -42
- bl_ui/properties_physics_common/__init__.pyi +2 -3
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +23 -66
- bl_ui/properties_physics_field/__init__.pyi +11 -30
- bl_ui/properties_physics_fluid/__init__.pyi +29 -84
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +2 -3
- bl_ui/properties_physics_rigidbody/__init__.pyi +9 -24
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +14 -39
- bl_ui/properties_physics_softbody/__init__.pyi +16 -45
- bl_ui/properties_render/__init__.pyi +139 -197
- bl_ui/properties_scene/__init__.pyi +46 -50
- bl_ui/properties_strip/__init__.pyi +744 -0
- bl_ui/properties_strip_modifier/__init__.pyi +45 -0
- bl_ui/properties_texture/__init__.pyi +30 -83
- bl_ui/properties_view_layer/__init__.pyi +84 -39
- bl_ui/properties_workspace/__init__.pyi +6 -13
- bl_ui/properties_world/__init__.pyi +14 -35
- bl_ui/space_clip/__init__.pyi +150 -231
- bl_ui/space_console/__init__.pyi +7 -18
- bl_ui/space_dopesheet/__init__.pyi +143 -100
- bl_ui/space_filebrowser/__init__.pyi +33 -90
- bl_ui/space_graph/__init__.pyi +48 -85
- bl_ui/space_image/__init__.pyi +111 -229
- bl_ui/space_info/__init__.pyi +7 -18
- bl_ui/space_nla/__init__.pyi +44 -73
- bl_ui/space_node/__init__.pyi +161 -123
- bl_ui/space_outliner/__init__.pyi +16 -45
- bl_ui/space_properties/__init__.pyi +34 -10
- bl_ui/space_sequencer/__init__.pyi +164 -901
- bl_ui/space_spreadsheet/__init__.pyi +4 -9
- bl_ui/space_statusbar/__init__.pyi +2 -3
- bl_ui/space_text/__init__.pyi +17 -48
- bl_ui/space_time/__init__.pyi +25 -71
- bl_ui/space_toolsystem_common/__init__.pyi +2 -2
- bl_ui/space_toolsystem_toolbar/__init__.pyi +30 -7
- bl_ui/space_topbar/__init__.pyi +35 -79
- bl_ui/space_userpref/__init__.pyi +185 -321
- bl_ui/space_view3d/__init__.pyi +337 -817
- bl_ui/space_view3d_sidebar/__init__.pyi +127 -0
- bl_ui/space_view3d_toolbar/__init__.pyi +110 -880
- bl_ui/utils/__init__.pyi +0 -17
- blend_render_info/__init__.pyi +1 -0
- blf/__init__.pyi +8 -54
- bmesh/__init__.pyi +2 -9
- bmesh/geometry/__init__.pyi +1 -4
- bmesh/ops/__init__.pyi +125 -508
- bmesh/types/__init__.pyi +318 -664
- bmesh/utils/__init__.pyi +17 -43
- bpy/__init__.pyi +1 -1
- bpy/app/__init__.pyi +93 -88
- bpy/app/handlers/__init__.pyi +19 -19
- bpy/app/icons/__init__.pyi +0 -6
- bpy/app/timers/__init__.pyi +2 -7
- bpy/app/translations/__init__.pyi +8 -23
- bpy/msgbus/__init__.pyi +4 -6
- bpy/ops/action/__init__.pyi +68 -199
- bpy/ops/anim/__init__.pyi +142 -299
- bpy/ops/armature/__init__.pyi +78 -209
- bpy/ops/asset/__init__.pyi +46 -108
- bpy/ops/boid/__init__.pyi +28 -45
- bpy/ops/brush/__init__.pyi +13 -108
- bpy/ops/buttons/__init__.pyi +16 -75
- bpy/ops/cachefile/__init__.pyi +8 -65
- bpy/ops/camera/__init__.pyi +0 -11
- bpy/ops/clip/__init__.pyi +173 -471
- bpy/ops/cloth/__init__.pyi +0 -5
- bpy/ops/collection/__init__.pyi +23 -36
- bpy/ops/console/__init__.pyi +40 -98
- bpy/ops/constraint/__init__.pyi +14 -85
- bpy/ops/curve/__init__.pyi +94 -277
- bpy/ops/curves/__init__.pyi +119 -166
- bpy/ops/cycles/__init__.pyi +4 -15
- bpy/ops/dpaint/__init__.pyi +14 -24
- bpy/ops/ed/__init__.pyi +44 -92
- bpy/ops/export_anim/__init__.pyi +2 -10
- bpy/ops/export_scene/__init__.pyi +16 -170
- bpy/ops/extensions/__init__.pyi +60 -165
- bpy/ops/file/__init__.pyi +110 -246
- bpy/ops/fluid/__init__.pyi +52 -83
- bpy/ops/font/__init__.pyi +40 -144
- bpy/ops/geometry/__init__.pyi +12 -127
- bpy/ops/gizmogroup/__init__.pyi +4 -13
- bpy/ops/gpencil/__init__.pyi +22 -54
- bpy/ops/graph/__init__.pyi +92 -343
- bpy/ops/grease_pencil/__init__.pyi +218 -550
- bpy/ops/image/__init__.pyi +85 -435
- bpy/ops/import_anim/__init__.pyi +3 -17
- bpy/ops/import_curve/__init__.pyi +2 -5
- bpy/ops/import_scene/__init__.pyi +15 -49
- bpy/ops/info/__init__.pyi +16 -39
- bpy/ops/lattice/__init__.pyi +12 -36
- bpy/ops/marker/__init__.pyi +12 -51
- bpy/ops/mask/__init__.pyi +68 -193
- bpy/ops/material/__init__.pyi +18 -18
- bpy/ops/mball/__init__.pyi +4 -31
- bpy/ops/mesh/__init__.pyi +140 -967
- bpy/ops/nla/__init__.pyi +87 -206
- bpy/ops/node/__init__.pyi +714 -744
- bpy/ops/object/__init__.pyi +461 -1341
- bpy/ops/outliner/__init__.pyi +192 -376
- bpy/ops/paint/__init__.pyi +94 -319
- bpy/ops/paintcurve/__init__.pyi +20 -40
- bpy/ops/palette/__init__.pyi +14 -30
- bpy/ops/particle/__init__.pyi +86 -184
- bpy/ops/pointcloud/__init__.pyi +12 -38
- bpy/ops/pose/__init__.pyi +108 -261
- bpy/ops/poselib/__init__.pyi +32 -67
- bpy/ops/preferences/__init__.pyi +37 -187
- bpy/ops/ptcache/__init__.pyi +22 -36
- bpy/ops/render/__init__.pyi +20 -72
- bpy/ops/rigidbody/__init__.pyi +25 -63
- bpy/ops/scene/__init__.pyi +122 -181
- bpy/ops/screen/__init__.pyi +93 -221
- bpy/ops/script/__init__.pyi +4 -13
- bpy/ops/sculpt/__init__.pyi +69 -324
- bpy/ops/sculpt_curves/__init__.pyi +10 -23
- bpy/ops/sequencer/__init__.pyi +410 -730
- bpy/ops/sound/__init__.pyi +16 -114
- bpy/ops/spreadsheet/__init__.pyi +20 -37
- bpy/ops/surface/__init__.pyi +0 -48
- bpy/ops/text/__init__.pyi +112 -250
- bpy/ops/text_editor/__init__.pyi +0 -5
- bpy/ops/texture/__init__.pyi +14 -21
- bpy/ops/transform/__init__.pyi +18 -386
- bpy/ops/ui/__init__.pyi +117 -188
- bpy/ops/uilist/__init__.pyi +0 -13
- bpy/ops/uv/__init__.pyi +238 -305
- bpy/ops/view2d/__init__.pyi +16 -76
- bpy/ops/view3d/__init__.pyi +153 -377
- bpy/ops/wm/__init__.pyi +277 -1397
- bpy/ops/workspace/__init__.pyi +32 -39
- bpy/ops/world/__init__.pyi +10 -12
- bpy/path/__init__.pyi +1 -35
- bpy/props/__init__.pyi +347 -218
- bpy/stub_internal/rna_enums/__init__.pyi +142 -108
- bpy/types/__init__.pyi +77367 -101305
- bpy/utils/__init__.pyi +11 -82
- bpy/utils/previews/__init__.pyi +2 -11
- bpy/utils/units/__init__.pyi +5 -15
- bpy_extras/anim_utils/__init__.pyi +24 -16
- bpy_extras/bmesh_utils/__init__.pyi +0 -1
- bpy_extras/id_map_utils/__init__.pyi +14 -6
- bpy_extras/image_utils/__init__.pyi +2 -11
- bpy_extras/io_utils/__init__.pyi +8 -27
- bpy_extras/keyconfig_utils/__init__.pyi +1 -1
- bpy_extras/mesh_utils/__init__.pyi +0 -12
- bpy_extras/node_shader_utils/__init__.pyi +1 -9
- bpy_extras/object_utils/__init__.pyi +1 -15
- bpy_extras/view3d_utils/__init__.pyi +0 -18
- bpy_extras/wm_utils/progress_report/__init__.pyi +1 -1
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/METADATA +4 -1
- fake_bpy_module-20260118.dist-info/RECORD +385 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/top_level.txt +17 -16
- freestyle/chainingiterators/__init__.pyi +5 -27
- freestyle/functions/__init__.pyi +0 -139
- freestyle/predicates/__init__.pyi +2 -53
- freestyle/shaders/__init__.pyi +15 -81
- freestyle/types/__init__.pyi +159 -799
- freestyle/utils/ContextFunctions/__init__.pyi +0 -23
- freestyle/utils/__init__.pyi +5 -11
- gpu/capabilities/__init__.pyi +0 -21
- gpu/matrix/__init__.pyi +1 -10
- gpu/platform/__init__.pyi +2 -7
- gpu/shader/__init__.pyi +26 -9
- gpu/state/__init__.pyi +60 -39
- gpu/texture/__init__.pyi +3 -5
- gpu/types/__init__.pyi +116 -184
- gpu_extras/batch/__init__.pyi +1 -5
- gpu_extras/presets/__init__.pyi +6 -8
- idprop/types/__init__.pyi +6 -6
- imbuf/__init__.pyi +3 -10
- imbuf/types/__init__.pyi +7 -21
- keyingsets_builtins/__init__.pyi +24 -67
- mathutils/__init__.pyi +241 -2207
- mathutils/bvhtree/__init__.pyi +18 -26
- mathutils/geometry/__init__.pyi +82 -132
- mathutils/interpolate/__init__.pyi +6 -5
- mathutils/kdtree/__init__.pyi +1 -11
- mathutils/noise/__init__.pyi +61 -106
- rna_prop_ui/__init__.pyi +1 -1
- bgl/__init__.pyi +0 -4256
- bpy_types/__init__.pyi +0 -30
- fake_bpy_module-20250612.dist-info/RECORD +0 -367
- {animsys_refactor → _animsys_refactor}/__init__.pyi +0 -0
- {animsys_refactor → _animsys_refactor}/py.typed +0 -0
- {bl_console_utils → _bl_console_utils}/__init__.pyi +0 -0
- {bl_console_utils → _bl_console_utils}/autocomplete/__init__.pyi +0 -0
- {bgl → _bl_console_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/merge_po/__init__.pyi +0 -0
- {bl_console_utils → _bl_i18n_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_cli/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_languages_menu/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_rtl/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/bl_previews_render/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_previews_utils}/py.typed +0 -0
- {bl_rna_utils → _bl_rna_utils}/__init__.pyi +0 -0
- {bl_rna_utils → _bl_rna_utils}/data_path/__init__.pyi +0 -0
- {bl_previews_utils → _bl_rna_utils}/py.typed +0 -0
- {bl_text_utils → _bl_text_utils}/__init__.pyi +0 -0
- {bl_text_utils → _bl_text_utils}/external_editor/__init__.pyi +0 -0
- {bl_rna_utils → _bl_text_utils}/py.typed +0 -0
- {bl_ui_utils → _bl_ui_utils}/layout/__init__.pyi +0 -0
- {bl_text_utils → _bl_ui_utils}/py.typed +0 -0
- {bl_ui_utils → _blendfile_header}/py.typed +0 -0
- /_bpy_internal/{freedesktop → platform/freedesktop}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/py.typed +0 -0
- {bpy_types → _bpy_types}/py.typed +0 -0
- {console_python → _console_python}/__init__.pyi +0 -0
- {console_python → _console_python}/py.typed +0 -0
- {console_shell → _console_shell}/__init__.pyi +0 -0
- {console_shell → _console_shell}/py.typed +0 -0
- {graphviz_export → _graphviz_export}/__init__.pyi +0 -0
- {graphviz_export → _graphviz_export}/py.typed +0 -0
- {keyingsets_utils → _keyingsets_utils}/py.typed +0 -0
- {rna_info → _rna_info}/py.typed +0 -0
- {rna_xml → _rna_xml}/__init__.pyi +0 -0
- {rna_xml → _rna_xml}/py.typed +0 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/WHEEL +0 -0
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -9,34 +9,27 @@ import bpy.stub_internal.rna_enums
|
|
|
9
9
|
import bpy.types
|
|
10
10
|
|
|
11
11
|
def activate_viewer(
|
|
12
|
-
execution_context: int | str | None = None,
|
|
12
|
+
execution_context: int | str | None = None,
|
|
13
|
+
undo: bool | None = None,
|
|
14
|
+
/,
|
|
13
15
|
) -> None:
|
|
14
|
-
"""Activate selected viewer node in compositor and geometry nodes
|
|
15
|
-
|
|
16
|
-
:type execution_context: int | str | None
|
|
17
|
-
:type undo: bool | None
|
|
18
|
-
"""
|
|
16
|
+
"""Activate selected viewer node in compositor and geometry nodes"""
|
|
19
17
|
|
|
20
18
|
def add_closure_zone(
|
|
21
19
|
execution_context: int | str | None = None,
|
|
22
20
|
undo: bool | None = None,
|
|
23
21
|
/,
|
|
24
22
|
*,
|
|
25
|
-
use_transform: bool | None = False,
|
|
26
23
|
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
27
24
|
| None = None,
|
|
25
|
+
use_transform: bool | None = False,
|
|
28
26
|
offset: collections.abc.Iterable[float] | None = (150.0, 0.0),
|
|
29
27
|
) -> None:
|
|
30
28
|
"""Add a Closure zone
|
|
31
29
|
|
|
32
|
-
:type execution_context: int | str | None
|
|
33
|
-
:type undo: bool | None
|
|
34
|
-
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
35
|
-
:type use_transform: bool | None
|
|
36
30
|
:param settings: Settings, Settings to be applied on the newly created node
|
|
37
|
-
:
|
|
31
|
+
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
38
32
|
:param offset: Offset, Offset of nodes from the cursor when added
|
|
39
|
-
:type offset: collections.abc.Iterable[float] | None
|
|
40
33
|
"""
|
|
41
34
|
|
|
42
35
|
def add_collection(
|
|
@@ -49,12 +42,8 @@ def add_collection(
|
|
|
49
42
|
) -> None:
|
|
50
43
|
"""Add a collection info node to the current node editor
|
|
51
44
|
|
|
52
|
-
:type execution_context: int | str | None
|
|
53
|
-
:type undo: bool | None
|
|
54
45
|
:param name: Name, Name of the data-block to use by the operator
|
|
55
|
-
:type name: str
|
|
56
46
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
57
|
-
:type session_uid: int | None
|
|
58
47
|
"""
|
|
59
48
|
|
|
60
49
|
def add_color(
|
|
@@ -68,14 +57,9 @@ def add_color(
|
|
|
68
57
|
) -> None:
|
|
69
58
|
"""Add a color node to the current node editor
|
|
70
59
|
|
|
71
|
-
:type execution_context: int | str | None
|
|
72
|
-
:type undo: bool | None
|
|
73
60
|
:param color: Color, Source color
|
|
74
|
-
:type color: collections.abc.Iterable[float] | None
|
|
75
61
|
:param gamma: Gamma Corrected, The source color is gamma corrected
|
|
76
|
-
:type gamma: bool | None
|
|
77
62
|
:param has_alpha: Has Alpha, The source color contains an Alpha component
|
|
78
|
-
:type has_alpha: bool | None
|
|
79
63
|
"""
|
|
80
64
|
|
|
81
65
|
def add_empty_group(
|
|
@@ -83,18 +67,14 @@ def add_empty_group(
|
|
|
83
67
|
undo: bool | None = None,
|
|
84
68
|
/,
|
|
85
69
|
*,
|
|
86
|
-
use_transform: bool | None = False,
|
|
87
70
|
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
88
71
|
| None = None,
|
|
72
|
+
use_transform: bool | None = False,
|
|
89
73
|
) -> None:
|
|
90
74
|
"""Add a group node with an empty group
|
|
91
75
|
|
|
92
|
-
:type execution_context: int | str | None
|
|
93
|
-
:type undo: bool | None
|
|
94
|
-
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
95
|
-
:type use_transform: bool | None
|
|
96
76
|
:param settings: Settings, Settings to be applied on the newly created node
|
|
97
|
-
:
|
|
77
|
+
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
98
78
|
"""
|
|
99
79
|
|
|
100
80
|
def add_foreach_geometry_element_zone(
|
|
@@ -102,21 +82,16 @@ def add_foreach_geometry_element_zone(
|
|
|
102
82
|
undo: bool | None = None,
|
|
103
83
|
/,
|
|
104
84
|
*,
|
|
105
|
-
use_transform: bool | None = False,
|
|
106
85
|
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
107
86
|
| None = None,
|
|
87
|
+
use_transform: bool | None = False,
|
|
108
88
|
offset: collections.abc.Iterable[float] | None = (150.0, 0.0),
|
|
109
89
|
) -> None:
|
|
110
90
|
"""Add a For Each Geometry Element zone that allows executing nodes e.g. for each vertex separately
|
|
111
91
|
|
|
112
|
-
:type execution_context: int | str | None
|
|
113
|
-
:type undo: bool | None
|
|
114
|
-
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
115
|
-
:type use_transform: bool | None
|
|
116
92
|
:param settings: Settings, Settings to be applied on the newly created node
|
|
117
|
-
:
|
|
93
|
+
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
118
94
|
:param offset: Offset, Offset of nodes from the cursor when added
|
|
119
|
-
:type offset: collections.abc.Iterable[float] | None
|
|
120
95
|
"""
|
|
121
96
|
|
|
122
97
|
def add_group(
|
|
@@ -130,14 +105,9 @@ def add_group(
|
|
|
130
105
|
) -> None:
|
|
131
106
|
"""Add an existing node group to the current node editor
|
|
132
107
|
|
|
133
|
-
:type execution_context: int | str | None
|
|
134
|
-
:type undo: bool | None
|
|
135
108
|
:param name: Name, Name of the data-block to use by the operator
|
|
136
|
-
:type name: str
|
|
137
109
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
138
|
-
:
|
|
139
|
-
:param show_datablock_in_node: Show the datablock selector in the node
|
|
140
|
-
:type show_datablock_in_node: bool | None
|
|
110
|
+
:param show_datablock_in_node: Show the data-block selector in the node
|
|
141
111
|
"""
|
|
142
112
|
|
|
143
113
|
def add_group_asset(
|
|
@@ -152,14 +122,9 @@ def add_group_asset(
|
|
|
152
122
|
) -> None:
|
|
153
123
|
"""Add a node group asset to the active node tree
|
|
154
124
|
|
|
155
|
-
:type execution_context: int | str | None
|
|
156
|
-
:type undo: bool | None
|
|
157
125
|
:param asset_library_type: Asset Library Type
|
|
158
|
-
:type asset_library_type: bpy.stub_internal.rna_enums.AssetLibraryTypeItems | None
|
|
159
126
|
:param asset_library_identifier: Asset Library Identifier
|
|
160
|
-
:type asset_library_identifier: str
|
|
161
127
|
:param relative_asset_identifier: Relative Asset Identifier
|
|
162
|
-
:type relative_asset_identifier: str
|
|
163
128
|
"""
|
|
164
129
|
|
|
165
130
|
def add_group_input_node(
|
|
@@ -172,12 +137,8 @@ def add_group_input_node(
|
|
|
172
137
|
) -> None:
|
|
173
138
|
"""Add a Group Input node with selected sockets to the current node editor
|
|
174
139
|
|
|
175
|
-
:type execution_context: int | str | None
|
|
176
|
-
:type undo: bool | None
|
|
177
140
|
:param socket_identifier: Socket Identifier, Socket to include in the added group input/output node
|
|
178
|
-
:type socket_identifier: str
|
|
179
141
|
:param panel_identifier: Panel Identifier, Panel from which to add sockets to the added group input/output node
|
|
180
|
-
:type panel_identifier: int | None
|
|
181
142
|
"""
|
|
182
143
|
|
|
183
144
|
def add_image(
|
|
@@ -229,58 +190,31 @@ def add_image(
|
|
|
229
190
|
) -> None:
|
|
230
191
|
"""Add a image/movie file as node to the current node editor
|
|
231
192
|
|
|
232
|
-
:type execution_context: int | str | None
|
|
233
|
-
:type undo: bool | None
|
|
234
193
|
:param filepath: File Path, Path to file
|
|
235
|
-
:type filepath: str
|
|
236
194
|
:param directory: Directory, Directory of the file
|
|
237
|
-
:type directory: str
|
|
238
195
|
:param files: Files
|
|
239
|
-
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
|
|
240
196
|
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
241
|
-
:type hide_props_region: bool | None
|
|
242
197
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
243
|
-
:type check_existing: bool | None
|
|
244
198
|
:param filter_blender: Filter .blend files
|
|
245
|
-
:type filter_blender: bool | None
|
|
246
199
|
:param filter_backup: Filter .blend files
|
|
247
|
-
:type filter_backup: bool | None
|
|
248
200
|
:param filter_image: Filter image files
|
|
249
|
-
:type filter_image: bool | None
|
|
250
201
|
:param filter_movie: Filter movie files
|
|
251
|
-
:type filter_movie: bool | None
|
|
252
202
|
:param filter_python: Filter Python files
|
|
253
|
-
:type filter_python: bool | None
|
|
254
203
|
:param filter_font: Filter font files
|
|
255
|
-
:type filter_font: bool | None
|
|
256
204
|
:param filter_sound: Filter sound files
|
|
257
|
-
:type filter_sound: bool | None
|
|
258
205
|
:param filter_text: Filter text files
|
|
259
|
-
:type filter_text: bool | None
|
|
260
206
|
:param filter_archive: Filter archive files
|
|
261
|
-
:type filter_archive: bool | None
|
|
262
207
|
:param filter_btx: Filter btx files
|
|
263
|
-
:type filter_btx: bool | None
|
|
264
208
|
:param filter_alembic: Filter Alembic files
|
|
265
|
-
:type filter_alembic: bool | None
|
|
266
209
|
:param filter_usd: Filter USD files
|
|
267
|
-
:type filter_usd: bool | None
|
|
268
210
|
:param filter_obj: Filter OBJ files
|
|
269
|
-
:type filter_obj: bool | None
|
|
270
211
|
:param filter_volume: Filter OpenVDB volume files
|
|
271
|
-
:type filter_volume: bool | None
|
|
272
212
|
:param filter_folder: Filter folders
|
|
273
|
-
:type filter_folder: bool | None
|
|
274
213
|
:param filter_blenlib: Filter Blender IDs
|
|
275
|
-
:type filter_blenlib: bool | None
|
|
276
214
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
277
|
-
:type filemode: int | None
|
|
278
215
|
:param relative_path: Relative Path, Select the file relative to the blend file
|
|
279
|
-
:type relative_path: bool | None
|
|
280
216
|
:param show_multiview: Enable Multi-View
|
|
281
|
-
:type show_multiview: bool | None
|
|
282
217
|
:param use_multiview: Use Multi-View
|
|
283
|
-
:type use_multiview: bool | None
|
|
284
218
|
:param display_type: Display Type
|
|
285
219
|
|
|
286
220
|
DEFAULT
|
|
@@ -294,7 +228,6 @@ def add_image(
|
|
|
294
228
|
|
|
295
229
|
THUMBNAIL
|
|
296
230
|
Thumbnails -- Display files as thumbnails.
|
|
297
|
-
:type display_type: typing.Literal['DEFAULT','LIST_VERTICAL','LIST_HORIZONTAL','THUMBNAIL'] | None
|
|
298
231
|
:param sort_method: File sorting mode
|
|
299
232
|
|
|
300
233
|
DEFAULT
|
|
@@ -314,11 +247,8 @@ def add_image(
|
|
|
314
247
|
|
|
315
248
|
ASSET_CATALOG
|
|
316
249
|
Asset Catalog -- Sort the asset list so that assets in the same catalog are kept together. Within a single catalog, assets are ordered by name. The catalogs are in order of the flattened catalog hierarchy..
|
|
317
|
-
:type sort_method: typing.Literal['DEFAULT','FILE_SORT_ALPHA','FILE_SORT_EXTENSION','FILE_SORT_TIME','FILE_SORT_SIZE','ASSET_CATALOG'] | None
|
|
318
250
|
:param name: Name, Name of the data-block to use by the operator
|
|
319
|
-
:type name: str
|
|
320
251
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
321
|
-
:type session_uid: int | None
|
|
322
252
|
"""
|
|
323
253
|
|
|
324
254
|
def add_import_node(
|
|
@@ -332,12 +262,8 @@ def add_import_node(
|
|
|
332
262
|
) -> None:
|
|
333
263
|
"""Add an import node to the node tree
|
|
334
264
|
|
|
335
|
-
:type execution_context: int | str | None
|
|
336
|
-
:type undo: bool | None
|
|
337
265
|
:param directory: Directory, Directory of the file
|
|
338
|
-
:type directory: str
|
|
339
266
|
:param files: Files
|
|
340
|
-
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
|
|
341
267
|
"""
|
|
342
268
|
|
|
343
269
|
def add_mask(
|
|
@@ -350,12 +276,8 @@ def add_mask(
|
|
|
350
276
|
) -> None:
|
|
351
277
|
"""Add a mask node to the current node editor
|
|
352
278
|
|
|
353
|
-
:type execution_context: int | str | None
|
|
354
|
-
:type undo: bool | None
|
|
355
279
|
:param name: Name, Name of the data-block to use by the operator
|
|
356
|
-
:type name: str
|
|
357
280
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
358
|
-
:type session_uid: int | None
|
|
359
281
|
"""
|
|
360
282
|
|
|
361
283
|
def add_material(
|
|
@@ -368,12 +290,8 @@ def add_material(
|
|
|
368
290
|
) -> None:
|
|
369
291
|
"""Add a material node to the current node editor
|
|
370
292
|
|
|
371
|
-
:type execution_context: int | str | None
|
|
372
|
-
:type undo: bool | None
|
|
373
293
|
:param name: Name, Name of the data-block to use by the operator
|
|
374
|
-
:type name: str
|
|
375
294
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
376
|
-
:type session_uid: int | None
|
|
377
295
|
"""
|
|
378
296
|
|
|
379
297
|
def add_node(
|
|
@@ -381,24 +299,18 @@ def add_node(
|
|
|
381
299
|
undo: bool | None = None,
|
|
382
300
|
/,
|
|
383
301
|
*,
|
|
384
|
-
use_transform: bool | None = False,
|
|
385
302
|
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
386
303
|
| None = None,
|
|
304
|
+
use_transform: bool | None = False,
|
|
387
305
|
type: str = "",
|
|
388
306
|
visible_output: str = "",
|
|
389
307
|
) -> None:
|
|
390
308
|
"""Add a node to the active tree
|
|
391
309
|
|
|
392
|
-
:type execution_context: int | str | None
|
|
393
|
-
:type undo: bool | None
|
|
394
|
-
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
395
|
-
:type use_transform: bool | None
|
|
396
310
|
:param settings: Settings, Settings to be applied on the newly created node
|
|
397
|
-
:
|
|
311
|
+
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
398
312
|
:param type: Node Type, Node type
|
|
399
|
-
:type type: str
|
|
400
313
|
:param visible_output: Output Name, If provided, all outputs that are named differently will be hidden
|
|
401
|
-
:type visible_output: str
|
|
402
314
|
"""
|
|
403
315
|
|
|
404
316
|
def add_object(
|
|
@@ -411,12 +323,8 @@ def add_object(
|
|
|
411
323
|
) -> None:
|
|
412
324
|
"""Add an object info node to the current node editor
|
|
413
325
|
|
|
414
|
-
:type execution_context: int | str | None
|
|
415
|
-
:type undo: bool | None
|
|
416
326
|
:param name: Name, Name of the data-block to use by the operator
|
|
417
|
-
:type name: str
|
|
418
327
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
419
|
-
:type session_uid: int | None
|
|
420
328
|
"""
|
|
421
329
|
|
|
422
330
|
def add_repeat_zone(
|
|
@@ -424,21 +332,16 @@ def add_repeat_zone(
|
|
|
424
332
|
undo: bool | None = None,
|
|
425
333
|
/,
|
|
426
334
|
*,
|
|
427
|
-
use_transform: bool | None = False,
|
|
428
335
|
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
429
336
|
| None = None,
|
|
337
|
+
use_transform: bool | None = False,
|
|
430
338
|
offset: collections.abc.Iterable[float] | None = (150.0, 0.0),
|
|
431
339
|
) -> None:
|
|
432
340
|
"""Add a repeat zone that allows executing nodes a dynamic number of times
|
|
433
341
|
|
|
434
|
-
:type execution_context: int | str | None
|
|
435
|
-
:type undo: bool | None
|
|
436
|
-
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
437
|
-
:type use_transform: bool | None
|
|
438
342
|
:param settings: Settings, Settings to be applied on the newly created node
|
|
439
|
-
:
|
|
343
|
+
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
440
344
|
:param offset: Offset, Offset of nodes from the cursor when added
|
|
441
|
-
:type offset: collections.abc.Iterable[float] | None
|
|
442
345
|
"""
|
|
443
346
|
|
|
444
347
|
def add_reroute(
|
|
@@ -451,12 +354,8 @@ def add_reroute(
|
|
|
451
354
|
) -> None:
|
|
452
355
|
"""Add a reroute node
|
|
453
356
|
|
|
454
|
-
:type execution_context: int | str | None
|
|
455
|
-
:type undo: bool | None
|
|
456
357
|
:param path: Path
|
|
457
|
-
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
|
|
458
358
|
:param cursor: Cursor
|
|
459
|
-
:type cursor: int | None
|
|
460
359
|
"""
|
|
461
360
|
|
|
462
361
|
def add_simulation_zone(
|
|
@@ -464,58 +363,68 @@ def add_simulation_zone(
|
|
|
464
363
|
undo: bool | None = None,
|
|
465
364
|
/,
|
|
466
365
|
*,
|
|
467
|
-
use_transform: bool | None = False,
|
|
468
366
|
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
469
367
|
| None = None,
|
|
368
|
+
use_transform: bool | None = False,
|
|
470
369
|
offset: collections.abc.Iterable[float] | None = (150.0, 0.0),
|
|
471
370
|
) -> None:
|
|
472
371
|
"""Add simulation zone input and output nodes to the active tree
|
|
473
372
|
|
|
474
|
-
:type execution_context: int | str | None
|
|
475
|
-
:type undo: bool | None
|
|
476
|
-
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
477
|
-
:type use_transform: bool | None
|
|
478
373
|
:param settings: Settings, Settings to be applied on the newly created node
|
|
479
|
-
:
|
|
374
|
+
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
480
375
|
:param offset: Offset, Offset of nodes from the cursor when added
|
|
481
|
-
:type offset: collections.abc.Iterable[float] | None
|
|
482
376
|
"""
|
|
483
377
|
|
|
484
|
-
def
|
|
485
|
-
execution_context: int | str | None = None,
|
|
378
|
+
def add_zone(
|
|
379
|
+
execution_context: int | str | None = None,
|
|
380
|
+
undo: bool | None = None,
|
|
381
|
+
/,
|
|
382
|
+
*,
|
|
383
|
+
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
384
|
+
| None = None,
|
|
385
|
+
use_transform: bool | None = False,
|
|
386
|
+
offset: collections.abc.Iterable[float] | None = (150.0, 0.0),
|
|
387
|
+
input_node_type: str = "",
|
|
388
|
+
output_node_type: str = "",
|
|
389
|
+
add_default_geometry_link: bool | None = False,
|
|
486
390
|
) -> None:
|
|
487
|
-
"""
|
|
391
|
+
"""Undocumented, consider contributing.
|
|
488
392
|
|
|
489
|
-
:
|
|
490
|
-
:
|
|
393
|
+
:param settings: Settings, Settings to be applied on the newly created node
|
|
394
|
+
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
395
|
+
:param offset: Offset, Offset of nodes from the cursor when added
|
|
396
|
+
:param input_node_type: Input Node, Specifies the input node used by the created zone
|
|
397
|
+
:param output_node_type: Output Node, Specifies the output node used by the created zone
|
|
398
|
+
:param add_default_geometry_link: Add Geometry Link, When enabled, create a link between geometry sockets in this zone
|
|
491
399
|
"""
|
|
492
400
|
|
|
493
|
-
def
|
|
494
|
-
execution_context: int | str | None = None,
|
|
401
|
+
def attach(
|
|
402
|
+
execution_context: int | str | None = None,
|
|
403
|
+
undo: bool | None = None,
|
|
404
|
+
/,
|
|
495
405
|
) -> None:
|
|
496
|
-
"""
|
|
406
|
+
"""Attach active node to a frame"""
|
|
497
407
|
|
|
498
|
-
|
|
499
|
-
:
|
|
500
|
-
|
|
408
|
+
def backimage_fit(
|
|
409
|
+
execution_context: int | str | None = None,
|
|
410
|
+
undo: bool | None = None,
|
|
411
|
+
/,
|
|
412
|
+
) -> None:
|
|
413
|
+
"""Fit the background image to the view"""
|
|
501
414
|
|
|
502
415
|
def backimage_move(
|
|
503
|
-
execution_context: int | str | None = None,
|
|
416
|
+
execution_context: int | str | None = None,
|
|
417
|
+
undo: bool | None = None,
|
|
418
|
+
/,
|
|
504
419
|
) -> None:
|
|
505
|
-
"""Move node backdrop
|
|
506
|
-
|
|
507
|
-
:type execution_context: int | str | None
|
|
508
|
-
:type undo: bool | None
|
|
509
|
-
"""
|
|
420
|
+
"""Move node backdrop"""
|
|
510
421
|
|
|
511
422
|
def backimage_sample(
|
|
512
|
-
execution_context: int | str | None = None,
|
|
423
|
+
execution_context: int | str | None = None,
|
|
424
|
+
undo: bool | None = None,
|
|
425
|
+
/,
|
|
513
426
|
) -> None:
|
|
514
|
-
"""Use mouse to sample background image
|
|
515
|
-
|
|
516
|
-
:type execution_context: int | str | None
|
|
517
|
-
:type undo: bool | None
|
|
518
|
-
"""
|
|
427
|
+
"""Use mouse to sample background image"""
|
|
519
428
|
|
|
520
429
|
def backimage_zoom(
|
|
521
430
|
execution_context: int | str | None = None,
|
|
@@ -526,19 +435,19 @@ def backimage_zoom(
|
|
|
526
435
|
) -> None:
|
|
527
436
|
"""Zoom in/out the background image
|
|
528
437
|
|
|
529
|
-
:type execution_context: int | str | None
|
|
530
|
-
:type undo: bool | None
|
|
531
438
|
:param factor: Factor
|
|
532
|
-
:type factor: float | None
|
|
533
439
|
"""
|
|
534
440
|
|
|
535
441
|
def bake_node_item_add(
|
|
536
|
-
execution_context: int | str | None = None,
|
|
442
|
+
execution_context: int | str | None = None,
|
|
443
|
+
undo: bool | None = None,
|
|
444
|
+
/,
|
|
445
|
+
*,
|
|
446
|
+
node_identifier: int | None = 0,
|
|
537
447
|
) -> None:
|
|
538
448
|
"""Add item below active item
|
|
539
449
|
|
|
540
|
-
:
|
|
541
|
-
:type undo: bool | None
|
|
450
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
542
451
|
"""
|
|
543
452
|
|
|
544
453
|
def bake_node_item_move(
|
|
@@ -547,31 +456,36 @@ def bake_node_item_move(
|
|
|
547
456
|
/,
|
|
548
457
|
*,
|
|
549
458
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
459
|
+
node_identifier: int | None = 0,
|
|
550
460
|
) -> None:
|
|
551
461
|
"""Move active item
|
|
552
462
|
|
|
553
|
-
:type execution_context: int | str | None
|
|
554
|
-
:type undo: bool | None
|
|
555
463
|
:param direction: Direction, Move direction
|
|
556
|
-
:
|
|
464
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
557
465
|
"""
|
|
558
466
|
|
|
559
467
|
def bake_node_item_remove(
|
|
560
|
-
execution_context: int | str | None = None,
|
|
468
|
+
execution_context: int | str | None = None,
|
|
469
|
+
undo: bool | None = None,
|
|
470
|
+
/,
|
|
471
|
+
*,
|
|
472
|
+
node_identifier: int | None = 0,
|
|
561
473
|
) -> None:
|
|
562
474
|
"""Remove active item
|
|
563
475
|
|
|
564
|
-
:
|
|
565
|
-
:type undo: bool | None
|
|
476
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
566
477
|
"""
|
|
567
478
|
|
|
568
479
|
def capture_attribute_item_add(
|
|
569
|
-
execution_context: int | str | None = None,
|
|
480
|
+
execution_context: int | str | None = None,
|
|
481
|
+
undo: bool | None = None,
|
|
482
|
+
/,
|
|
483
|
+
*,
|
|
484
|
+
node_identifier: int | None = 0,
|
|
570
485
|
) -> None:
|
|
571
486
|
"""Add item below active item
|
|
572
487
|
|
|
573
|
-
:
|
|
574
|
-
:type undo: bool | None
|
|
488
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
575
489
|
"""
|
|
576
490
|
|
|
577
491
|
def capture_attribute_item_move(
|
|
@@ -580,41 +494,39 @@ def capture_attribute_item_move(
|
|
|
580
494
|
/,
|
|
581
495
|
*,
|
|
582
496
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
497
|
+
node_identifier: int | None = 0,
|
|
583
498
|
) -> None:
|
|
584
499
|
"""Move active item
|
|
585
500
|
|
|
586
|
-
:type execution_context: int | str | None
|
|
587
|
-
:type undo: bool | None
|
|
588
501
|
:param direction: Direction, Move direction
|
|
589
|
-
:
|
|
502
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
590
503
|
"""
|
|
591
504
|
|
|
592
505
|
def capture_attribute_item_remove(
|
|
593
|
-
execution_context: int | str | None = None,
|
|
506
|
+
execution_context: int | str | None = None,
|
|
507
|
+
undo: bool | None = None,
|
|
508
|
+
/,
|
|
509
|
+
*,
|
|
510
|
+
node_identifier: int | None = 0,
|
|
594
511
|
) -> None:
|
|
595
512
|
"""Remove active item
|
|
596
513
|
|
|
597
|
-
:
|
|
598
|
-
:type undo: bool | None
|
|
514
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
599
515
|
"""
|
|
600
516
|
|
|
601
517
|
def clear_viewer_border(
|
|
602
|
-
execution_context: int | str | None = None,
|
|
518
|
+
execution_context: int | str | None = None,
|
|
519
|
+
undo: bool | None = None,
|
|
520
|
+
/,
|
|
603
521
|
) -> None:
|
|
604
|
-
"""Clear the boundaries for viewer operations
|
|
605
|
-
|
|
606
|
-
:type execution_context: int | str | None
|
|
607
|
-
:type undo: bool | None
|
|
608
|
-
"""
|
|
522
|
+
"""Clear the boundaries for viewer operations"""
|
|
609
523
|
|
|
610
524
|
def clipboard_copy(
|
|
611
|
-
execution_context: int | str | None = None,
|
|
525
|
+
execution_context: int | str | None = None,
|
|
526
|
+
undo: bool | None = None,
|
|
527
|
+
/,
|
|
612
528
|
) -> None:
|
|
613
|
-
"""Copy the selected nodes to the internal clipboard
|
|
614
|
-
|
|
615
|
-
:type execution_context: int | str | None
|
|
616
|
-
:type undo: bool | None
|
|
617
|
-
"""
|
|
529
|
+
"""Copy the selected nodes to the internal clipboard"""
|
|
618
530
|
|
|
619
531
|
def clipboard_paste(
|
|
620
532
|
execution_context: int | str | None = None,
|
|
@@ -625,19 +537,19 @@ def clipboard_paste(
|
|
|
625
537
|
) -> None:
|
|
626
538
|
"""Paste nodes from the internal clipboard to the active node tree
|
|
627
539
|
|
|
628
|
-
:type execution_context: int | str | None
|
|
629
|
-
:type undo: bool | None
|
|
630
540
|
:param offset: Location, The 2D view location for the center of the new nodes, or unchanged if not set
|
|
631
|
-
:type offset: collections.abc.Iterable[float] | None
|
|
632
541
|
"""
|
|
633
542
|
|
|
634
543
|
def closure_input_item_add(
|
|
635
|
-
execution_context: int | str | None = None,
|
|
544
|
+
execution_context: int | str | None = None,
|
|
545
|
+
undo: bool | None = None,
|
|
546
|
+
/,
|
|
547
|
+
*,
|
|
548
|
+
node_identifier: int | None = 0,
|
|
636
549
|
) -> None:
|
|
637
550
|
"""Add item below active item
|
|
638
551
|
|
|
639
|
-
:
|
|
640
|
-
:type undo: bool | None
|
|
552
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
641
553
|
"""
|
|
642
554
|
|
|
643
555
|
def closure_input_item_move(
|
|
@@ -646,31 +558,36 @@ def closure_input_item_move(
|
|
|
646
558
|
/,
|
|
647
559
|
*,
|
|
648
560
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
561
|
+
node_identifier: int | None = 0,
|
|
649
562
|
) -> None:
|
|
650
563
|
"""Move active item
|
|
651
564
|
|
|
652
|
-
:type execution_context: int | str | None
|
|
653
|
-
:type undo: bool | None
|
|
654
565
|
:param direction: Direction, Move direction
|
|
655
|
-
:
|
|
566
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
656
567
|
"""
|
|
657
568
|
|
|
658
569
|
def closure_input_item_remove(
|
|
659
|
-
execution_context: int | str | None = None,
|
|
570
|
+
execution_context: int | str | None = None,
|
|
571
|
+
undo: bool | None = None,
|
|
572
|
+
/,
|
|
573
|
+
*,
|
|
574
|
+
node_identifier: int | None = 0,
|
|
660
575
|
) -> None:
|
|
661
576
|
"""Remove active item
|
|
662
577
|
|
|
663
|
-
:
|
|
664
|
-
:type undo: bool | None
|
|
578
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
665
579
|
"""
|
|
666
580
|
|
|
667
581
|
def closure_output_item_add(
|
|
668
|
-
execution_context: int | str | None = None,
|
|
582
|
+
execution_context: int | str | None = None,
|
|
583
|
+
undo: bool | None = None,
|
|
584
|
+
/,
|
|
585
|
+
*,
|
|
586
|
+
node_identifier: int | None = 0,
|
|
669
587
|
) -> None:
|
|
670
588
|
"""Add item below active item
|
|
671
589
|
|
|
672
|
-
:
|
|
673
|
-
:type undo: bool | None
|
|
590
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
674
591
|
"""
|
|
675
592
|
|
|
676
593
|
def closure_output_item_move(
|
|
@@ -679,40 +596,43 @@ def closure_output_item_move(
|
|
|
679
596
|
/,
|
|
680
597
|
*,
|
|
681
598
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
599
|
+
node_identifier: int | None = 0,
|
|
682
600
|
) -> None:
|
|
683
601
|
"""Move active item
|
|
684
602
|
|
|
685
|
-
:type execution_context: int | str | None
|
|
686
|
-
:type undo: bool | None
|
|
687
603
|
:param direction: Direction, Move direction
|
|
688
|
-
:
|
|
604
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
689
605
|
"""
|
|
690
606
|
|
|
691
607
|
def closure_output_item_remove(
|
|
692
|
-
execution_context: int | str | None = None,
|
|
608
|
+
execution_context: int | str | None = None,
|
|
609
|
+
undo: bool | None = None,
|
|
610
|
+
/,
|
|
611
|
+
*,
|
|
612
|
+
node_identifier: int | None = 0,
|
|
693
613
|
) -> None:
|
|
694
614
|
"""Remove active item
|
|
695
615
|
|
|
696
|
-
:
|
|
697
|
-
:type undo: bool | None
|
|
616
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
698
617
|
"""
|
|
699
618
|
|
|
700
619
|
def collapse_hide_unused_toggle(
|
|
701
|
-
execution_context: int | str | None = None,
|
|
620
|
+
execution_context: int | str | None = None,
|
|
621
|
+
undo: bool | None = None,
|
|
622
|
+
/,
|
|
702
623
|
) -> None:
|
|
703
|
-
"""Toggle collapsed nodes and hide unused sockets
|
|
704
|
-
|
|
705
|
-
:type execution_context: int | str | None
|
|
706
|
-
:type undo: bool | None
|
|
707
|
-
"""
|
|
624
|
+
"""Toggle collapsed nodes and hide unused sockets"""
|
|
708
625
|
|
|
709
626
|
def combine_bundle_item_add(
|
|
710
|
-
execution_context: int | str | None = None,
|
|
627
|
+
execution_context: int | str | None = None,
|
|
628
|
+
undo: bool | None = None,
|
|
629
|
+
/,
|
|
630
|
+
*,
|
|
631
|
+
node_identifier: int | None = 0,
|
|
711
632
|
) -> None:
|
|
712
633
|
"""Add item below active item
|
|
713
634
|
|
|
714
|
-
:
|
|
715
|
-
:type undo: bool | None
|
|
635
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
716
636
|
"""
|
|
717
637
|
|
|
718
638
|
def combine_bundle_item_move(
|
|
@@ -721,22 +641,24 @@ def combine_bundle_item_move(
|
|
|
721
641
|
/,
|
|
722
642
|
*,
|
|
723
643
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
644
|
+
node_identifier: int | None = 0,
|
|
724
645
|
) -> None:
|
|
725
646
|
"""Move active item
|
|
726
647
|
|
|
727
|
-
:type execution_context: int | str | None
|
|
728
|
-
:type undo: bool | None
|
|
729
648
|
:param direction: Direction, Move direction
|
|
730
|
-
:
|
|
649
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
731
650
|
"""
|
|
732
651
|
|
|
733
652
|
def combine_bundle_item_remove(
|
|
734
|
-
execution_context: int | str | None = None,
|
|
653
|
+
execution_context: int | str | None = None,
|
|
654
|
+
undo: bool | None = None,
|
|
655
|
+
/,
|
|
656
|
+
*,
|
|
657
|
+
node_identifier: int | None = 0,
|
|
735
658
|
) -> None:
|
|
736
659
|
"""Remove active item
|
|
737
660
|
|
|
738
|
-
:
|
|
739
|
-
:type undo: bool | None
|
|
661
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
740
662
|
"""
|
|
741
663
|
|
|
742
664
|
def connect_to_output(
|
|
@@ -748,74 +670,57 @@ def connect_to_output(
|
|
|
748
670
|
) -> None:
|
|
749
671
|
"""Connect active node to the active output node of the node tree
|
|
750
672
|
|
|
751
|
-
:type execution_context: int | str | None
|
|
752
|
-
:type undo: bool | None
|
|
753
673
|
:param run_in_geometry_nodes: Run in Geometry Nodes Editor
|
|
754
|
-
:type run_in_geometry_nodes: bool | None
|
|
755
674
|
"""
|
|
756
675
|
|
|
757
676
|
def cryptomatte_layer_add(
|
|
758
|
-
execution_context: int | str | None = None,
|
|
677
|
+
execution_context: int | str | None = None,
|
|
678
|
+
undo: bool | None = None,
|
|
679
|
+
/,
|
|
759
680
|
) -> None:
|
|
760
|
-
"""Add a new input layer to a Cryptomatte node
|
|
761
|
-
|
|
762
|
-
:type execution_context: int | str | None
|
|
763
|
-
:type undo: bool | None
|
|
764
|
-
"""
|
|
681
|
+
"""Add a new input layer to a Cryptomatte node"""
|
|
765
682
|
|
|
766
683
|
def cryptomatte_layer_remove(
|
|
767
|
-
execution_context: int | str | None = None,
|
|
684
|
+
execution_context: int | str | None = None,
|
|
685
|
+
undo: bool | None = None,
|
|
686
|
+
/,
|
|
768
687
|
) -> None:
|
|
769
|
-
"""Remove layer from a Cryptomatte node
|
|
770
|
-
|
|
771
|
-
:type execution_context: int | str | None
|
|
772
|
-
:type undo: bool | None
|
|
773
|
-
"""
|
|
688
|
+
"""Remove layer from a Cryptomatte node"""
|
|
774
689
|
|
|
775
690
|
def deactivate_viewer(
|
|
776
|
-
execution_context: int | str | None = None,
|
|
691
|
+
execution_context: int | str | None = None,
|
|
692
|
+
undo: bool | None = None,
|
|
693
|
+
/,
|
|
777
694
|
) -> None:
|
|
778
|
-
"""Deactivate selected viewer node in geometry nodes
|
|
779
|
-
|
|
780
|
-
:type execution_context: int | str | None
|
|
781
|
-
:type undo: bool | None
|
|
782
|
-
"""
|
|
695
|
+
"""Deactivate selected viewer node in geometry nodes"""
|
|
783
696
|
|
|
784
697
|
def default_group_width_set(
|
|
785
|
-
execution_context: int | str | None = None,
|
|
698
|
+
execution_context: int | str | None = None,
|
|
699
|
+
undo: bool | None = None,
|
|
700
|
+
/,
|
|
786
701
|
) -> None:
|
|
787
|
-
"""Set the width based on the parent group node in the current context
|
|
788
|
-
|
|
789
|
-
:type execution_context: int | str | None
|
|
790
|
-
:type undo: bool | None
|
|
791
|
-
"""
|
|
702
|
+
"""Set the width based on the parent group node in the current context"""
|
|
792
703
|
|
|
793
704
|
def delete(
|
|
794
|
-
execution_context: int | str | None = None,
|
|
705
|
+
execution_context: int | str | None = None,
|
|
706
|
+
undo: bool | None = None,
|
|
707
|
+
/,
|
|
795
708
|
) -> None:
|
|
796
|
-
"""Remove selected nodes
|
|
797
|
-
|
|
798
|
-
:type execution_context: int | str | None
|
|
799
|
-
:type undo: bool | None
|
|
800
|
-
"""
|
|
709
|
+
"""Remove selected nodes"""
|
|
801
710
|
|
|
802
711
|
def delete_reconnect(
|
|
803
|
-
execution_context: int | str | None = None,
|
|
712
|
+
execution_context: int | str | None = None,
|
|
713
|
+
undo: bool | None = None,
|
|
714
|
+
/,
|
|
804
715
|
) -> None:
|
|
805
|
-
"""Remove nodes and reconnect nodes as if deletion was muted
|
|
806
|
-
|
|
807
|
-
:type execution_context: int | str | None
|
|
808
|
-
:type undo: bool | None
|
|
809
|
-
"""
|
|
716
|
+
"""Remove nodes and reconnect nodes as if deletion was muted"""
|
|
810
717
|
|
|
811
718
|
def detach(
|
|
812
|
-
execution_context: int | str | None = None,
|
|
719
|
+
execution_context: int | str | None = None,
|
|
720
|
+
undo: bool | None = None,
|
|
721
|
+
/,
|
|
813
722
|
) -> None:
|
|
814
|
-
"""Detach selected nodes from parents
|
|
815
|
-
|
|
816
|
-
:type execution_context: int | str | None
|
|
817
|
-
:type undo: bool | None
|
|
818
|
-
"""
|
|
723
|
+
"""Detach selected nodes from parents"""
|
|
819
724
|
|
|
820
725
|
def detach_translate_attach(
|
|
821
726
|
execution_context: int | str | None = None,
|
|
@@ -828,14 +733,9 @@ def detach_translate_attach(
|
|
|
828
733
|
) -> None:
|
|
829
734
|
"""Detach nodes, move and attach to frame
|
|
830
735
|
|
|
831
|
-
:type execution_context: int | str | None
|
|
832
|
-
:type undo: bool | None
|
|
833
736
|
:param NODE_OT_detach: Detach Nodes, Detach selected nodes from parents
|
|
834
|
-
:type NODE_OT_detach: detach | None
|
|
835
737
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
836
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
837
738
|
:param NODE_OT_attach: Attach Nodes, Attach active node to a frame
|
|
838
|
-
:type NODE_OT_attach: attach | None
|
|
839
739
|
"""
|
|
840
740
|
|
|
841
741
|
def duplicate(
|
|
@@ -848,14 +748,24 @@ def duplicate(
|
|
|
848
748
|
) -> None:
|
|
849
749
|
"""Duplicate selected nodes
|
|
850
750
|
|
|
851
|
-
:type execution_context: int | str | None
|
|
852
|
-
:type undo: bool | None
|
|
853
751
|
:param keep_inputs: Keep Inputs, Keep the input links to duplicated nodes
|
|
854
|
-
:type keep_inputs: bool | None
|
|
855
752
|
:param linked: Linked, Duplicate node but not node trees, linking to the original data
|
|
856
|
-
:type linked: bool | None
|
|
857
753
|
"""
|
|
858
754
|
|
|
755
|
+
def duplicate_compositing_modifier_node_group(
|
|
756
|
+
execution_context: int | str | None = None,
|
|
757
|
+
undo: bool | None = None,
|
|
758
|
+
/,
|
|
759
|
+
) -> None:
|
|
760
|
+
"""Duplicate the currently assigned compositing node group."""
|
|
761
|
+
|
|
762
|
+
def duplicate_compositing_node_group(
|
|
763
|
+
execution_context: int | str | None = None,
|
|
764
|
+
undo: bool | None = None,
|
|
765
|
+
/,
|
|
766
|
+
) -> None:
|
|
767
|
+
"""Duplicate the currently assigned compositing node group."""
|
|
768
|
+
|
|
859
769
|
def duplicate_move(
|
|
860
770
|
execution_context: int | str | None = None,
|
|
861
771
|
undo: bool | None = None,
|
|
@@ -866,12 +776,8 @@ def duplicate_move(
|
|
|
866
776
|
) -> None:
|
|
867
777
|
"""Duplicate selected nodes and move them
|
|
868
778
|
|
|
869
|
-
:type execution_context: int | str | None
|
|
870
|
-
:type undo: bool | None
|
|
871
779
|
:param NODE_OT_duplicate: Duplicate Nodes, Duplicate selected nodes
|
|
872
|
-
:type NODE_OT_duplicate: duplicate | None
|
|
873
780
|
:param NODE_OT_translate_attach: Move and Attach, Move nodes and attach to frame
|
|
874
|
-
:type NODE_OT_translate_attach: translate_attach | None
|
|
875
781
|
"""
|
|
876
782
|
|
|
877
783
|
def duplicate_move_keep_inputs(
|
|
@@ -884,12 +790,8 @@ def duplicate_move_keep_inputs(
|
|
|
884
790
|
) -> None:
|
|
885
791
|
"""Duplicate selected nodes keeping input links and move them
|
|
886
792
|
|
|
887
|
-
:type execution_context: int | str | None
|
|
888
|
-
:type undo: bool | None
|
|
889
793
|
:param NODE_OT_duplicate: Duplicate Nodes, Duplicate selected nodes
|
|
890
|
-
:type NODE_OT_duplicate: duplicate | None
|
|
891
794
|
:param NODE_OT_translate_attach: Move and Attach, Move nodes and attach to frame
|
|
892
|
-
:type NODE_OT_translate_attach: translate_attach | None
|
|
893
795
|
"""
|
|
894
796
|
|
|
895
797
|
def duplicate_move_linked(
|
|
@@ -902,21 +804,20 @@ def duplicate_move_linked(
|
|
|
902
804
|
) -> None:
|
|
903
805
|
"""Duplicate selected nodes, but not their node trees, and move them
|
|
904
806
|
|
|
905
|
-
:type execution_context: int | str | None
|
|
906
|
-
:type undo: bool | None
|
|
907
807
|
:param NODE_OT_duplicate: Duplicate Nodes, Duplicate selected nodes
|
|
908
|
-
:type NODE_OT_duplicate: duplicate | None
|
|
909
808
|
:param NODE_OT_translate_attach: Move and Attach, Move nodes and attach to frame
|
|
910
|
-
:type NODE_OT_translate_attach: translate_attach | None
|
|
911
809
|
"""
|
|
912
810
|
|
|
913
811
|
def enum_definition_item_add(
|
|
914
|
-
execution_context: int | str | None = None,
|
|
812
|
+
execution_context: int | str | None = None,
|
|
813
|
+
undo: bool | None = None,
|
|
814
|
+
/,
|
|
815
|
+
*,
|
|
816
|
+
node_identifier: int | None = 0,
|
|
915
817
|
) -> None:
|
|
916
818
|
"""Add item below active item
|
|
917
819
|
|
|
918
|
-
:
|
|
919
|
-
:type undo: bool | None
|
|
820
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
920
821
|
"""
|
|
921
822
|
|
|
922
823
|
def enum_definition_item_move(
|
|
@@ -925,31 +826,36 @@ def enum_definition_item_move(
|
|
|
925
826
|
/,
|
|
926
827
|
*,
|
|
927
828
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
829
|
+
node_identifier: int | None = 0,
|
|
928
830
|
) -> None:
|
|
929
831
|
"""Move active item
|
|
930
832
|
|
|
931
|
-
:type execution_context: int | str | None
|
|
932
|
-
:type undo: bool | None
|
|
933
833
|
:param direction: Direction, Move direction
|
|
934
|
-
:
|
|
834
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
935
835
|
"""
|
|
936
836
|
|
|
937
837
|
def enum_definition_item_remove(
|
|
938
|
-
execution_context: int | str | None = None,
|
|
838
|
+
execution_context: int | str | None = None,
|
|
839
|
+
undo: bool | None = None,
|
|
840
|
+
/,
|
|
841
|
+
*,
|
|
842
|
+
node_identifier: int | None = 0,
|
|
939
843
|
) -> None:
|
|
940
844
|
"""Remove active item
|
|
941
845
|
|
|
942
|
-
:
|
|
943
|
-
:type undo: bool | None
|
|
846
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
944
847
|
"""
|
|
945
848
|
|
|
946
849
|
def evaluate_closure_input_item_add(
|
|
947
|
-
execution_context: int | str | None = None,
|
|
850
|
+
execution_context: int | str | None = None,
|
|
851
|
+
undo: bool | None = None,
|
|
852
|
+
/,
|
|
853
|
+
*,
|
|
854
|
+
node_identifier: int | None = 0,
|
|
948
855
|
) -> None:
|
|
949
856
|
"""Add item below active item
|
|
950
857
|
|
|
951
|
-
:
|
|
952
|
-
:type undo: bool | None
|
|
858
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
953
859
|
"""
|
|
954
860
|
|
|
955
861
|
def evaluate_closure_input_item_move(
|
|
@@ -958,31 +864,36 @@ def evaluate_closure_input_item_move(
|
|
|
958
864
|
/,
|
|
959
865
|
*,
|
|
960
866
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
867
|
+
node_identifier: int | None = 0,
|
|
961
868
|
) -> None:
|
|
962
869
|
"""Move active item
|
|
963
870
|
|
|
964
|
-
:type execution_context: int | str | None
|
|
965
|
-
:type undo: bool | None
|
|
966
871
|
:param direction: Direction, Move direction
|
|
967
|
-
:
|
|
872
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
968
873
|
"""
|
|
969
874
|
|
|
970
875
|
def evaluate_closure_input_item_remove(
|
|
971
|
-
execution_context: int | str | None = None,
|
|
876
|
+
execution_context: int | str | None = None,
|
|
877
|
+
undo: bool | None = None,
|
|
878
|
+
/,
|
|
879
|
+
*,
|
|
880
|
+
node_identifier: int | None = 0,
|
|
972
881
|
) -> None:
|
|
973
882
|
"""Remove active item
|
|
974
883
|
|
|
975
|
-
:
|
|
976
|
-
:type undo: bool | None
|
|
884
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
977
885
|
"""
|
|
978
886
|
|
|
979
887
|
def evaluate_closure_output_item_add(
|
|
980
|
-
execution_context: int | str | None = None,
|
|
888
|
+
execution_context: int | str | None = None,
|
|
889
|
+
undo: bool | None = None,
|
|
890
|
+
/,
|
|
891
|
+
*,
|
|
892
|
+
node_identifier: int | None = 0,
|
|
981
893
|
) -> None:
|
|
982
894
|
"""Add item below active item
|
|
983
895
|
|
|
984
|
-
:
|
|
985
|
-
:type undo: bool | None
|
|
896
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
986
897
|
"""
|
|
987
898
|
|
|
988
899
|
def evaluate_closure_output_item_move(
|
|
@@ -991,175 +902,307 @@ def evaluate_closure_output_item_move(
|
|
|
991
902
|
/,
|
|
992
903
|
*,
|
|
993
904
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
905
|
+
node_identifier: int | None = 0,
|
|
994
906
|
) -> None:
|
|
995
907
|
"""Move active item
|
|
996
908
|
|
|
997
|
-
:type execution_context: int | str | None
|
|
998
|
-
:type undo: bool | None
|
|
999
909
|
:param direction: Direction, Move direction
|
|
1000
|
-
:
|
|
910
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1001
911
|
"""
|
|
1002
912
|
|
|
1003
913
|
def evaluate_closure_output_item_remove(
|
|
1004
|
-
execution_context: int | str | None = None,
|
|
914
|
+
execution_context: int | str | None = None,
|
|
915
|
+
undo: bool | None = None,
|
|
916
|
+
/,
|
|
917
|
+
*,
|
|
918
|
+
node_identifier: int | None = 0,
|
|
1005
919
|
) -> None:
|
|
1006
920
|
"""Remove active item
|
|
1007
921
|
|
|
1008
|
-
:
|
|
1009
|
-
:type undo: bool | None
|
|
1010
|
-
"""
|
|
1011
|
-
|
|
1012
|
-
def find_node(
|
|
1013
|
-
execution_context: int | str | None = None, undo: bool | None = None
|
|
1014
|
-
) -> None:
|
|
1015
|
-
"""Search for a node by name and focus and select it
|
|
1016
|
-
|
|
1017
|
-
:type execution_context: int | str | None
|
|
1018
|
-
:type undo: bool | None
|
|
922
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1019
923
|
"""
|
|
1020
924
|
|
|
1021
|
-
def
|
|
1022
|
-
execution_context: int | str | None = None,
|
|
925
|
+
def field_to_grid_item_add(
|
|
926
|
+
execution_context: int | str | None = None,
|
|
927
|
+
undo: bool | None = None,
|
|
928
|
+
/,
|
|
929
|
+
*,
|
|
930
|
+
node_identifier: int | None = 0,
|
|
1023
931
|
) -> None:
|
|
1024
932
|
"""Add item below active item
|
|
1025
933
|
|
|
1026
|
-
:
|
|
1027
|
-
:type undo: bool | None
|
|
934
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1028
935
|
"""
|
|
1029
936
|
|
|
1030
|
-
def
|
|
937
|
+
def field_to_grid_item_move(
|
|
1031
938
|
execution_context: int | str | None = None,
|
|
1032
939
|
undo: bool | None = None,
|
|
1033
940
|
/,
|
|
1034
941
|
*,
|
|
1035
942
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
943
|
+
node_identifier: int | None = 0,
|
|
1036
944
|
) -> None:
|
|
1037
945
|
"""Move active item
|
|
1038
946
|
|
|
1039
|
-
:type execution_context: int | str | None
|
|
1040
|
-
:type undo: bool | None
|
|
1041
947
|
:param direction: Direction, Move direction
|
|
1042
|
-
:
|
|
948
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1043
949
|
"""
|
|
1044
950
|
|
|
1045
|
-
def
|
|
1046
|
-
execution_context: int | str | None = None,
|
|
951
|
+
def field_to_grid_item_remove(
|
|
952
|
+
execution_context: int | str | None = None,
|
|
953
|
+
undo: bool | None = None,
|
|
954
|
+
/,
|
|
955
|
+
*,
|
|
956
|
+
node_identifier: int | None = 0,
|
|
1047
957
|
) -> None:
|
|
1048
958
|
"""Remove active item
|
|
1049
959
|
|
|
1050
|
-
:
|
|
1051
|
-
:type undo: bool | None
|
|
960
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1052
961
|
"""
|
|
1053
962
|
|
|
1054
|
-
def
|
|
1055
|
-
execution_context: int | str | None = None,
|
|
963
|
+
def file_output_item_add(
|
|
964
|
+
execution_context: int | str | None = None,
|
|
965
|
+
undo: bool | None = None,
|
|
966
|
+
/,
|
|
967
|
+
*,
|
|
968
|
+
node_identifier: int | None = 0,
|
|
1056
969
|
) -> None:
|
|
1057
970
|
"""Add item below active item
|
|
1058
971
|
|
|
1059
|
-
:
|
|
1060
|
-
:type undo: bool | None
|
|
972
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1061
973
|
"""
|
|
1062
974
|
|
|
1063
|
-
def
|
|
975
|
+
def file_output_item_move(
|
|
1064
976
|
execution_context: int | str | None = None,
|
|
1065
977
|
undo: bool | None = None,
|
|
1066
978
|
/,
|
|
1067
979
|
*,
|
|
1068
980
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
981
|
+
node_identifier: int | None = 0,
|
|
1069
982
|
) -> None:
|
|
1070
983
|
"""Move active item
|
|
1071
984
|
|
|
1072
|
-
:type execution_context: int | str | None
|
|
1073
|
-
:type undo: bool | None
|
|
1074
985
|
:param direction: Direction, Move direction
|
|
1075
|
-
:
|
|
986
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1076
987
|
"""
|
|
1077
988
|
|
|
1078
|
-
def
|
|
1079
|
-
execution_context: int | str | None = None,
|
|
989
|
+
def file_output_item_remove(
|
|
990
|
+
execution_context: int | str | None = None,
|
|
991
|
+
undo: bool | None = None,
|
|
992
|
+
/,
|
|
993
|
+
*,
|
|
994
|
+
node_identifier: int | None = 0,
|
|
1080
995
|
) -> None:
|
|
1081
996
|
"""Remove active item
|
|
1082
997
|
|
|
1083
|
-
:
|
|
1084
|
-
:type undo: bool | None
|
|
998
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1085
999
|
"""
|
|
1086
1000
|
|
|
1087
|
-
def
|
|
1088
|
-
execution_context: int | str | None = None,
|
|
1001
|
+
def find_node(
|
|
1002
|
+
execution_context: int | str | None = None,
|
|
1003
|
+
undo: bool | None = None,
|
|
1004
|
+
/,
|
|
1005
|
+
) -> None:
|
|
1006
|
+
"""Search for a node by name and focus and select it"""
|
|
1007
|
+
|
|
1008
|
+
def foreach_geometry_element_zone_generation_item_add(
|
|
1009
|
+
execution_context: int | str | None = None,
|
|
1010
|
+
undo: bool | None = None,
|
|
1011
|
+
/,
|
|
1012
|
+
*,
|
|
1013
|
+
node_identifier: int | None = 0,
|
|
1089
1014
|
) -> None:
|
|
1090
1015
|
"""Add item below active item
|
|
1091
1016
|
|
|
1092
|
-
:
|
|
1093
|
-
:type undo: bool | None
|
|
1017
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1094
1018
|
"""
|
|
1095
1019
|
|
|
1096
|
-
def
|
|
1020
|
+
def foreach_geometry_element_zone_generation_item_move(
|
|
1097
1021
|
execution_context: int | str | None = None,
|
|
1098
1022
|
undo: bool | None = None,
|
|
1099
1023
|
/,
|
|
1100
1024
|
*,
|
|
1101
1025
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1026
|
+
node_identifier: int | None = 0,
|
|
1102
1027
|
) -> None:
|
|
1103
1028
|
"""Move active item
|
|
1104
1029
|
|
|
1105
|
-
:type execution_context: int | str | None
|
|
1106
|
-
:type undo: bool | None
|
|
1107
1030
|
:param direction: Direction, Move direction
|
|
1108
|
-
:
|
|
1031
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1109
1032
|
"""
|
|
1110
1033
|
|
|
1111
|
-
def
|
|
1112
|
-
execution_context: int | str | None = None,
|
|
1034
|
+
def foreach_geometry_element_zone_generation_item_remove(
|
|
1035
|
+
execution_context: int | str | None = None,
|
|
1036
|
+
undo: bool | None = None,
|
|
1037
|
+
/,
|
|
1038
|
+
*,
|
|
1039
|
+
node_identifier: int | None = 0,
|
|
1113
1040
|
) -> None:
|
|
1114
1041
|
"""Remove active item
|
|
1115
1042
|
|
|
1116
|
-
:
|
|
1117
|
-
:type undo: bool | None
|
|
1043
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1118
1044
|
"""
|
|
1119
1045
|
|
|
1120
|
-
def
|
|
1121
|
-
execution_context: int | str | None = None,
|
|
1046
|
+
def foreach_geometry_element_zone_input_item_add(
|
|
1047
|
+
execution_context: int | str | None = None,
|
|
1048
|
+
undo: bool | None = None,
|
|
1049
|
+
/,
|
|
1050
|
+
*,
|
|
1051
|
+
node_identifier: int | None = 0,
|
|
1122
1052
|
) -> None:
|
|
1123
1053
|
"""Add item below active item
|
|
1124
1054
|
|
|
1125
|
-
:
|
|
1126
|
-
:type undo: bool | None
|
|
1055
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1127
1056
|
"""
|
|
1128
1057
|
|
|
1129
|
-
def
|
|
1058
|
+
def foreach_geometry_element_zone_input_item_move(
|
|
1130
1059
|
execution_context: int | str | None = None,
|
|
1131
1060
|
undo: bool | None = None,
|
|
1132
1061
|
/,
|
|
1133
1062
|
*,
|
|
1134
1063
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1064
|
+
node_identifier: int | None = 0,
|
|
1135
1065
|
) -> None:
|
|
1136
1066
|
"""Move active item
|
|
1137
1067
|
|
|
1138
|
-
:type execution_context: int | str | None
|
|
1139
|
-
:type undo: bool | None
|
|
1140
1068
|
:param direction: Direction, Move direction
|
|
1141
|
-
:
|
|
1069
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1142
1070
|
"""
|
|
1143
1071
|
|
|
1144
|
-
def
|
|
1145
|
-
execution_context: int | str | None = None,
|
|
1072
|
+
def foreach_geometry_element_zone_input_item_remove(
|
|
1073
|
+
execution_context: int | str | None = None,
|
|
1074
|
+
undo: bool | None = None,
|
|
1075
|
+
/,
|
|
1076
|
+
*,
|
|
1077
|
+
node_identifier: int | None = 0,
|
|
1146
1078
|
) -> None:
|
|
1147
1079
|
"""Remove active item
|
|
1148
1080
|
|
|
1149
|
-
:
|
|
1150
|
-
:type undo: bool | None
|
|
1081
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1151
1082
|
"""
|
|
1152
1083
|
|
|
1153
|
-
def
|
|
1154
|
-
execution_context: int | str | None = None,
|
|
1084
|
+
def foreach_geometry_element_zone_main_item_add(
|
|
1085
|
+
execution_context: int | str | None = None,
|
|
1086
|
+
undo: bool | None = None,
|
|
1087
|
+
/,
|
|
1088
|
+
*,
|
|
1089
|
+
node_identifier: int | None = 0,
|
|
1155
1090
|
) -> None:
|
|
1156
|
-
"""Add
|
|
1091
|
+
"""Add item below active item
|
|
1157
1092
|
|
|
1158
|
-
:
|
|
1159
|
-
:type undo: bool | None
|
|
1093
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1160
1094
|
"""
|
|
1161
1095
|
|
|
1162
|
-
def
|
|
1096
|
+
def foreach_geometry_element_zone_main_item_move(
|
|
1097
|
+
execution_context: int | str | None = None,
|
|
1098
|
+
undo: bool | None = None,
|
|
1099
|
+
/,
|
|
1100
|
+
*,
|
|
1101
|
+
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1102
|
+
node_identifier: int | None = 0,
|
|
1103
|
+
) -> None:
|
|
1104
|
+
"""Move active item
|
|
1105
|
+
|
|
1106
|
+
:param direction: Direction, Move direction
|
|
1107
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1108
|
+
"""
|
|
1109
|
+
|
|
1110
|
+
def foreach_geometry_element_zone_main_item_remove(
|
|
1111
|
+
execution_context: int | str | None = None,
|
|
1112
|
+
undo: bool | None = None,
|
|
1113
|
+
/,
|
|
1114
|
+
*,
|
|
1115
|
+
node_identifier: int | None = 0,
|
|
1116
|
+
) -> None:
|
|
1117
|
+
"""Remove active item
|
|
1118
|
+
|
|
1119
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1120
|
+
"""
|
|
1121
|
+
|
|
1122
|
+
def format_string_item_add(
|
|
1123
|
+
execution_context: int | str | None = None,
|
|
1124
|
+
undo: bool | None = None,
|
|
1125
|
+
/,
|
|
1126
|
+
*,
|
|
1127
|
+
node_identifier: int | None = 0,
|
|
1128
|
+
) -> None:
|
|
1129
|
+
"""Add item below active item
|
|
1130
|
+
|
|
1131
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1132
|
+
"""
|
|
1133
|
+
|
|
1134
|
+
def format_string_item_move(
|
|
1135
|
+
execution_context: int | str | None = None,
|
|
1136
|
+
undo: bool | None = None,
|
|
1137
|
+
/,
|
|
1138
|
+
*,
|
|
1139
|
+
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1140
|
+
node_identifier: int | None = 0,
|
|
1141
|
+
) -> None:
|
|
1142
|
+
"""Move active item
|
|
1143
|
+
|
|
1144
|
+
:param direction: Direction, Move direction
|
|
1145
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1146
|
+
"""
|
|
1147
|
+
|
|
1148
|
+
def format_string_item_remove(
|
|
1149
|
+
execution_context: int | str | None = None,
|
|
1150
|
+
undo: bool | None = None,
|
|
1151
|
+
/,
|
|
1152
|
+
*,
|
|
1153
|
+
node_identifier: int | None = 0,
|
|
1154
|
+
) -> None:
|
|
1155
|
+
"""Remove active item
|
|
1156
|
+
|
|
1157
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1158
|
+
"""
|
|
1159
|
+
|
|
1160
|
+
def geometry_nodes_viewer_item_add(
|
|
1161
|
+
execution_context: int | str | None = None,
|
|
1162
|
+
undo: bool | None = None,
|
|
1163
|
+
/,
|
|
1164
|
+
*,
|
|
1165
|
+
node_identifier: int | None = 0,
|
|
1166
|
+
) -> None:
|
|
1167
|
+
"""Add item below active item
|
|
1168
|
+
|
|
1169
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1170
|
+
"""
|
|
1171
|
+
|
|
1172
|
+
def geometry_nodes_viewer_item_move(
|
|
1173
|
+
execution_context: int | str | None = None,
|
|
1174
|
+
undo: bool | None = None,
|
|
1175
|
+
/,
|
|
1176
|
+
*,
|
|
1177
|
+
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1178
|
+
node_identifier: int | None = 0,
|
|
1179
|
+
) -> None:
|
|
1180
|
+
"""Move active item
|
|
1181
|
+
|
|
1182
|
+
:param direction: Direction, Move direction
|
|
1183
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1184
|
+
"""
|
|
1185
|
+
|
|
1186
|
+
def geometry_nodes_viewer_item_remove(
|
|
1187
|
+
execution_context: int | str | None = None,
|
|
1188
|
+
undo: bool | None = None,
|
|
1189
|
+
/,
|
|
1190
|
+
*,
|
|
1191
|
+
node_identifier: int | None = 0,
|
|
1192
|
+
) -> None:
|
|
1193
|
+
"""Remove active item
|
|
1194
|
+
|
|
1195
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1196
|
+
"""
|
|
1197
|
+
|
|
1198
|
+
def gltf_settings_node_operator(
|
|
1199
|
+
execution_context: int | str | None = None,
|
|
1200
|
+
undo: bool | None = None,
|
|
1201
|
+
/,
|
|
1202
|
+
) -> None:
|
|
1203
|
+
"""Add a node to the active tree for glTF export"""
|
|
1204
|
+
|
|
1205
|
+
def group_edit(
|
|
1163
1206
|
execution_context: int | str | None = None,
|
|
1164
1207
|
undo: bool | None = None,
|
|
1165
1208
|
/,
|
|
@@ -1168,29 +1211,29 @@ def group_edit(
|
|
|
1168
1211
|
) -> None:
|
|
1169
1212
|
"""Edit node group
|
|
1170
1213
|
|
|
1171
|
-
:type execution_context: int | str | None
|
|
1172
|
-
:type undo: bool | None
|
|
1173
1214
|
:param exit: Exit
|
|
1174
|
-
:type exit: bool | None
|
|
1175
1215
|
"""
|
|
1176
1216
|
|
|
1177
|
-
def
|
|
1178
|
-
execution_context: int | str | None = None,
|
|
1217
|
+
def group_enter_exit(
|
|
1218
|
+
execution_context: int | str | None = None,
|
|
1219
|
+
undo: bool | None = None,
|
|
1220
|
+
/,
|
|
1179
1221
|
) -> None:
|
|
1180
|
-
"""
|
|
1222
|
+
"""Enter or exit node group based on cursor location"""
|
|
1181
1223
|
|
|
1182
|
-
|
|
1183
|
-
:
|
|
1184
|
-
|
|
1224
|
+
def group_insert(
|
|
1225
|
+
execution_context: int | str | None = None,
|
|
1226
|
+
undo: bool | None = None,
|
|
1227
|
+
/,
|
|
1228
|
+
) -> None:
|
|
1229
|
+
"""Insert selected nodes into a node group"""
|
|
1185
1230
|
|
|
1186
1231
|
def group_make(
|
|
1187
|
-
execution_context: int | str | None = None,
|
|
1232
|
+
execution_context: int | str | None = None,
|
|
1233
|
+
undo: bool | None = None,
|
|
1234
|
+
/,
|
|
1188
1235
|
) -> None:
|
|
1189
|
-
"""Make group from selected nodes
|
|
1190
|
-
|
|
1191
|
-
:type execution_context: int | str | None
|
|
1192
|
-
:type undo: bool | None
|
|
1193
|
-
"""
|
|
1236
|
+
"""Make group from selected nodes"""
|
|
1194
1237
|
|
|
1195
1238
|
def group_separate(
|
|
1196
1239
|
execution_context: int | str | None = None,
|
|
@@ -1201,8 +1244,6 @@ def group_separate(
|
|
|
1201
1244
|
) -> None:
|
|
1202
1245
|
"""Separate selected nodes from the node group
|
|
1203
1246
|
|
|
1204
|
-
:type execution_context: int | str | None
|
|
1205
|
-
:type undo: bool | None
|
|
1206
1247
|
:param type: Type
|
|
1207
1248
|
|
|
1208
1249
|
COPY
|
|
@@ -1210,43 +1251,39 @@ def group_separate(
|
|
|
1210
1251
|
|
|
1211
1252
|
MOVE
|
|
1212
1253
|
Move -- Move to parent node tree, remove from group.
|
|
1213
|
-
:type type: typing.Literal['COPY','MOVE'] | None
|
|
1214
1254
|
"""
|
|
1215
1255
|
|
|
1216
1256
|
def group_ungroup(
|
|
1217
|
-
execution_context: int | str | None = None,
|
|
1257
|
+
execution_context: int | str | None = None,
|
|
1258
|
+
undo: bool | None = None,
|
|
1259
|
+
/,
|
|
1218
1260
|
) -> None:
|
|
1219
|
-
"""Ungroup selected nodes
|
|
1220
|
-
|
|
1221
|
-
:type execution_context: int | str | None
|
|
1222
|
-
:type undo: bool | None
|
|
1223
|
-
"""
|
|
1261
|
+
"""Ungroup selected nodes"""
|
|
1224
1262
|
|
|
1225
1263
|
def hide_socket_toggle(
|
|
1226
|
-
execution_context: int | str | None = None,
|
|
1264
|
+
execution_context: int | str | None = None,
|
|
1265
|
+
undo: bool | None = None,
|
|
1266
|
+
/,
|
|
1227
1267
|
) -> None:
|
|
1228
|
-
"""Toggle unused node socket display
|
|
1229
|
-
|
|
1230
|
-
:type execution_context: int | str | None
|
|
1231
|
-
:type undo: bool | None
|
|
1232
|
-
"""
|
|
1268
|
+
"""Toggle unused node socket display"""
|
|
1233
1269
|
|
|
1234
1270
|
def hide_toggle(
|
|
1235
|
-
execution_context: int | str | None = None,
|
|
1271
|
+
execution_context: int | str | None = None,
|
|
1272
|
+
undo: bool | None = None,
|
|
1273
|
+
/,
|
|
1236
1274
|
) -> None:
|
|
1237
|
-
"""Toggle
|
|
1238
|
-
|
|
1239
|
-
:type execution_context: int | str | None
|
|
1240
|
-
:type undo: bool | None
|
|
1241
|
-
"""
|
|
1275
|
+
"""Toggle collapsing of selected nodes"""
|
|
1242
1276
|
|
|
1243
1277
|
def index_switch_item_add(
|
|
1244
|
-
execution_context: int | str | None = None,
|
|
1278
|
+
execution_context: int | str | None = None,
|
|
1279
|
+
undo: bool | None = None,
|
|
1280
|
+
/,
|
|
1281
|
+
*,
|
|
1282
|
+
node_identifier: int | None = 0,
|
|
1245
1283
|
) -> None:
|
|
1246
|
-
"""Add
|
|
1284
|
+
"""Add an item to the index switch
|
|
1247
1285
|
|
|
1248
|
-
:
|
|
1249
|
-
:type undo: bool | None
|
|
1286
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1250
1287
|
"""
|
|
1251
1288
|
|
|
1252
1289
|
def index_switch_item_remove(
|
|
@@ -1258,78 +1295,69 @@ def index_switch_item_remove(
|
|
|
1258
1295
|
) -> None:
|
|
1259
1296
|
"""Remove an item from the index switch
|
|
1260
1297
|
|
|
1261
|
-
:type execution_context: int | str | None
|
|
1262
|
-
:type undo: bool | None
|
|
1263
1298
|
:param index: Index, Index to remove
|
|
1264
|
-
:type index: int | None
|
|
1265
1299
|
"""
|
|
1266
1300
|
|
|
1267
1301
|
def insert_offset(
|
|
1268
|
-
execution_context: int | str | None = None,
|
|
1302
|
+
execution_context: int | str | None = None,
|
|
1303
|
+
undo: bool | None = None,
|
|
1304
|
+
/,
|
|
1269
1305
|
) -> None:
|
|
1270
|
-
"""Automatically offset nodes on insertion
|
|
1271
|
-
|
|
1272
|
-
:type execution_context: int | str | None
|
|
1273
|
-
:type undo: bool | None
|
|
1274
|
-
"""
|
|
1306
|
+
"""Automatically offset nodes on insertion"""
|
|
1275
1307
|
|
|
1276
1308
|
def interface_item_duplicate(
|
|
1277
|
-
execution_context: int | str | None = None,
|
|
1309
|
+
execution_context: int | str | None = None,
|
|
1310
|
+
undo: bool | None = None,
|
|
1311
|
+
/,
|
|
1278
1312
|
) -> None:
|
|
1279
|
-
"""Add a copy of the active item to the interface
|
|
1280
|
-
|
|
1281
|
-
:type execution_context: int | str | None
|
|
1282
|
-
:type undo: bool | None
|
|
1283
|
-
"""
|
|
1313
|
+
"""Add a copy of the active item to the interface"""
|
|
1284
1314
|
|
|
1285
1315
|
def interface_item_make_panel_toggle(
|
|
1286
|
-
execution_context: int | str | None = None,
|
|
1316
|
+
execution_context: int | str | None = None,
|
|
1317
|
+
undo: bool | None = None,
|
|
1318
|
+
/,
|
|
1287
1319
|
) -> None:
|
|
1288
|
-
"""Make the active boolean socket a toggle for its parent panel
|
|
1289
|
-
|
|
1290
|
-
:type execution_context: int | str | None
|
|
1291
|
-
:type undo: bool | None
|
|
1292
|
-
"""
|
|
1320
|
+
"""Make the active boolean socket a toggle for its parent panel"""
|
|
1293
1321
|
|
|
1294
1322
|
def interface_item_new(
|
|
1295
1323
|
execution_context: int | str | None = None,
|
|
1296
1324
|
undo: bool | None = None,
|
|
1297
1325
|
/,
|
|
1298
1326
|
*,
|
|
1299
|
-
item_type:
|
|
1327
|
+
item_type: typing.Literal["INPUT", "OUTPUT", "PANEL"] | None = "INPUT",
|
|
1300
1328
|
) -> None:
|
|
1301
1329
|
"""Add a new item to the interface
|
|
1302
1330
|
|
|
1303
|
-
:type execution_context: int | str | None
|
|
1304
|
-
:type undo: bool | None
|
|
1305
1331
|
:param item_type: Item Type, Type of the item to create
|
|
1306
|
-
:type item_type: str | None
|
|
1307
1332
|
"""
|
|
1308
1333
|
|
|
1309
|
-
def
|
|
1310
|
-
execution_context: int | str | None = None,
|
|
1334
|
+
def interface_item_new_panel_toggle(
|
|
1335
|
+
execution_context: int | str | None = None,
|
|
1336
|
+
undo: bool | None = None,
|
|
1337
|
+
/,
|
|
1311
1338
|
) -> None:
|
|
1312
|
-
"""
|
|
1339
|
+
"""Add a checkbox to the currently selected panel"""
|
|
1313
1340
|
|
|
1314
|
-
|
|
1315
|
-
:
|
|
1316
|
-
|
|
1341
|
+
def interface_item_remove(
|
|
1342
|
+
execution_context: int | str | None = None,
|
|
1343
|
+
undo: bool | None = None,
|
|
1344
|
+
/,
|
|
1345
|
+
) -> None:
|
|
1346
|
+
"""Remove selected items from the interface"""
|
|
1317
1347
|
|
|
1318
1348
|
def interface_item_unlink_panel_toggle(
|
|
1319
|
-
execution_context: int | str | None = None,
|
|
1349
|
+
execution_context: int | str | None = None,
|
|
1350
|
+
undo: bool | None = None,
|
|
1351
|
+
/,
|
|
1320
1352
|
) -> None:
|
|
1321
|
-
"""Make the panel toggle a stand-alone socket
|
|
1353
|
+
"""Make the panel toggle a stand-alone socket"""
|
|
1322
1354
|
|
|
1323
|
-
|
|
1324
|
-
:
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
"""Attach selected nodes to a new common frame
|
|
1329
|
-
|
|
1330
|
-
:type execution_context: int | str | None
|
|
1331
|
-
:type undo: bool | None
|
|
1332
|
-
"""
|
|
1355
|
+
def join(
|
|
1356
|
+
execution_context: int | str | None = None,
|
|
1357
|
+
undo: bool | None = None,
|
|
1358
|
+
/,
|
|
1359
|
+
) -> None:
|
|
1360
|
+
"""Attach selected nodes to a new common frame"""
|
|
1333
1361
|
|
|
1334
1362
|
def join_named(
|
|
1335
1363
|
execution_context: int | str | None = None,
|
|
@@ -1341,14 +1369,17 @@ def join_named(
|
|
|
1341
1369
|
) -> None:
|
|
1342
1370
|
"""Create a new frame node around the selected nodes and name it immediately
|
|
1343
1371
|
|
|
1344
|
-
:
|
|
1345
|
-
:type undo: bool | None
|
|
1346
|
-
:param NODE_OT_join: Join Nodes, Attach selected nodes to a new common frame
|
|
1347
|
-
:type NODE_OT_join: join | None
|
|
1372
|
+
:param NODE_OT_join: Join Nodes in Frame, Attach selected nodes to a new common frame
|
|
1348
1373
|
:param WM_OT_call_panel: Call Panel, Open a predefined panel
|
|
1349
|
-
:type WM_OT_call_panel: bpy.ops.wm.call_panel | None
|
|
1350
1374
|
"""
|
|
1351
1375
|
|
|
1376
|
+
def join_nodes(
|
|
1377
|
+
execution_context: int | str | None = None,
|
|
1378
|
+
undo: bool | None = None,
|
|
1379
|
+
/,
|
|
1380
|
+
) -> None:
|
|
1381
|
+
"""Merge selected group input nodes into one if possible"""
|
|
1382
|
+
|
|
1352
1383
|
def link(
|
|
1353
1384
|
execution_context: int | str | None = None,
|
|
1354
1385
|
undo: bool | None = None,
|
|
@@ -1365,24 +1396,14 @@ def link(
|
|
|
1365
1396
|
) -> None:
|
|
1366
1397
|
"""Use the mouse to create a link between two nodes
|
|
1367
1398
|
|
|
1368
|
-
:type execution_context: int | str | None
|
|
1369
|
-
:type undo: bool | None
|
|
1370
1399
|
:param detach: Detach, Detach and redirect existing links
|
|
1371
|
-
:type detach: bool | None
|
|
1372
1400
|
:param drag_start: Drag Start, The position of the mouse cursor at the start of the operation
|
|
1373
|
-
:type drag_start: collections.abc.Iterable[float] | None
|
|
1374
1401
|
:param inside_padding: Inside Padding, Inside distance in UI units from the edge of the region within which to start panning
|
|
1375
|
-
:type inside_padding: float | None
|
|
1376
1402
|
:param outside_padding: Outside Padding, Outside distance in UI units from the edge of the region at which to stop panning
|
|
1377
|
-
:type outside_padding: float | None
|
|
1378
1403
|
:param speed_ramp: Speed Ramp, Width of the zone in UI units where speed increases with distance from the edge
|
|
1379
|
-
:type speed_ramp: float | None
|
|
1380
1404
|
:param max_speed: Max Speed, Maximum speed in UI units per second
|
|
1381
|
-
:type max_speed: float | None
|
|
1382
1405
|
:param delay: Delay, Delay in seconds before maximum speed is reached
|
|
1383
|
-
:type delay: float | None
|
|
1384
1406
|
:param zoom_influence: Zoom Influence, Influence of the zoom factor on scroll speed
|
|
1385
|
-
:type zoom_influence: float | None
|
|
1386
1407
|
"""
|
|
1387
1408
|
|
|
1388
1409
|
def link_make(
|
|
@@ -1394,20 +1415,15 @@ def link_make(
|
|
|
1394
1415
|
) -> None:
|
|
1395
1416
|
"""Make a link between selected output and input sockets
|
|
1396
1417
|
|
|
1397
|
-
:type execution_context: int | str | None
|
|
1398
|
-
:type undo: bool | None
|
|
1399
1418
|
:param replace: Replace, Replace socket connections with the new links
|
|
1400
|
-
:type replace: bool | None
|
|
1401
1419
|
"""
|
|
1402
1420
|
|
|
1403
1421
|
def link_viewer(
|
|
1404
|
-
execution_context: int | str | None = None,
|
|
1422
|
+
execution_context: int | str | None = None,
|
|
1423
|
+
undo: bool | None = None,
|
|
1424
|
+
/,
|
|
1405
1425
|
) -> None:
|
|
1406
|
-
"""Link to viewer node
|
|
1407
|
-
|
|
1408
|
-
:type execution_context: int | str | None
|
|
1409
|
-
:type undo: bool | None
|
|
1410
|
-
"""
|
|
1426
|
+
"""Link to viewer node"""
|
|
1411
1427
|
|
|
1412
1428
|
def links_cut(
|
|
1413
1429
|
execution_context: int | str | None = None,
|
|
@@ -1419,22 +1435,16 @@ def links_cut(
|
|
|
1419
1435
|
) -> None:
|
|
1420
1436
|
"""Use the mouse to cut (remove) some links
|
|
1421
1437
|
|
|
1422
|
-
:type execution_context: int | str | None
|
|
1423
|
-
:type undo: bool | None
|
|
1424
1438
|
:param path: Path
|
|
1425
|
-
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
|
|
1426
1439
|
:param cursor: Cursor
|
|
1427
|
-
:type cursor: int | None
|
|
1428
1440
|
"""
|
|
1429
1441
|
|
|
1430
1442
|
def links_detach(
|
|
1431
|
-
execution_context: int | str | None = None,
|
|
1443
|
+
execution_context: int | str | None = None,
|
|
1444
|
+
undo: bool | None = None,
|
|
1445
|
+
/,
|
|
1432
1446
|
) -> None:
|
|
1433
|
-
"""Remove all links to selected nodes, and try to connect neighbor nodes together
|
|
1434
|
-
|
|
1435
|
-
:type execution_context: int | str | None
|
|
1436
|
-
:type undo: bool | None
|
|
1437
|
-
"""
|
|
1447
|
+
"""Remove all links to selected nodes, and try to connect neighbor nodes together"""
|
|
1438
1448
|
|
|
1439
1449
|
def links_mute(
|
|
1440
1450
|
execution_context: int | str | None = None,
|
|
@@ -1446,12 +1456,8 @@ def links_mute(
|
|
|
1446
1456
|
) -> None:
|
|
1447
1457
|
"""Use the mouse to mute links
|
|
1448
1458
|
|
|
1449
|
-
:type execution_context: int | str | None
|
|
1450
|
-
:type undo: bool | None
|
|
1451
1459
|
:param path: Path
|
|
1452
|
-
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
|
|
1453
1460
|
:param cursor: Cursor
|
|
1454
|
-
:type cursor: int | None
|
|
1455
1461
|
"""
|
|
1456
1462
|
|
|
1457
1463
|
def move_detach_links(
|
|
@@ -1464,12 +1470,8 @@ def move_detach_links(
|
|
|
1464
1470
|
) -> None:
|
|
1465
1471
|
"""Move a node to detach links
|
|
1466
1472
|
|
|
1467
|
-
:type execution_context: int | str | None
|
|
1468
|
-
:type undo: bool | None
|
|
1469
1473
|
:param NODE_OT_links_detach: Detach Links, Remove all links to selected nodes, and try to connect neighbor nodes together
|
|
1470
|
-
:type NODE_OT_links_detach: links_detach | None
|
|
1471
1474
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
1472
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
1473
1475
|
"""
|
|
1474
1476
|
|
|
1475
1477
|
def move_detach_links_release(
|
|
@@ -1482,64 +1484,61 @@ def move_detach_links_release(
|
|
|
1482
1484
|
) -> None:
|
|
1483
1485
|
"""Move a node to detach links
|
|
1484
1486
|
|
|
1485
|
-
:type execution_context: int | str | None
|
|
1486
|
-
:type undo: bool | None
|
|
1487
1487
|
:param NODE_OT_links_detach: Detach Links, Remove all links to selected nodes, and try to connect neighbor nodes together
|
|
1488
|
-
:type NODE_OT_links_detach: links_detach | None
|
|
1489
1488
|
:param NODE_OT_translate_attach: Move and Attach, Move nodes and attach to frame
|
|
1490
|
-
:type NODE_OT_translate_attach: translate_attach | None
|
|
1491
1489
|
"""
|
|
1492
1490
|
|
|
1493
1491
|
def mute_toggle(
|
|
1494
|
-
execution_context: int | str | None = None,
|
|
1492
|
+
execution_context: int | str | None = None,
|
|
1493
|
+
undo: bool | None = None,
|
|
1494
|
+
/,
|
|
1495
1495
|
) -> None:
|
|
1496
|
-
"""Toggle muting of selected nodes
|
|
1497
|
-
|
|
1498
|
-
:type execution_context: int | str | None
|
|
1499
|
-
:type undo: bool | None
|
|
1500
|
-
"""
|
|
1496
|
+
"""Toggle muting of selected nodes"""
|
|
1501
1497
|
|
|
1502
1498
|
def new_compositing_node_group(
|
|
1503
1499
|
execution_context: int | str | None = None,
|
|
1504
1500
|
undo: bool | None = None,
|
|
1505
1501
|
/,
|
|
1506
1502
|
*,
|
|
1507
|
-
name: str = "
|
|
1503
|
+
name: str = "",
|
|
1508
1504
|
) -> None:
|
|
1509
|
-
"""Create a new compositing node
|
|
1505
|
+
"""Create a new compositing node group and initialize it with default nodes
|
|
1510
1506
|
|
|
1511
|
-
:type execution_context: int | str | None
|
|
1512
|
-
:type undo: bool | None
|
|
1513
1507
|
:param name: Name
|
|
1514
|
-
:type name: str
|
|
1515
1508
|
"""
|
|
1516
1509
|
|
|
1517
|
-
def
|
|
1518
|
-
execution_context: int | str | None = None,
|
|
1510
|
+
def new_compositor_sequencer_node_group(
|
|
1511
|
+
execution_context: int | str | None = None,
|
|
1512
|
+
undo: bool | None = None,
|
|
1513
|
+
/,
|
|
1514
|
+
*,
|
|
1515
|
+
name: str = "Sequencer Compositor Nodes",
|
|
1519
1516
|
) -> None:
|
|
1520
|
-
"""Create a new
|
|
1517
|
+
"""Create a new compositor node group for sequencer
|
|
1521
1518
|
|
|
1522
|
-
:
|
|
1523
|
-
:type undo: bool | None
|
|
1519
|
+
:param name: Name
|
|
1524
1520
|
"""
|
|
1525
1521
|
|
|
1526
|
-
def
|
|
1527
|
-
execution_context: int | str | None = None,
|
|
1522
|
+
def new_geometry_node_group_assign(
|
|
1523
|
+
execution_context: int | str | None = None,
|
|
1524
|
+
undo: bool | None = None,
|
|
1525
|
+
/,
|
|
1528
1526
|
) -> None:
|
|
1529
|
-
"""Create a new geometry node group
|
|
1527
|
+
"""Create a new geometry node group and assign it to the active modifier"""
|
|
1530
1528
|
|
|
1531
|
-
|
|
1532
|
-
:
|
|
1533
|
-
|
|
1529
|
+
def new_geometry_node_group_tool(
|
|
1530
|
+
execution_context: int | str | None = None,
|
|
1531
|
+
undo: bool | None = None,
|
|
1532
|
+
/,
|
|
1533
|
+
) -> None:
|
|
1534
|
+
"""Create a new geometry node group for a tool"""
|
|
1534
1535
|
|
|
1535
1536
|
def new_geometry_nodes_modifier(
|
|
1536
|
-
execution_context: int | str | None = None,
|
|
1537
|
+
execution_context: int | str | None = None,
|
|
1538
|
+
undo: bool | None = None,
|
|
1539
|
+
/,
|
|
1537
1540
|
) -> None:
|
|
1538
|
-
"""Create a new modifier with a new geometry node group
|
|
1539
|
-
|
|
1540
|
-
:type execution_context: int | str | None
|
|
1541
|
-
:type undo: bool | None
|
|
1542
|
-
"""
|
|
1541
|
+
"""Create a new modifier with a new geometry node group"""
|
|
1543
1542
|
|
|
1544
1543
|
def new_node_tree(
|
|
1545
1544
|
execution_context: int | str | None = None,
|
|
@@ -1551,12 +1550,8 @@ def new_node_tree(
|
|
|
1551
1550
|
) -> None:
|
|
1552
1551
|
"""Create a new node tree
|
|
1553
1552
|
|
|
1554
|
-
:type execution_context: int | str | None
|
|
1555
|
-
:type undo: bool | None
|
|
1556
1553
|
:param type: Tree Type
|
|
1557
|
-
:type type: str | None
|
|
1558
1554
|
:param name: Name
|
|
1559
|
-
:type name: str
|
|
1560
1555
|
"""
|
|
1561
1556
|
|
|
1562
1557
|
def node_color_preset_add(
|
|
@@ -1570,116 +1565,63 @@ def node_color_preset_add(
|
|
|
1570
1565
|
) -> None:
|
|
1571
1566
|
"""Add or remove a Node Color Preset
|
|
1572
1567
|
|
|
1573
|
-
:type execution_context: int | str | None
|
|
1574
|
-
:type undo: bool | None
|
|
1575
1568
|
:param name: Name, Name of the preset, used to make the path name
|
|
1576
|
-
:type name: str
|
|
1577
1569
|
:param remove_name: remove_name
|
|
1578
|
-
:type remove_name: bool | None
|
|
1579
1570
|
:param remove_active: remove_active
|
|
1580
|
-
:type remove_active: bool | None
|
|
1581
1571
|
"""
|
|
1582
1572
|
|
|
1583
1573
|
def node_copy_color(
|
|
1584
|
-
execution_context: int | str | None = None, undo: bool | None = None
|
|
1585
|
-
) -> None:
|
|
1586
|
-
"""Copy color to all selected nodes
|
|
1587
|
-
|
|
1588
|
-
:type execution_context: int | str | None
|
|
1589
|
-
:type undo: bool | None
|
|
1590
|
-
"""
|
|
1591
|
-
|
|
1592
|
-
def options_toggle(
|
|
1593
|
-
execution_context: int | str | None = None, undo: bool | None = None
|
|
1594
|
-
) -> None:
|
|
1595
|
-
"""Toggle option buttons display for selected nodes
|
|
1596
|
-
|
|
1597
|
-
:type execution_context: int | str | None
|
|
1598
|
-
:type undo: bool | None
|
|
1599
|
-
"""
|
|
1600
|
-
|
|
1601
|
-
def output_file_add_socket(
|
|
1602
1574
|
execution_context: int | str | None = None,
|
|
1603
1575
|
undo: bool | None = None,
|
|
1604
1576
|
/,
|
|
1605
|
-
*,
|
|
1606
|
-
file_path: str = "Image",
|
|
1607
1577
|
) -> None:
|
|
1608
|
-
"""
|
|
1609
|
-
|
|
1610
|
-
:type execution_context: int | str | None
|
|
1611
|
-
:type undo: bool | None
|
|
1612
|
-
:param file_path: File Path, Subpath of the output file
|
|
1613
|
-
:type file_path: str
|
|
1614
|
-
"""
|
|
1578
|
+
"""Copy color to all selected nodes"""
|
|
1615
1579
|
|
|
1616
|
-
def
|
|
1580
|
+
def options_toggle(
|
|
1617
1581
|
execution_context: int | str | None = None,
|
|
1618
1582
|
undo: bool | None = None,
|
|
1619
1583
|
/,
|
|
1620
|
-
*,
|
|
1621
|
-
direction: typing.Literal["UP", "DOWN"] | None = "DOWN",
|
|
1622
1584
|
) -> None:
|
|
1623
|
-
"""
|
|
1624
|
-
|
|
1625
|
-
:type execution_context: int | str | None
|
|
1626
|
-
:type undo: bool | None
|
|
1627
|
-
:param direction: Direction
|
|
1628
|
-
:type direction: typing.Literal['UP','DOWN'] | None
|
|
1629
|
-
"""
|
|
1630
|
-
|
|
1631
|
-
def output_file_remove_active_socket(
|
|
1632
|
-
execution_context: int | str | None = None, undo: bool | None = None
|
|
1633
|
-
) -> None:
|
|
1634
|
-
"""Remove the active input from a file output node
|
|
1635
|
-
|
|
1636
|
-
:type execution_context: int | str | None
|
|
1637
|
-
:type undo: bool | None
|
|
1638
|
-
"""
|
|
1585
|
+
"""Toggle option buttons display for selected nodes"""
|
|
1639
1586
|
|
|
1640
1587
|
def parent_set(
|
|
1641
|
-
execution_context: int | str | None = None,
|
|
1588
|
+
execution_context: int | str | None = None,
|
|
1589
|
+
undo: bool | None = None,
|
|
1590
|
+
/,
|
|
1642
1591
|
) -> None:
|
|
1643
|
-
"""Attach selected nodes
|
|
1644
|
-
|
|
1645
|
-
:type execution_context: int | str | None
|
|
1646
|
-
:type undo: bool | None
|
|
1647
|
-
"""
|
|
1592
|
+
"""Attach selected nodes"""
|
|
1648
1593
|
|
|
1649
1594
|
def preview_toggle(
|
|
1650
|
-
execution_context: int | str | None = None,
|
|
1595
|
+
execution_context: int | str | None = None,
|
|
1596
|
+
undo: bool | None = None,
|
|
1597
|
+
/,
|
|
1651
1598
|
) -> None:
|
|
1652
|
-
"""Toggle preview display for selected nodes
|
|
1653
|
-
|
|
1654
|
-
:type execution_context: int | str | None
|
|
1655
|
-
:type undo: bool | None
|
|
1656
|
-
"""
|
|
1599
|
+
"""Toggle preview display for selected nodes"""
|
|
1657
1600
|
|
|
1658
1601
|
def read_viewlayers(
|
|
1659
|
-
execution_context: int | str | None = None,
|
|
1602
|
+
execution_context: int | str | None = None,
|
|
1603
|
+
undo: bool | None = None,
|
|
1604
|
+
/,
|
|
1660
1605
|
) -> None:
|
|
1661
|
-
"""Read all render layers of all used scenes
|
|
1662
|
-
|
|
1663
|
-
:type execution_context: int | str | None
|
|
1664
|
-
:type undo: bool | None
|
|
1665
|
-
"""
|
|
1606
|
+
"""Read all render layers of all used scenes"""
|
|
1666
1607
|
|
|
1667
1608
|
def render_changed(
|
|
1668
|
-
execution_context: int | str | None = None,
|
|
1609
|
+
execution_context: int | str | None = None,
|
|
1610
|
+
undo: bool | None = None,
|
|
1611
|
+
/,
|
|
1669
1612
|
) -> None:
|
|
1670
|
-
"""Render current scene, when input
|
|
1671
|
-
|
|
1672
|
-
:type execution_context: int | str | None
|
|
1673
|
-
:type undo: bool | None
|
|
1674
|
-
"""
|
|
1613
|
+
"""Render current scene, when input nodes layer has been changed"""
|
|
1675
1614
|
|
|
1676
1615
|
def repeat_zone_item_add(
|
|
1677
|
-
execution_context: int | str | None = None,
|
|
1616
|
+
execution_context: int | str | None = None,
|
|
1617
|
+
undo: bool | None = None,
|
|
1618
|
+
/,
|
|
1619
|
+
*,
|
|
1620
|
+
node_identifier: int | None = 0,
|
|
1678
1621
|
) -> None:
|
|
1679
1622
|
"""Add item below active item
|
|
1680
1623
|
|
|
1681
|
-
:
|
|
1682
|
-
:type undo: bool | None
|
|
1624
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1683
1625
|
"""
|
|
1684
1626
|
|
|
1685
1627
|
def repeat_zone_item_move(
|
|
@@ -1688,32 +1630,32 @@ def repeat_zone_item_move(
|
|
|
1688
1630
|
/,
|
|
1689
1631
|
*,
|
|
1690
1632
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1633
|
+
node_identifier: int | None = 0,
|
|
1691
1634
|
) -> None:
|
|
1692
1635
|
"""Move active item
|
|
1693
1636
|
|
|
1694
|
-
:type execution_context: int | str | None
|
|
1695
|
-
:type undo: bool | None
|
|
1696
1637
|
:param direction: Direction, Move direction
|
|
1697
|
-
:
|
|
1638
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1698
1639
|
"""
|
|
1699
1640
|
|
|
1700
1641
|
def repeat_zone_item_remove(
|
|
1701
|
-
execution_context: int | str | None = None,
|
|
1642
|
+
execution_context: int | str | None = None,
|
|
1643
|
+
undo: bool | None = None,
|
|
1644
|
+
/,
|
|
1645
|
+
*,
|
|
1646
|
+
node_identifier: int | None = 0,
|
|
1702
1647
|
) -> None:
|
|
1703
1648
|
"""Remove active item
|
|
1704
1649
|
|
|
1705
|
-
:
|
|
1706
|
-
:type undo: bool | None
|
|
1650
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1707
1651
|
"""
|
|
1708
1652
|
|
|
1709
1653
|
def resize(
|
|
1710
|
-
execution_context: int | str | None = None,
|
|
1654
|
+
execution_context: int | str | None = None,
|
|
1655
|
+
undo: bool | None = None,
|
|
1656
|
+
/,
|
|
1711
1657
|
) -> None:
|
|
1712
|
-
"""Resize a node
|
|
1713
|
-
|
|
1714
|
-
:type execution_context: int | str | None
|
|
1715
|
-
:type undo: bool | None
|
|
1716
|
-
"""
|
|
1658
|
+
"""Resize a node"""
|
|
1717
1659
|
|
|
1718
1660
|
def select(
|
|
1719
1661
|
execution_context: int | str | None = None,
|
|
@@ -1731,24 +1673,14 @@ def select(
|
|
|
1731
1673
|
) -> None:
|
|
1732
1674
|
"""Select the node under the cursor
|
|
1733
1675
|
|
|
1734
|
-
:type execution_context: int | str | None
|
|
1735
|
-
:type undo: bool | None
|
|
1736
1676
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
1737
|
-
:type extend: bool | None
|
|
1738
1677
|
:param deselect: Deselect, Remove from selection
|
|
1739
|
-
:type deselect: bool | None
|
|
1740
1678
|
:param toggle: Toggle Selection, Toggle the selection
|
|
1741
|
-
:type toggle: bool | None
|
|
1742
1679
|
:param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
|
|
1743
|
-
:type deselect_all: bool | None
|
|
1744
1680
|
:param select_passthrough: Only Select Unselected, Ignore the select action when the element is already selected
|
|
1745
|
-
:type select_passthrough: bool | None
|
|
1746
1681
|
:param location: Location, Mouse location
|
|
1747
|
-
:type location: collections.abc.Iterable[int] | None
|
|
1748
1682
|
:param socket_select: Socket Select
|
|
1749
|
-
:type socket_select: bool | None
|
|
1750
1683
|
:param clear_viewer: Clear Viewer, Deactivate geometry nodes viewer when clicking in empty space
|
|
1751
|
-
:type clear_viewer: bool | None
|
|
1752
1684
|
"""
|
|
1753
1685
|
|
|
1754
1686
|
def select_all(
|
|
@@ -1760,8 +1692,6 @@ def select_all(
|
|
|
1760
1692
|
) -> None:
|
|
1761
1693
|
"""(De)select all nodes
|
|
1762
1694
|
|
|
1763
|
-
:type execution_context: int | str | None
|
|
1764
|
-
:type undo: bool | None
|
|
1765
1695
|
:param action: Action, Selection action to execute
|
|
1766
1696
|
|
|
1767
1697
|
TOGGLE
|
|
@@ -1775,7 +1705,6 @@ def select_all(
|
|
|
1775
1705
|
|
|
1776
1706
|
INVERT
|
|
1777
1707
|
Invert -- Invert selection of all elements.
|
|
1778
|
-
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
1779
1708
|
"""
|
|
1780
1709
|
|
|
1781
1710
|
def select_box(
|
|
@@ -1793,20 +1722,12 @@ def select_box(
|
|
|
1793
1722
|
) -> None:
|
|
1794
1723
|
"""Use box selection to select nodes
|
|
1795
1724
|
|
|
1796
|
-
:type execution_context: int | str | None
|
|
1797
|
-
:type undo: bool | None
|
|
1798
1725
|
:param tweak: Tweak, Only activate when mouse is not over a node (useful for tweak gesture)
|
|
1799
|
-
:type tweak: bool | None
|
|
1800
1726
|
:param xmin: X Min
|
|
1801
|
-
:type xmin: int | None
|
|
1802
1727
|
:param xmax: X Max
|
|
1803
|
-
:type xmax: int | None
|
|
1804
1728
|
:param ymin: Y Min
|
|
1805
|
-
:type ymin: int | None
|
|
1806
1729
|
:param ymax: Y Max
|
|
1807
|
-
:type ymax: int | None
|
|
1808
1730
|
:param wait_for_input: Wait for Input
|
|
1809
|
-
:type wait_for_input: bool | None
|
|
1810
1731
|
:param mode: Mode
|
|
1811
1732
|
|
|
1812
1733
|
SET
|
|
@@ -1817,7 +1738,6 @@ def select_box(
|
|
|
1817
1738
|
|
|
1818
1739
|
SUB
|
|
1819
1740
|
Subtract -- Subtract existing selection.
|
|
1820
|
-
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
1821
1741
|
"""
|
|
1822
1742
|
|
|
1823
1743
|
def select_circle(
|
|
@@ -1833,16 +1753,10 @@ def select_circle(
|
|
|
1833
1753
|
) -> None:
|
|
1834
1754
|
"""Use circle selection to select nodes
|
|
1835
1755
|
|
|
1836
|
-
:type execution_context: int | str | None
|
|
1837
|
-
:type undo: bool | None
|
|
1838
1756
|
:param x: X
|
|
1839
|
-
:type x: int | None
|
|
1840
1757
|
:param y: Y
|
|
1841
|
-
:type y: int | None
|
|
1842
1758
|
:param radius: Radius
|
|
1843
|
-
:type radius: int | None
|
|
1844
1759
|
:param wait_for_input: Wait for Input
|
|
1845
|
-
:type wait_for_input: bool | None
|
|
1846
1760
|
:param mode: Mode
|
|
1847
1761
|
|
|
1848
1762
|
SET
|
|
@@ -1853,7 +1767,6 @@ def select_circle(
|
|
|
1853
1767
|
|
|
1854
1768
|
SUB
|
|
1855
1769
|
Subtract -- Subtract existing selection.
|
|
1856
|
-
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
1857
1770
|
"""
|
|
1858
1771
|
|
|
1859
1772
|
def select_grouped(
|
|
@@ -1866,12 +1779,8 @@ def select_grouped(
|
|
|
1866
1779
|
) -> None:
|
|
1867
1780
|
"""Select nodes with similar properties
|
|
1868
1781
|
|
|
1869
|
-
:type execution_context: int | str | None
|
|
1870
|
-
:type undo: bool | None
|
|
1871
1782
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
1872
|
-
:type extend: bool | None
|
|
1873
1783
|
:param type: Type
|
|
1874
|
-
:type type: typing.Literal['TYPE','COLOR','PREFIX','SUFFIX'] | None
|
|
1875
1784
|
"""
|
|
1876
1785
|
|
|
1877
1786
|
def select_lasso(
|
|
@@ -1888,18 +1797,11 @@ def select_lasso(
|
|
|
1888
1797
|
) -> None:
|
|
1889
1798
|
"""Select nodes using lasso selection
|
|
1890
1799
|
|
|
1891
|
-
:type execution_context: int | str | None
|
|
1892
|
-
:type undo: bool | None
|
|
1893
1800
|
:param tweak: Tweak, Only activate when mouse is not over a node (useful for tweak gesture)
|
|
1894
|
-
:type tweak: bool | None
|
|
1895
1801
|
:param path: Path
|
|
1896
|
-
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
|
|
1897
1802
|
:param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
|
|
1898
|
-
:type use_smooth_stroke: bool | None
|
|
1899
1803
|
:param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
|
|
1900
|
-
:type smooth_stroke_factor: float | None
|
|
1901
1804
|
:param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
|
|
1902
|
-
:type smooth_stroke_radius: int | None
|
|
1903
1805
|
:param mode: Mode
|
|
1904
1806
|
|
|
1905
1807
|
SET
|
|
@@ -1910,7 +1812,6 @@ def select_lasso(
|
|
|
1910
1812
|
|
|
1911
1813
|
SUB
|
|
1912
1814
|
Subtract -- Subtract existing selection.
|
|
1913
|
-
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
1914
1815
|
"""
|
|
1915
1816
|
|
|
1916
1817
|
def select_link_viewer(
|
|
@@ -1923,31 +1824,23 @@ def select_link_viewer(
|
|
|
1923
1824
|
) -> None:
|
|
1924
1825
|
"""Select node and link it to a viewer node
|
|
1925
1826
|
|
|
1926
|
-
:type execution_context: int | str | None
|
|
1927
|
-
:type undo: bool | None
|
|
1928
1827
|
:param NODE_OT_select: Select, Select the node under the cursor
|
|
1929
|
-
:type NODE_OT_select: select | None
|
|
1930
1828
|
:param NODE_OT_link_viewer: Link to Viewer Node, Link to viewer node
|
|
1931
|
-
:type NODE_OT_link_viewer: link_viewer | None
|
|
1932
1829
|
"""
|
|
1933
1830
|
|
|
1934
1831
|
def select_linked_from(
|
|
1935
|
-
execution_context: int | str | None = None,
|
|
1832
|
+
execution_context: int | str | None = None,
|
|
1833
|
+
undo: bool | None = None,
|
|
1834
|
+
/,
|
|
1936
1835
|
) -> None:
|
|
1937
|
-
"""Select nodes linked from the selected ones
|
|
1938
|
-
|
|
1939
|
-
:type execution_context: int | str | None
|
|
1940
|
-
:type undo: bool | None
|
|
1941
|
-
"""
|
|
1836
|
+
"""Select nodes linked from the selected ones"""
|
|
1942
1837
|
|
|
1943
1838
|
def select_linked_to(
|
|
1944
|
-
execution_context: int | str | None = None,
|
|
1839
|
+
execution_context: int | str | None = None,
|
|
1840
|
+
undo: bool | None = None,
|
|
1841
|
+
/,
|
|
1945
1842
|
) -> None:
|
|
1946
|
-
"""Select nodes linked to the selected ones
|
|
1947
|
-
|
|
1948
|
-
:type execution_context: int | str | None
|
|
1949
|
-
:type undo: bool | None
|
|
1950
|
-
"""
|
|
1843
|
+
"""Select nodes linked to the selected ones"""
|
|
1951
1844
|
|
|
1952
1845
|
def select_same_type_step(
|
|
1953
1846
|
execution_context: int | str | None = None,
|
|
@@ -1958,19 +1851,19 @@ def select_same_type_step(
|
|
|
1958
1851
|
) -> None:
|
|
1959
1852
|
"""Activate and view same node type, step by step
|
|
1960
1853
|
|
|
1961
|
-
:type execution_context: int | str | None
|
|
1962
|
-
:type undo: bool | None
|
|
1963
1854
|
:param prev: Previous
|
|
1964
|
-
:type prev: bool | None
|
|
1965
1855
|
"""
|
|
1966
1856
|
|
|
1967
1857
|
def separate_bundle_item_add(
|
|
1968
|
-
execution_context: int | str | None = None,
|
|
1858
|
+
execution_context: int | str | None = None,
|
|
1859
|
+
undo: bool | None = None,
|
|
1860
|
+
/,
|
|
1861
|
+
*,
|
|
1862
|
+
node_identifier: int | None = 0,
|
|
1969
1863
|
) -> None:
|
|
1970
1864
|
"""Add item below active item
|
|
1971
1865
|
|
|
1972
|
-
:
|
|
1973
|
-
:type undo: bool | None
|
|
1866
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1974
1867
|
"""
|
|
1975
1868
|
|
|
1976
1869
|
def separate_bundle_item_move(
|
|
@@ -1979,40 +1872,43 @@ def separate_bundle_item_move(
|
|
|
1979
1872
|
/,
|
|
1980
1873
|
*,
|
|
1981
1874
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1875
|
+
node_identifier: int | None = 0,
|
|
1982
1876
|
) -> None:
|
|
1983
1877
|
"""Move active item
|
|
1984
1878
|
|
|
1985
|
-
:type execution_context: int | str | None
|
|
1986
|
-
:type undo: bool | None
|
|
1987
1879
|
:param direction: Direction, Move direction
|
|
1988
|
-
:
|
|
1880
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1989
1881
|
"""
|
|
1990
1882
|
|
|
1991
1883
|
def separate_bundle_item_remove(
|
|
1992
|
-
execution_context: int | str | None = None,
|
|
1884
|
+
execution_context: int | str | None = None,
|
|
1885
|
+
undo: bool | None = None,
|
|
1886
|
+
/,
|
|
1887
|
+
*,
|
|
1888
|
+
node_identifier: int | None = 0,
|
|
1993
1889
|
) -> None:
|
|
1994
1890
|
"""Remove active item
|
|
1995
1891
|
|
|
1996
|
-
:
|
|
1997
|
-
:type undo: bool | None
|
|
1892
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1998
1893
|
"""
|
|
1999
1894
|
|
|
2000
1895
|
def shader_script_update(
|
|
2001
|
-
execution_context: int | str | None = None,
|
|
1896
|
+
execution_context: int | str | None = None,
|
|
1897
|
+
undo: bool | None = None,
|
|
1898
|
+
/,
|
|
2002
1899
|
) -> None:
|
|
2003
|
-
"""Update shader script node with new sockets and options from the script
|
|
2004
|
-
|
|
2005
|
-
:type execution_context: int | str | None
|
|
2006
|
-
:type undo: bool | None
|
|
2007
|
-
"""
|
|
1900
|
+
"""Update shader script node with new sockets and options from the script"""
|
|
2008
1901
|
|
|
2009
1902
|
def simulation_zone_item_add(
|
|
2010
|
-
execution_context: int | str | None = None,
|
|
1903
|
+
execution_context: int | str | None = None,
|
|
1904
|
+
undo: bool | None = None,
|
|
1905
|
+
/,
|
|
1906
|
+
*,
|
|
1907
|
+
node_identifier: int | None = 0,
|
|
2011
1908
|
) -> None:
|
|
2012
1909
|
"""Add item below active item
|
|
2013
1910
|
|
|
2014
|
-
:
|
|
2015
|
-
:type undo: bool | None
|
|
1911
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
2016
1912
|
"""
|
|
2017
1913
|
|
|
2018
1914
|
def simulation_zone_item_move(
|
|
@@ -2021,24 +1917,120 @@ def simulation_zone_item_move(
|
|
|
2021
1917
|
/,
|
|
2022
1918
|
*,
|
|
2023
1919
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1920
|
+
node_identifier: int | None = 0,
|
|
2024
1921
|
) -> None:
|
|
2025
1922
|
"""Move active item
|
|
2026
1923
|
|
|
2027
|
-
:type execution_context: int | str | None
|
|
2028
|
-
:type undo: bool | None
|
|
2029
1924
|
:param direction: Direction, Move direction
|
|
2030
|
-
:
|
|
1925
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
2031
1926
|
"""
|
|
2032
1927
|
|
|
2033
1928
|
def simulation_zone_item_remove(
|
|
2034
|
-
execution_context: int | str | None = None,
|
|
1929
|
+
execution_context: int | str | None = None,
|
|
1930
|
+
undo: bool | None = None,
|
|
1931
|
+
/,
|
|
1932
|
+
*,
|
|
1933
|
+
node_identifier: int | None = 0,
|
|
2035
1934
|
) -> None:
|
|
2036
1935
|
"""Remove active item
|
|
2037
1936
|
|
|
2038
|
-
:
|
|
2039
|
-
|
|
1937
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1938
|
+
"""
|
|
1939
|
+
|
|
1940
|
+
def sockets_sync(
|
|
1941
|
+
execution_context: int | str | None = None,
|
|
1942
|
+
undo: bool | None = None,
|
|
1943
|
+
/,
|
|
1944
|
+
*,
|
|
1945
|
+
node_name: str = "",
|
|
1946
|
+
) -> None:
|
|
1947
|
+
"""Update sockets to match what is actually used
|
|
1948
|
+
|
|
1949
|
+
:param node_name: Node Name
|
|
2040
1950
|
"""
|
|
2041
1951
|
|
|
1952
|
+
def swap_empty_group(
|
|
1953
|
+
execution_context: int | str | None = None,
|
|
1954
|
+
undo: bool | None = None,
|
|
1955
|
+
/,
|
|
1956
|
+
*,
|
|
1957
|
+
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
1958
|
+
| None = None,
|
|
1959
|
+
) -> None:
|
|
1960
|
+
"""Replace active node with an empty group
|
|
1961
|
+
|
|
1962
|
+
:param settings: Settings, Settings to be applied on the newly created node
|
|
1963
|
+
"""
|
|
1964
|
+
|
|
1965
|
+
def swap_group_asset(
|
|
1966
|
+
execution_context: int | str | None = None,
|
|
1967
|
+
undo: bool | None = None,
|
|
1968
|
+
/,
|
|
1969
|
+
*,
|
|
1970
|
+
asset_library_type: bpy.stub_internal.rna_enums.AssetLibraryTypeItems
|
|
1971
|
+
| None = "LOCAL",
|
|
1972
|
+
asset_library_identifier: str = "",
|
|
1973
|
+
relative_asset_identifier: str = "",
|
|
1974
|
+
) -> None:
|
|
1975
|
+
"""Swap selected nodes with the specified node group asset
|
|
1976
|
+
|
|
1977
|
+
:param asset_library_type: Asset Library Type
|
|
1978
|
+
:param asset_library_identifier: Asset Library Identifier
|
|
1979
|
+
:param relative_asset_identifier: Relative Asset Identifier
|
|
1980
|
+
"""
|
|
1981
|
+
|
|
1982
|
+
def swap_node(
|
|
1983
|
+
execution_context: int | str | None = None,
|
|
1984
|
+
undo: bool | None = None,
|
|
1985
|
+
/,
|
|
1986
|
+
*,
|
|
1987
|
+
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
1988
|
+
| None = None,
|
|
1989
|
+
type: str = "",
|
|
1990
|
+
visible_output: str = "",
|
|
1991
|
+
) -> None:
|
|
1992
|
+
"""Replace the selected nodes with the specified type
|
|
1993
|
+
|
|
1994
|
+
:param settings: Settings, Settings to be applied on the newly created node
|
|
1995
|
+
:param type: Node Type, Node type
|
|
1996
|
+
:param visible_output: Output Name, If provided, all outputs that are named differently will be hidden
|
|
1997
|
+
"""
|
|
1998
|
+
|
|
1999
|
+
def swap_zone(
|
|
2000
|
+
execution_context: int | str | None = None,
|
|
2001
|
+
undo: bool | None = None,
|
|
2002
|
+
/,
|
|
2003
|
+
*,
|
|
2004
|
+
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
2005
|
+
| None = None,
|
|
2006
|
+
offset: collections.abc.Iterable[float] | None = (150.0, 0.0),
|
|
2007
|
+
input_node_type: str = "",
|
|
2008
|
+
output_node_type: str = "",
|
|
2009
|
+
add_default_geometry_link: bool | None = False,
|
|
2010
|
+
) -> None:
|
|
2011
|
+
"""Undocumented, consider contributing.
|
|
2012
|
+
|
|
2013
|
+
:param settings: Settings, Settings to be applied on the newly created node
|
|
2014
|
+
:param offset: Offset, Offset of nodes from the cursor when added
|
|
2015
|
+
:param input_node_type: Input Node, Specifies the input node used by the created zone
|
|
2016
|
+
:param output_node_type: Output Node, Specifies the output node used by the created zone
|
|
2017
|
+
:param add_default_geometry_link: Add Geometry Link, When enabled, create a link between geometry sockets in this zone
|
|
2018
|
+
"""
|
|
2019
|
+
|
|
2020
|
+
def test_inlining_shader_nodes(
|
|
2021
|
+
execution_context: int | str | None = None,
|
|
2022
|
+
undo: bool | None = None,
|
|
2023
|
+
/,
|
|
2024
|
+
) -> None:
|
|
2025
|
+
"""Create a new inlined shader node tree as is consumed by renderers"""
|
|
2026
|
+
|
|
2027
|
+
def toggle_viewer(
|
|
2028
|
+
execution_context: int | str | None = None,
|
|
2029
|
+
undo: bool | None = None,
|
|
2030
|
+
/,
|
|
2031
|
+
) -> None:
|
|
2032
|
+
"""Toggle selected viewer node in compositor and geometry nodes"""
|
|
2033
|
+
|
|
2042
2034
|
def translate_attach(
|
|
2043
2035
|
execution_context: int | str | None = None,
|
|
2044
2036
|
undo: bool | None = None,
|
|
@@ -2049,12 +2041,8 @@ def translate_attach(
|
|
|
2049
2041
|
) -> None:
|
|
2050
2042
|
"""Move nodes and attach to frame
|
|
2051
2043
|
|
|
2052
|
-
:type execution_context: int | str | None
|
|
2053
|
-
:type undo: bool | None
|
|
2054
2044
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
2055
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
2056
2045
|
:param NODE_OT_attach: Attach Nodes, Attach active node to a frame
|
|
2057
|
-
:type NODE_OT_attach: attach | None
|
|
2058
2046
|
"""
|
|
2059
2047
|
|
|
2060
2048
|
def translate_attach_remove_on_cancel(
|
|
@@ -2067,40 +2055,35 @@ def translate_attach_remove_on_cancel(
|
|
|
2067
2055
|
) -> None:
|
|
2068
2056
|
"""Move nodes and attach to frame
|
|
2069
2057
|
|
|
2070
|
-
:type execution_context: int | str | None
|
|
2071
|
-
:type undo: bool | None
|
|
2072
2058
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
2073
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
2074
2059
|
:param NODE_OT_attach: Attach Nodes, Attach active node to a frame
|
|
2075
|
-
:type NODE_OT_attach: attach | None
|
|
2076
2060
|
"""
|
|
2077
2061
|
|
|
2078
2062
|
def tree_path_parent(
|
|
2079
|
-
execution_context: int | str | None = None,
|
|
2063
|
+
execution_context: int | str | None = None,
|
|
2064
|
+
undo: bool | None = None,
|
|
2065
|
+
/,
|
|
2066
|
+
*,
|
|
2067
|
+
parent_tree_index: int | None = 0,
|
|
2080
2068
|
) -> None:
|
|
2081
2069
|
"""Go to parent node tree
|
|
2082
2070
|
|
|
2083
|
-
:
|
|
2084
|
-
:type undo: bool | None
|
|
2071
|
+
:param parent_tree_index: Parent Index, Parent index in context path
|
|
2085
2072
|
"""
|
|
2086
2073
|
|
|
2087
2074
|
def view_all(
|
|
2088
|
-
execution_context: int | str | None = None,
|
|
2075
|
+
execution_context: int | str | None = None,
|
|
2076
|
+
undo: bool | None = None,
|
|
2077
|
+
/,
|
|
2089
2078
|
) -> None:
|
|
2090
|
-
"""Resize view so you can see all nodes
|
|
2091
|
-
|
|
2092
|
-
:type execution_context: int | str | None
|
|
2093
|
-
:type undo: bool | None
|
|
2094
|
-
"""
|
|
2079
|
+
"""Resize view so you can see all nodes"""
|
|
2095
2080
|
|
|
2096
2081
|
def view_selected(
|
|
2097
|
-
execution_context: int | str | None = None,
|
|
2082
|
+
execution_context: int | str | None = None,
|
|
2083
|
+
undo: bool | None = None,
|
|
2084
|
+
/,
|
|
2098
2085
|
) -> None:
|
|
2099
|
-
"""Resize view so you can see selected nodes
|
|
2100
|
-
|
|
2101
|
-
:type execution_context: int | str | None
|
|
2102
|
-
:type undo: bool | None
|
|
2103
|
-
"""
|
|
2086
|
+
"""Resize view so you can see selected nodes"""
|
|
2104
2087
|
|
|
2105
2088
|
def viewer_border(
|
|
2106
2089
|
execution_context: int | str | None = None,
|
|
@@ -2115,18 +2098,11 @@ def viewer_border(
|
|
|
2115
2098
|
) -> None:
|
|
2116
2099
|
"""Set the boundaries for viewer operations
|
|
2117
2100
|
|
|
2118
|
-
:type execution_context: int | str | None
|
|
2119
|
-
:type undo: bool | None
|
|
2120
2101
|
:param xmin: X Min
|
|
2121
|
-
:type xmin: int | None
|
|
2122
2102
|
:param xmax: X Max
|
|
2123
|
-
:type xmax: int | None
|
|
2124
2103
|
:param ymin: Y Min
|
|
2125
|
-
:type ymin: int | None
|
|
2126
2104
|
:param ymax: Y Max
|
|
2127
|
-
:type ymax: int | None
|
|
2128
2105
|
:param wait_for_input: Wait for Input
|
|
2129
|
-
:type wait_for_input: bool | None
|
|
2130
2106
|
"""
|
|
2131
2107
|
|
|
2132
2108
|
def viewer_shortcut_get(
|
|
@@ -2136,12 +2112,9 @@ def viewer_shortcut_get(
|
|
|
2136
2112
|
*,
|
|
2137
2113
|
viewer_index: int | None = 0,
|
|
2138
2114
|
) -> None:
|
|
2139
|
-
"""
|
|
2115
|
+
"""Toggle a specific viewer node using 1,2,..,9 keys
|
|
2140
2116
|
|
|
2141
|
-
:type execution_context: int | str | None
|
|
2142
|
-
:type undo: bool | None
|
|
2143
2117
|
:param viewer_index: Viewer Index, Index corresponding to the shortcut, e.g. number key 1 corresponds to index 1 etc..
|
|
2144
|
-
:type viewer_index: int | None
|
|
2145
2118
|
"""
|
|
2146
2119
|
|
|
2147
2120
|
def viewer_shortcut_set(
|
|
@@ -2151,10 +2124,7 @@ def viewer_shortcut_set(
|
|
|
2151
2124
|
*,
|
|
2152
2125
|
viewer_index: int | None = 0,
|
|
2153
2126
|
) -> None:
|
|
2154
|
-
"""Create a
|
|
2127
|
+
"""Create a viewer shortcut for the selected node by pressing ctrl+1,2,..9
|
|
2155
2128
|
|
|
2156
|
-
:type execution_context: int | str | None
|
|
2157
|
-
:type undo: bool | None
|
|
2158
2129
|
:param viewer_index: Viewer Index, Index corresponding to the shortcut, e.g. number key 1 corresponds to index 1 etc..
|
|
2159
|
-
:type viewer_index: int | None
|
|
2160
2130
|
"""
|