fake-bpy-module 20240224__py3-none-any.whl → 20240326__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.
- addon_utils/__init__.pyi +54 -10
- animsys_refactor/__init__.pyi +36 -6
- aud/__init__.pyi +132 -125
- bgl/__init__.pyi +2545 -546
- bl_app_override/__init__.pyi +14 -3
- bl_app_override/helpers/__init__.pyi +24 -2
- bl_app_template_utils/__init__.pyi +19 -4
- bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
- bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
- bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
- bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
- bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
- bl_i18n_utils/merge_po/__init__.pyi +4 -1
- bl_i18n_utils/settings/__init__.pyi +53 -6
- bl_i18n_utils/utils/__init__.pyi +332 -44
- bl_i18n_utils/utils_cli/__init__.pyi +29 -6
- bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
- bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
- bl_keymap_utils/io/__init__.pyi +44 -9
- bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
- bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
- bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
- bl_keymap_utils/versioning/__init__.pyi +4 -1
- bl_math/__init__.pyi +3 -3
- bl_operators/__init__.pyi +9 -2
- bl_operators/add_mesh_torus/__init__.pyi +171 -37
- bl_operators/anim/__init__.pyi +1065 -226
- bl_operators/assets/__init__.pyi +427 -92
- bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
- bl_operators/clip/__init__.pyi +1342 -287
- bl_operators/console/__init__.pyi +647 -140
- bl_operators/constraint/__init__.pyi +524 -112
- bl_operators/file/__init__.pyi +396 -84
- bl_operators/freestyle/__init__.pyi +532 -113
- bl_operators/geometry_nodes/__init__.pyi +2412 -596
- bl_operators/image/__init__.pyi +380 -82
- bl_operators/mesh/__init__.pyi +401 -85
- bl_operators/node/__init__.pyi +1756 -384
- bl_operators/object/__init__.pyi +2022 -552
- bl_operators/object_align/__init__.pyi +145 -31
- bl_operators/object_quick_effects/__init__.pyi +555 -124
- bl_operators/object_randomize_transform/__init__.pyi +136 -32
- bl_operators/presets/__init__.pyi +3516 -708
- bl_operators/rigidbody/__init__.pyi +401 -85
- bl_operators/screen_play_rendered_anim/__init__.pyi +129 -29
- bl_operators/sequencer/__init__.pyi +731 -149
- bl_operators/spreadsheet/__init__.pyi +145 -30
- bl_operators/userpref/__init__.pyi +3416 -824
- bl_operators/uvcalc_follow_active/__init__.pyi +149 -32
- bl_operators/uvcalc_lightmap/__init__.pyi +187 -34
- bl_operators/uvcalc_transform/__init__.pyi +344 -73
- bl_operators/vertexpaint_dirt/__init__.pyi +140 -30
- bl_operators/view3d/__init__.pyi +697 -146
- bl_operators/wm/__init__.pyi +6287 -1533
- bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
- bl_rna_utils/data_path/__init__.pyi +12 -2
- bl_text_utils/external_editor/__init__.pyi +4 -1
- bl_ui/__init__.pyi +504 -106
- bl_ui/anim/__init__.pyi +164 -33
- bl_ui/asset_shelf/__init__.pyi +146 -31
- bl_ui/generic_ui_list/__init__.pyi +471 -99
- bl_ui/node_add_menu/__init__.pyi +196 -40
- bl_ui/node_add_menu_compositor/__init__.pyi +3017 -621
- bl_ui/node_add_menu_geometry/__init__.pyi +8060 -1625
- bl_ui/node_add_menu_shader/__init__.pyi +1709 -348
- bl_ui/node_add_menu_texture/__init__.pyi +1502 -305
- bl_ui/properties_animviz/__init__.pyi +32 -2
- bl_ui/properties_collection/__init__.pyi +787 -179
- bl_ui/properties_constraint/__init__.pyi +28635 -5523
- bl_ui/properties_data_armature/__init__.pyi +1905 -448
- bl_ui/properties_data_bone/__init__.pyi +1560 -336
- bl_ui/properties_data_camera/__init__.pyi +2269 -494
- bl_ui/properties_data_curve/__init__.pyi +2362 -534
- bl_ui/properties_data_curves/__init__.pyi +951 -203
- bl_ui/properties_data_empty/__init__.pyi +317 -69
- bl_ui/properties_data_gpencil/__init__.pyi +2924 -734
- bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -188
- bl_ui/properties_data_lattice/__init__.pyi +472 -104
- bl_ui/properties_data_light/__init__.pyi +1570 -337
- bl_ui/properties_data_lightprobe/__init__.pyi +938 -208
- bl_ui/properties_data_mesh/__init__.pyi +3205 -767
- bl_ui/properties_data_metaball/__init__.pyi +774 -170
- bl_ui/properties_data_modifier/__init__.pyi +1554 -328
- bl_ui/properties_data_pointcloud/__init__.pyi +821 -194
- bl_ui/properties_data_shaderfx/__init__.pyi +154 -34
- bl_ui/properties_data_speaker/__init__.pyi +782 -168
- bl_ui/properties_data_volume/__init__.pyi +1243 -281
- bl_ui/properties_freestyle/__init__.pyi +4071 -1030
- bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -483
- bl_ui/properties_mask_common/__init__.pyi +1256 -249
- bl_ui/properties_material/__init__.pyi +2351 -542
- bl_ui/properties_material_gpencil/__init__.pyi +1590 -365
- bl_ui/properties_object/__init__.pyi +2179 -512
- bl_ui/properties_output/__init__.pyi +2956 -705
- bl_ui/properties_paint_common/__init__.pyi +947 -140
- bl_ui/properties_particle/__init__.pyi +8322 -1970
- bl_ui/properties_physics_cloth/__init__.pyi +2254 -508
- bl_ui/properties_physics_common/__init__.pyi +200 -44
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -965
- bl_ui/properties_physics_field/__init__.pyi +1695 -364
- bl_ui/properties_physics_fluid/__init__.pyi +6127 -1280
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -32
- bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -278
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -483
- bl_ui/properties_physics_softbody/__init__.pyi +2394 -542
- bl_ui/properties_render/__init__.pyi +8312 -1933
- bl_ui/properties_scene/__init__.pyi +2211 -539
- bl_ui/properties_texture/__init__.pyi +4185 -1013
- bl_ui/properties_view_layer/__init__.pyi +2803 -664
- bl_ui/properties_workspace/__init__.pyi +626 -148
- bl_ui/properties_world/__init__.pyi +1092 -234
- bl_ui/space_clip/__init__.pyi +11475 -2805
- bl_ui/space_console/__init__.pyi +967 -202
- bl_ui/space_dopesheet/__init__.pyi +4260 -966
- bl_ui/space_filebrowser/__init__.pyi +4852 -1187
- bl_ui/space_graph/__init__.pyi +3251 -702
- bl_ui/space_image/__init__.pyi +12219 -2968
- bl_ui/space_info/__init__.pyi +964 -200
- bl_ui/space_nla/__init__.pyi +2756 -584
- bl_ui/space_node/__init__.pyi +5661 -1265
- bl_ui/space_outliner/__init__.pyi +2294 -478
- bl_ui/space_properties/__init__.pyi +417 -92
- bl_ui/space_sequencer/__init__.pyi +12436 -3009
- bl_ui/space_spreadsheet/__init__.pyi +184 -36
- bl_ui/space_statusbar/__init__.pyi +135 -30
- bl_ui/space_text/__init__.pyi +2556 -542
- bl_ui/space_time/__init__.pyi +1151 -243
- bl_ui/space_toolsystem_common/__init__.pyi +368 -66
- bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -228
- bl_ui/space_topbar/__init__.pyi +4214 -887
- bl_ui/space_userpref/__init__.pyi +13920 -3468
- bl_ui/space_view3d/__init__.pyi +43701 -10599
- bl_ui/space_view3d_toolbar/__init__.pyi +16380 -3860
- bl_ui/utils/__init__.pyi +42 -4
- bl_ui_utils/bug_report_url/__init__.pyi +4 -1
- bl_ui_utils/layout/__init__.pyi +4 -1
- blend_render_info/__init__.pyi +13 -3
- blf/__init__.pyi +5 -7
- bmesh/__init__.pyi +7 -7
- bmesh/geometry/__init__.pyi +5 -5
- bmesh/ops/__init__.pyi +490 -504
- bmesh/types/__init__.pyi +268 -262
- bmesh/utils/__init__.pyi +55 -55
- bpy/__init__.pyi +2 -2
- bpy/app/__init__.pyi +4 -5
- bpy/app/handlers/__init__.pyi +36 -36
- bpy/app/icons/__init__.pyi +8 -10
- bpy/app/timers/__init__.pyi +9 -11
- bpy/app/translations/__init__.pyi +20 -22
- bpy/msgbus/__init__.pyi +3 -12
- bpy/ops/action/__init__.pyi +350 -305
- bpy/ops/anim/__init__.pyi +464 -426
- bpy/ops/armature/__init__.pyi +392 -360
- bpy/ops/asset/__init__.pyi +166 -129
- bpy/ops/boid/__init__.pyi +64 -37
- bpy/ops/brush/__init__.pyi +78 -72
- bpy/ops/buttons/__init__.pyi +136 -122
- bpy/ops/cachefile/__init__.pyi +128 -123
- bpy/ops/camera/__init__.pyi +22 -24
- bpy/ops/clip/__init__.pyi +844 -735
- bpy/ops/cloth/__init__.pyi +10 -11
- bpy/ops/collection/__init__.pyi +38 -38
- bpy/ops/console/__init__.pyi +170 -141
- bpy/ops/constraint/__init__.pyi +156 -159
- bpy/ops/curve/__init__.pyi +518 -461
- bpy/ops/curves/__init__.pyi +188 -159
- bpy/ops/cycles/__init__.pyi +20 -18
- bpy/ops/dpaint/__init__.pyi +40 -30
- bpy/ops/ed/__init__.pyi +136 -107
- bpy/ops/export_anim/__init__.pyi +18 -19
- bpy/ops/export_mesh/__init__.pyi +26 -27
- bpy/ops/export_scene/__init__.pyi +313 -334
- bpy/ops/file/__init__.pyi +394 -304
- bpy/ops/fluid/__init__.pyi +114 -63
- bpy/ops/font/__init__.pyi +272 -245
- bpy/ops/geometry/__init__.pyi +92 -87
- bpy/ops/gizmogroup/__init__.pyi +24 -21
- bpy/ops/gpencil/__init__.pyi +1530 -1476
- bpy/ops/graph/__init__.pyi +680 -659
- bpy/ops/grease_pencil/__init__.pyi +510 -390
- bpy/ops/image/__init__.pyi +650 -603
- bpy/ops/import_anim/__init__.pyi +26 -27
- bpy/ops/import_curve/__init__.pyi +6 -7
- bpy/ops/import_mesh/__init__.pyi +18 -21
- bpy/ops/import_scene/__init__.pyi +86 -95
- bpy/ops/info/__init__.pyi +68 -55
- bpy/ops/lattice/__init__.pyi +70 -63
- bpy/ops/marker/__init__.pyi +110 -111
- bpy/ops/mask/__init__.pyi +352 -308
- bpy/ops/material/__init__.pyi +24 -12
- bpy/ops/mball/__init__.pyi +72 -75
- bpy/ops/mesh/__init__.pyi +2052 -2088
- bpy/ops/nla/__init__.pyi +369 -313
- bpy/ops/node/__init__.pyi +944 -805
- bpy/ops/object/__init__.pyi +2662 -2461
- bpy/ops/outliner/__init__.pyi +582 -431
- bpy/ops/paint/__init__.pyi +605 -516
- bpy/ops/paintcurve/__init__.pyi +72 -60
- bpy/ops/palette/__init__.pyi +54 -46
- bpy/ops/particle/__init__.pyi +302 -245
- bpy/ops/pose/__init__.pyi +366 -330
- bpy/ops/poselib/__init__.pyi +78 -64
- bpy/ops/preferences/__init__.pyi +361 -341
- bpy/ops/ptcache/__init__.pyi +56 -38
- bpy/ops/render/__init__.pyi +120 -117
- bpy/ops/rigidbody/__init__.pyi +114 -97
- bpy/ops/scene/__init__.pyi +302 -240
- bpy/ops/screen/__init__.pyi +414 -363
- bpy/ops/script/__init__.pyi +20 -18
- bpy/ops/sculpt/__init__.pyi +414 -452
- bpy/ops/sculpt_curves/__init__.pyi +42 -43
- bpy/ops/sequencer/__init__.pyi +1094 -1053
- bpy/ops/sound/__init__.pyi +214 -206
- bpy/ops/spreadsheet/__init__.pyi +34 -28
- bpy/ops/surface/__init__.pyi +108 -114
- bpy/ops/text/__init__.pyi +432 -350
- bpy/ops/text_editor/__init__.pyi +10 -11
- bpy/ops/texture/__init__.pyi +32 -21
- bpy/ops/transform/__init__.pyi +801 -854
- bpy/ops/ui/__init__.pyi +254 -185
- bpy/ops/uilist/__init__.pyi +20 -23
- bpy/ops/uv/__init__.pyi +618 -626
- bpy/ops/view2d/__init__.pyi +162 -161
- bpy/ops/view3d/__init__.pyi +669 -658
- bpy/ops/wm/__init__.pyi +2433 -2415
- bpy/ops/workspace/__init__.pyi +54 -31
- bpy/ops/world/__init__.pyi +8 -4
- bpy/path/__init__.pyi +111 -68
- bpy/props/__init__.pyi +263 -267
- bpy/types/__init__.pyi +86789 -85719
- bpy/utils/__init__.pyi +265 -123
- bpy/utils/previews/__init__.pyi +103 -17
- bpy/utils/units/__init__.pyi +19 -22
- bpy_extras/__init__.pyi +0 -4
- bpy_extras/anim_utils/__init__.pyi +11 -46
- bpy_extras/asset_utils/__init__.pyi +3 -12
- bpy_extras/id_map_utils/__init__.pyi +0 -2
- bpy_extras/image_utils/__init__.pyi +2 -2
- bpy_extras/io_utils/__init__.pyi +30 -27
- bpy_extras/keyconfig_utils/__init__.pyi +4 -1
- bpy_extras/mesh_utils/__init__.pyi +18 -18
- bpy_extras/node_utils/__init__.pyi +4 -3
- bpy_extras/object_utils/__init__.pyi +25 -26
- bpy_extras/view3d_utils/__init__.pyi +33 -38
- bpy_restrict_state/__init__.pyi +14 -1
- bpy_types/__init__.pyi +3873 -997
- console_python/__init__.pyi +41 -7
- console_shell/__init__.pyi +24 -5
- {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
- fake_bpy_module-20240326.dist-info/RECORD +343 -0
- {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
- freestyle/chainingiterators/__init__.pyi +50 -52
- freestyle/functions/__init__.pyi +303 -207
- freestyle/predicates/__init__.pyi +299 -115
- freestyle/shaders/__init__.pyi +49 -80
- freestyle/types/__init__.pyi +465 -472
- freestyle/utils/ContextFunctions/__init__.pyi +9 -9
- freestyle/utils/__init__.pyi +28 -18
- gpu/capabilities/__init__.pyi +27 -19
- gpu/matrix/__init__.pyi +14 -16
- gpu/platform/__init__.pyi +5 -5
- gpu/shader/__init__.pyi +2 -5
- gpu/state/__init__.pyi +1 -1
- gpu/texture/__init__.pyi +3 -3
- gpu/types/__init__.pyi +54 -85
- gpu_extras/batch/__init__.pyi +27 -5
- gpu_extras/presets/__init__.pyi +52 -14
- graphviz_export/__init__.pyi +9 -2
- idprop/types/__init__.pyi +36 -12
- imbuf/__init__.pyi +8 -9
- imbuf/types/__init__.pyi +8 -15
- keyingsets_builtins/__init__.pyi +3149 -701
- keyingsets_utils/__init__.pyi +69 -14
- mathutils/__init__.pyi +502 -427
- mathutils/bvhtree/__init__.pyi +28 -32
- mathutils/geometry/__init__.pyi +177 -186
- mathutils/kdtree/__init__.pyi +16 -18
- mathutils/noise/__init__.pyi +47 -48
- nodeitems_builtins/__init__.pyi +50 -10
- nodeitems_utils/__init__.pyi +58 -10
- rna_info/__init__.pyi +230 -26
- rna_keymap_ui/__init__.pyi +29 -6
- rna_prop_ui/__init__.pyi +69 -12
- rna_xml/__init__.pyi +29 -6
- sys_info/__init__.pyi +4 -1
- bpy_extras/bmesh_utils/__init__.pyi +0 -6
- bpy_extras/extensions/__init__.pyi +0 -4
- bpy_extras/extensions/junction_module/__init__.pyi +0 -12
- bpy_extras/node_shader_utils/__init__.pyi +0 -131
- bpy_extras/wm_utils/__init__.pyi +0 -4
- bpy_extras/wm_utils/progress_report/__init__.pyi +0 -29
- fake_bpy_module-20240224.dist-info/RECORD +0 -349
- {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -6,113 +6,111 @@ import bpy.types
|
|
|
6
6
|
GenericType = typing.TypeVar("GenericType")
|
|
7
7
|
|
|
8
8
|
def add_collection(
|
|
9
|
-
override_context=None,
|
|
10
|
-
execution_context=None,
|
|
11
|
-
undo=None,
|
|
12
|
-
*,
|
|
9
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
10
|
+
execution_context: typing.Union[str, int] = None,
|
|
11
|
+
undo: bool = None,
|
|
13
12
|
name: typing.Union[str, typing.Any] = "",
|
|
14
|
-
session_uid: typing.
|
|
13
|
+
session_uid: typing.Any = 0,
|
|
15
14
|
):
|
|
16
15
|
"""Add a collection info node to the current node editor
|
|
17
16
|
|
|
18
|
-
:type override_context: typing.
|
|
19
|
-
:type execution_context: typing.
|
|
20
|
-
:type undo:
|
|
17
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
18
|
+
:type execution_context: typing.Union[str, int]
|
|
19
|
+
:type undo: bool
|
|
21
20
|
:param name: Name, Name of the data-block to use by the operator
|
|
22
21
|
:type name: typing.Union[str, typing.Any]
|
|
23
22
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
24
|
-
:type session_uid: typing.
|
|
23
|
+
:type session_uid: typing.Any
|
|
25
24
|
"""
|
|
26
25
|
|
|
27
26
|
...
|
|
28
27
|
|
|
29
28
|
def add_file(
|
|
30
|
-
override_context=None,
|
|
31
|
-
execution_context=None,
|
|
32
|
-
undo=None,
|
|
33
|
-
*,
|
|
29
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
30
|
+
execution_context: typing.Union[str, int] = None,
|
|
31
|
+
undo: bool = None,
|
|
34
32
|
filepath: typing.Union[str, typing.Any] = "",
|
|
35
|
-
hide_props_region: typing.
|
|
36
|
-
check_existing: typing.
|
|
37
|
-
filter_blender: typing.
|
|
38
|
-
filter_backup: typing.
|
|
39
|
-
filter_image: typing.
|
|
40
|
-
filter_movie: typing.
|
|
41
|
-
filter_python: typing.
|
|
42
|
-
filter_font: typing.
|
|
43
|
-
filter_sound: typing.
|
|
44
|
-
filter_text: typing.
|
|
45
|
-
filter_archive: typing.
|
|
46
|
-
filter_btx: typing.
|
|
47
|
-
filter_collada: typing.
|
|
48
|
-
filter_alembic: typing.
|
|
49
|
-
filter_usd: typing.
|
|
50
|
-
filter_obj: typing.
|
|
51
|
-
filter_volume: typing.
|
|
52
|
-
filter_folder: typing.
|
|
53
|
-
filter_blenlib: typing.
|
|
54
|
-
filemode: typing.
|
|
55
|
-
relative_path: typing.
|
|
56
|
-
show_multiview: typing.
|
|
57
|
-
use_multiview: typing.
|
|
58
|
-
display_type: typing.
|
|
59
|
-
sort_method: typing.
|
|
33
|
+
hide_props_region: typing.Union[bool, typing.Any] = True,
|
|
34
|
+
check_existing: typing.Union[bool, typing.Any] = False,
|
|
35
|
+
filter_blender: typing.Union[bool, typing.Any] = False,
|
|
36
|
+
filter_backup: typing.Union[bool, typing.Any] = False,
|
|
37
|
+
filter_image: typing.Union[bool, typing.Any] = True,
|
|
38
|
+
filter_movie: typing.Union[bool, typing.Any] = True,
|
|
39
|
+
filter_python: typing.Union[bool, typing.Any] = False,
|
|
40
|
+
filter_font: typing.Union[bool, typing.Any] = False,
|
|
41
|
+
filter_sound: typing.Union[bool, typing.Any] = False,
|
|
42
|
+
filter_text: typing.Union[bool, typing.Any] = False,
|
|
43
|
+
filter_archive: typing.Union[bool, typing.Any] = False,
|
|
44
|
+
filter_btx: typing.Union[bool, typing.Any] = False,
|
|
45
|
+
filter_collada: typing.Union[bool, typing.Any] = False,
|
|
46
|
+
filter_alembic: typing.Union[bool, typing.Any] = False,
|
|
47
|
+
filter_usd: typing.Union[bool, typing.Any] = False,
|
|
48
|
+
filter_obj: typing.Union[bool, typing.Any] = False,
|
|
49
|
+
filter_volume: typing.Union[bool, typing.Any] = False,
|
|
50
|
+
filter_folder: typing.Union[bool, typing.Any] = True,
|
|
51
|
+
filter_blenlib: typing.Union[bool, typing.Any] = False,
|
|
52
|
+
filemode: typing.Any = 9,
|
|
53
|
+
relative_path: typing.Union[bool, typing.Any] = True,
|
|
54
|
+
show_multiview: typing.Union[bool, typing.Any] = False,
|
|
55
|
+
use_multiview: typing.Union[bool, typing.Any] = False,
|
|
56
|
+
display_type: typing.Any = "DEFAULT",
|
|
57
|
+
sort_method: typing.Any = "",
|
|
60
58
|
name: typing.Union[str, typing.Any] = "",
|
|
61
|
-
session_uid: typing.
|
|
59
|
+
session_uid: typing.Any = 0,
|
|
62
60
|
):
|
|
63
61
|
"""Add a file node to the current node editor
|
|
64
62
|
|
|
65
|
-
:type override_context: typing.
|
|
66
|
-
:type execution_context: typing.
|
|
67
|
-
:type undo:
|
|
63
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
64
|
+
:type execution_context: typing.Union[str, int]
|
|
65
|
+
:type undo: bool
|
|
68
66
|
:param filepath: File Path, Path to file
|
|
69
67
|
:type filepath: typing.Union[str, typing.Any]
|
|
70
68
|
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
71
|
-
:type hide_props_region: typing.
|
|
69
|
+
:type hide_props_region: typing.Union[bool, typing.Any]
|
|
72
70
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
73
|
-
:type check_existing: typing.
|
|
71
|
+
:type check_existing: typing.Union[bool, typing.Any]
|
|
74
72
|
:param filter_blender: Filter .blend files
|
|
75
|
-
:type filter_blender: typing.
|
|
73
|
+
:type filter_blender: typing.Union[bool, typing.Any]
|
|
76
74
|
:param filter_backup: Filter .blend files
|
|
77
|
-
:type filter_backup: typing.
|
|
75
|
+
:type filter_backup: typing.Union[bool, typing.Any]
|
|
78
76
|
:param filter_image: Filter image files
|
|
79
|
-
:type filter_image: typing.
|
|
77
|
+
:type filter_image: typing.Union[bool, typing.Any]
|
|
80
78
|
:param filter_movie: Filter movie files
|
|
81
|
-
:type filter_movie: typing.
|
|
79
|
+
:type filter_movie: typing.Union[bool, typing.Any]
|
|
82
80
|
:param filter_python: Filter Python files
|
|
83
|
-
:type filter_python: typing.
|
|
81
|
+
:type filter_python: typing.Union[bool, typing.Any]
|
|
84
82
|
:param filter_font: Filter font files
|
|
85
|
-
:type filter_font: typing.
|
|
83
|
+
:type filter_font: typing.Union[bool, typing.Any]
|
|
86
84
|
:param filter_sound: Filter sound files
|
|
87
|
-
:type filter_sound: typing.
|
|
85
|
+
:type filter_sound: typing.Union[bool, typing.Any]
|
|
88
86
|
:param filter_text: Filter text files
|
|
89
|
-
:type filter_text: typing.
|
|
87
|
+
:type filter_text: typing.Union[bool, typing.Any]
|
|
90
88
|
:param filter_archive: Filter archive files
|
|
91
|
-
:type filter_archive: typing.
|
|
89
|
+
:type filter_archive: typing.Union[bool, typing.Any]
|
|
92
90
|
:param filter_btx: Filter btx files
|
|
93
|
-
:type filter_btx: typing.
|
|
91
|
+
:type filter_btx: typing.Union[bool, typing.Any]
|
|
94
92
|
:param filter_collada: Filter COLLADA files
|
|
95
|
-
:type filter_collada: typing.
|
|
93
|
+
:type filter_collada: typing.Union[bool, typing.Any]
|
|
96
94
|
:param filter_alembic: Filter Alembic files
|
|
97
|
-
:type filter_alembic: typing.
|
|
95
|
+
:type filter_alembic: typing.Union[bool, typing.Any]
|
|
98
96
|
:param filter_usd: Filter USD files
|
|
99
|
-
:type filter_usd: typing.
|
|
97
|
+
:type filter_usd: typing.Union[bool, typing.Any]
|
|
100
98
|
:param filter_obj: Filter OBJ files
|
|
101
|
-
:type filter_obj: typing.
|
|
99
|
+
:type filter_obj: typing.Union[bool, typing.Any]
|
|
102
100
|
:param filter_volume: Filter OpenVDB volume files
|
|
103
|
-
:type filter_volume: typing.
|
|
101
|
+
:type filter_volume: typing.Union[bool, typing.Any]
|
|
104
102
|
:param filter_folder: Filter folders
|
|
105
|
-
:type filter_folder: typing.
|
|
103
|
+
:type filter_folder: typing.Union[bool, typing.Any]
|
|
106
104
|
:param filter_blenlib: Filter Blender IDs
|
|
107
|
-
:type filter_blenlib: typing.
|
|
105
|
+
:type filter_blenlib: typing.Union[bool, typing.Any]
|
|
108
106
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
109
|
-
:type filemode: typing.
|
|
107
|
+
:type filemode: typing.Any
|
|
110
108
|
:param relative_path: Relative Path, Select the file relative to the blend file
|
|
111
|
-
:type relative_path: typing.
|
|
109
|
+
:type relative_path: typing.Union[bool, typing.Any]
|
|
112
110
|
:param show_multiview: Enable Multi-View
|
|
113
|
-
:type show_multiview: typing.
|
|
111
|
+
:type show_multiview: typing.Union[bool, typing.Any]
|
|
114
112
|
:param use_multiview: Use Multi-View
|
|
115
|
-
:type use_multiview: typing.
|
|
113
|
+
:type use_multiview: typing.Union[bool, typing.Any]
|
|
116
114
|
:param display_type: Display Type
|
|
117
115
|
|
|
118
116
|
DEFAULT
|
|
@@ -126,7 +124,7 @@ def add_file(
|
|
|
126
124
|
|
|
127
125
|
THUMBNAIL
|
|
128
126
|
Thumbnails -- Display files as thumbnails.
|
|
129
|
-
:type display_type: typing.
|
|
127
|
+
:type display_type: typing.Any
|
|
130
128
|
:param sort_method: File sorting mode
|
|
131
129
|
|
|
132
130
|
DEFAULT
|
|
@@ -143,55 +141,53 @@ def add_file(
|
|
|
143
141
|
|
|
144
142
|
FILE_SORT_SIZE
|
|
145
143
|
Size -- Sort files by size.
|
|
146
|
-
:type sort_method: typing.
|
|
144
|
+
:type sort_method: typing.Any
|
|
147
145
|
:param name: Name, Name of the data-block to use by the operator
|
|
148
146
|
:type name: typing.Union[str, typing.Any]
|
|
149
147
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
150
|
-
:type session_uid: typing.
|
|
148
|
+
:type session_uid: typing.Any
|
|
151
149
|
"""
|
|
152
150
|
|
|
153
151
|
...
|
|
154
152
|
|
|
155
153
|
def add_group(
|
|
156
|
-
override_context=None,
|
|
157
|
-
execution_context=None,
|
|
158
|
-
undo=None,
|
|
159
|
-
*,
|
|
154
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
155
|
+
execution_context: typing.Union[str, int] = None,
|
|
156
|
+
undo: bool = None,
|
|
160
157
|
name: typing.Union[str, typing.Any] = "",
|
|
161
|
-
session_uid: typing.
|
|
162
|
-
show_datablock_in_node: typing.
|
|
158
|
+
session_uid: typing.Any = 0,
|
|
159
|
+
show_datablock_in_node: typing.Union[bool, typing.Any] = True,
|
|
163
160
|
):
|
|
164
161
|
"""Add an existing node group to the current node editor
|
|
165
162
|
|
|
166
|
-
:type override_context: typing.
|
|
167
|
-
:type execution_context: typing.
|
|
168
|
-
:type undo:
|
|
163
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
164
|
+
:type execution_context: typing.Union[str, int]
|
|
165
|
+
:type undo: bool
|
|
169
166
|
:param name: Name, Name of the data-block to use by the operator
|
|
170
167
|
:type name: typing.Union[str, typing.Any]
|
|
171
168
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
172
|
-
:type session_uid: typing.
|
|
169
|
+
:type session_uid: typing.Any
|
|
173
170
|
:param show_datablock_in_node: Show the datablock selector in the node
|
|
174
|
-
:type show_datablock_in_node: typing.
|
|
171
|
+
:type show_datablock_in_node: typing.Union[bool, typing.Any]
|
|
175
172
|
"""
|
|
176
173
|
|
|
177
174
|
...
|
|
178
175
|
|
|
179
176
|
def add_group_asset(
|
|
180
|
-
override_context=None,
|
|
181
|
-
execution_context=None,
|
|
182
|
-
undo=None,
|
|
183
|
-
|
|
184
|
-
asset_library_type: typing.Optional[typing.Any] = "LOCAL",
|
|
177
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
178
|
+
execution_context: typing.Union[str, int] = None,
|
|
179
|
+
undo: bool = None,
|
|
180
|
+
asset_library_type: typing.Any = "LOCAL",
|
|
185
181
|
asset_library_identifier: typing.Union[str, typing.Any] = "",
|
|
186
182
|
relative_asset_identifier: typing.Union[str, typing.Any] = "",
|
|
187
183
|
):
|
|
188
184
|
"""Add a node group asset to the active node tree
|
|
189
185
|
|
|
190
|
-
:type override_context: typing.
|
|
191
|
-
:type execution_context: typing.
|
|
192
|
-
:type undo:
|
|
186
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
187
|
+
:type execution_context: typing.Union[str, int]
|
|
188
|
+
:type undo: bool
|
|
193
189
|
:param asset_library_type: Asset Library Type
|
|
194
|
-
:type asset_library_type: typing.
|
|
190
|
+
:type asset_library_type: typing.Any
|
|
195
191
|
:param asset_library_identifier: Asset Library Identifier
|
|
196
192
|
:type asset_library_identifier: typing.Union[str, typing.Any]
|
|
197
193
|
:param relative_asset_identifier: Relative Asset Identifier
|
|
@@ -201,67 +197,62 @@ def add_group_asset(
|
|
|
201
197
|
...
|
|
202
198
|
|
|
203
199
|
def add_mask(
|
|
204
|
-
override_context=None,
|
|
205
|
-
execution_context=None,
|
|
206
|
-
undo=None,
|
|
207
|
-
*,
|
|
200
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
201
|
+
execution_context: typing.Union[str, int] = None,
|
|
202
|
+
undo: bool = None,
|
|
208
203
|
name: typing.Union[str, typing.Any] = "",
|
|
209
|
-
session_uid: typing.
|
|
204
|
+
session_uid: typing.Any = 0,
|
|
210
205
|
):
|
|
211
206
|
"""Add a mask node to the current node editor
|
|
212
207
|
|
|
213
|
-
:type override_context: typing.
|
|
214
|
-
:type execution_context: typing.
|
|
215
|
-
:type undo:
|
|
208
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
209
|
+
:type execution_context: typing.Union[str, int]
|
|
210
|
+
:type undo: bool
|
|
216
211
|
:param name: Name, Name of the data-block to use by the operator
|
|
217
212
|
:type name: typing.Union[str, typing.Any]
|
|
218
213
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
219
|
-
:type session_uid: typing.
|
|
214
|
+
:type session_uid: typing.Any
|
|
220
215
|
"""
|
|
221
216
|
|
|
222
217
|
...
|
|
223
218
|
|
|
224
219
|
def add_material(
|
|
225
|
-
override_context=None,
|
|
226
|
-
execution_context=None,
|
|
227
|
-
undo=None,
|
|
228
|
-
*,
|
|
220
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
221
|
+
execution_context: typing.Union[str, int] = None,
|
|
222
|
+
undo: bool = None,
|
|
229
223
|
name: typing.Union[str, typing.Any] = "",
|
|
230
|
-
session_uid: typing.
|
|
224
|
+
session_uid: typing.Any = 0,
|
|
231
225
|
):
|
|
232
226
|
"""Add a material node to the current node editor
|
|
233
227
|
|
|
234
|
-
:type override_context: typing.
|
|
235
|
-
:type execution_context: typing.
|
|
236
|
-
:type undo:
|
|
228
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
229
|
+
:type execution_context: typing.Union[str, int]
|
|
230
|
+
:type undo: bool
|
|
237
231
|
:param name: Name, Name of the data-block to use by the operator
|
|
238
232
|
:type name: typing.Union[str, typing.Any]
|
|
239
233
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
240
|
-
:type session_uid: typing.
|
|
234
|
+
:type session_uid: typing.Any
|
|
241
235
|
"""
|
|
242
236
|
|
|
243
237
|
...
|
|
244
238
|
|
|
245
239
|
def add_node(
|
|
246
|
-
override_context=None,
|
|
247
|
-
execution_context=None,
|
|
248
|
-
undo=None,
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
settings: typing.Optional[
|
|
252
|
-
bpy.types.bpy_prop_collection["bl_operators.node.NodeSetting"]
|
|
253
|
-
] = None,
|
|
240
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
241
|
+
execution_context: typing.Union[str, int] = None,
|
|
242
|
+
undo: bool = None,
|
|
243
|
+
use_transform: typing.Union[bool, typing.Any] = False,
|
|
244
|
+
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] = None,
|
|
254
245
|
type: typing.Union[str, typing.Any] = "",
|
|
255
246
|
):
|
|
256
247
|
"""Add a node to the active tree
|
|
257
248
|
|
|
258
|
-
:type override_context: typing.
|
|
259
|
-
:type execution_context: typing.
|
|
260
|
-
:type undo:
|
|
249
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
250
|
+
:type execution_context: typing.Union[str, int]
|
|
251
|
+
:type undo: bool
|
|
261
252
|
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
262
|
-
:type use_transform: typing.
|
|
253
|
+
:type use_transform: typing.Union[bool, typing.Any]
|
|
263
254
|
:param settings: Settings, Settings to be applied on the newly created node
|
|
264
|
-
:type settings:
|
|
255
|
+
:type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
265
256
|
:param type: Node Type, Node type
|
|
266
257
|
:type type: typing.Union[str, typing.Any]
|
|
267
258
|
"""
|
|
@@ -269,527 +260,584 @@ def add_node(
|
|
|
269
260
|
...
|
|
270
261
|
|
|
271
262
|
def add_object(
|
|
272
|
-
override_context=None,
|
|
273
|
-
execution_context=None,
|
|
274
|
-
undo=None,
|
|
275
|
-
*,
|
|
263
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
264
|
+
execution_context: typing.Union[str, int] = None,
|
|
265
|
+
undo: bool = None,
|
|
276
266
|
name: typing.Union[str, typing.Any] = "",
|
|
277
|
-
session_uid: typing.
|
|
267
|
+
session_uid: typing.Any = 0,
|
|
278
268
|
):
|
|
279
269
|
"""Add an object info node to the current node editor
|
|
280
270
|
|
|
281
|
-
:type override_context: typing.
|
|
282
|
-
:type execution_context: typing.
|
|
283
|
-
:type undo:
|
|
271
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
272
|
+
:type execution_context: typing.Union[str, int]
|
|
273
|
+
:type undo: bool
|
|
284
274
|
:param name: Name, Name of the data-block to use by the operator
|
|
285
275
|
:type name: typing.Union[str, typing.Any]
|
|
286
276
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
287
|
-
:type session_uid: typing.
|
|
277
|
+
:type session_uid: typing.Any
|
|
288
278
|
"""
|
|
289
279
|
|
|
290
280
|
...
|
|
291
281
|
|
|
292
282
|
def add_repeat_zone(
|
|
293
|
-
override_context=None,
|
|
294
|
-
execution_context=None,
|
|
295
|
-
undo=None,
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
bpy.types.bpy_prop_collection["bl_operators.node.NodeSetting"]
|
|
300
|
-
] = None,
|
|
301
|
-
offset: typing.Optional[typing.Any] = (150.0, 0.0),
|
|
283
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
284
|
+
execution_context: typing.Union[str, int] = None,
|
|
285
|
+
undo: bool = None,
|
|
286
|
+
use_transform: typing.Union[bool, typing.Any] = False,
|
|
287
|
+
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] = None,
|
|
288
|
+
offset: typing.Any = (150.0, 0.0),
|
|
302
289
|
):
|
|
303
290
|
"""Add a repeat zone that allows executing nodes a dynamic number of times
|
|
304
291
|
|
|
305
|
-
:type override_context: typing.
|
|
306
|
-
:type execution_context: typing.
|
|
307
|
-
:type undo:
|
|
292
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
293
|
+
:type execution_context: typing.Union[str, int]
|
|
294
|
+
:type undo: bool
|
|
308
295
|
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
309
|
-
:type use_transform: typing.
|
|
296
|
+
:type use_transform: typing.Union[bool, typing.Any]
|
|
310
297
|
:param settings: Settings, Settings to be applied on the newly created node
|
|
311
|
-
:type settings:
|
|
298
|
+
:type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
312
299
|
:param offset: Offset, Offset of nodes from the cursor when added
|
|
313
|
-
:type offset: typing.
|
|
300
|
+
:type offset: typing.Any
|
|
314
301
|
"""
|
|
315
302
|
|
|
316
303
|
...
|
|
317
304
|
|
|
318
305
|
def add_reroute(
|
|
319
|
-
override_context=None,
|
|
320
|
-
execution_context=None,
|
|
321
|
-
undo=None,
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
bpy.types.bpy_prop_collection["bpy.types.OperatorMousePath"]
|
|
325
|
-
] = None,
|
|
326
|
-
cursor: typing.Optional[typing.Any] = 8,
|
|
306
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
307
|
+
execution_context: typing.Union[str, int] = None,
|
|
308
|
+
undo: bool = None,
|
|
309
|
+
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] = None,
|
|
310
|
+
cursor: typing.Any = 8,
|
|
327
311
|
):
|
|
328
312
|
"""Add a reroute node
|
|
329
313
|
|
|
330
|
-
:type override_context: typing.
|
|
331
|
-
:type execution_context: typing.
|
|
332
|
-
:type undo:
|
|
314
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
315
|
+
:type execution_context: typing.Union[str, int]
|
|
316
|
+
:type undo: bool
|
|
333
317
|
:param path: Path
|
|
334
|
-
:type path:
|
|
318
|
+
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath]
|
|
335
319
|
:param cursor: Cursor
|
|
336
|
-
:type cursor: typing.
|
|
320
|
+
:type cursor: typing.Any
|
|
337
321
|
"""
|
|
338
322
|
|
|
339
323
|
...
|
|
340
324
|
|
|
341
325
|
def add_simulation_zone(
|
|
342
|
-
override_context=None,
|
|
343
|
-
execution_context=None,
|
|
344
|
-
undo=None,
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
bpy.types.bpy_prop_collection["bl_operators.node.NodeSetting"]
|
|
349
|
-
] = None,
|
|
350
|
-
offset: typing.Optional[typing.Any] = (150.0, 0.0),
|
|
326
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
327
|
+
execution_context: typing.Union[str, int] = None,
|
|
328
|
+
undo: bool = None,
|
|
329
|
+
use_transform: typing.Union[bool, typing.Any] = False,
|
|
330
|
+
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] = None,
|
|
331
|
+
offset: typing.Any = (150.0, 0.0),
|
|
351
332
|
):
|
|
352
333
|
"""Add simulation zone input and output nodes to the active tree
|
|
353
334
|
|
|
354
|
-
:type override_context: typing.
|
|
355
|
-
:type execution_context: typing.
|
|
356
|
-
:type undo:
|
|
335
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
336
|
+
:type execution_context: typing.Union[str, int]
|
|
337
|
+
:type undo: bool
|
|
357
338
|
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
358
|
-
:type use_transform: typing.
|
|
339
|
+
:type use_transform: typing.Union[bool, typing.Any]
|
|
359
340
|
:param settings: Settings, Settings to be applied on the newly created node
|
|
360
|
-
:type settings:
|
|
341
|
+
:type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
361
342
|
:param offset: Offset, Offset of nodes from the cursor when added
|
|
362
|
-
:type offset: typing.
|
|
343
|
+
:type offset: typing.Any
|
|
363
344
|
"""
|
|
364
345
|
|
|
365
346
|
...
|
|
366
347
|
|
|
367
|
-
def attach(
|
|
348
|
+
def attach(
|
|
349
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
350
|
+
execution_context: typing.Union[str, int] = None,
|
|
351
|
+
undo: bool = None,
|
|
352
|
+
):
|
|
368
353
|
"""Attach active node to a frame
|
|
369
354
|
|
|
370
|
-
:type override_context: typing.
|
|
371
|
-
:type execution_context: typing.
|
|
372
|
-
:type undo:
|
|
355
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
356
|
+
:type execution_context: typing.Union[str, int]
|
|
357
|
+
:type undo: bool
|
|
373
358
|
"""
|
|
374
359
|
|
|
375
360
|
...
|
|
376
361
|
|
|
377
|
-
def backimage_fit(
|
|
362
|
+
def backimage_fit(
|
|
363
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
364
|
+
execution_context: typing.Union[str, int] = None,
|
|
365
|
+
undo: bool = None,
|
|
366
|
+
):
|
|
378
367
|
"""Fit the background image to the view
|
|
379
368
|
|
|
380
|
-
:type override_context: typing.
|
|
381
|
-
:type execution_context: typing.
|
|
382
|
-
:type undo:
|
|
369
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
370
|
+
:type execution_context: typing.Union[str, int]
|
|
371
|
+
:type undo: bool
|
|
383
372
|
"""
|
|
384
373
|
|
|
385
374
|
...
|
|
386
375
|
|
|
387
|
-
def backimage_move(
|
|
376
|
+
def backimage_move(
|
|
377
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
378
|
+
execution_context: typing.Union[str, int] = None,
|
|
379
|
+
undo: bool = None,
|
|
380
|
+
):
|
|
388
381
|
"""Move node backdrop
|
|
389
382
|
|
|
390
|
-
:type override_context: typing.
|
|
391
|
-
:type execution_context: typing.
|
|
392
|
-
:type undo:
|
|
383
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
384
|
+
:type execution_context: typing.Union[str, int]
|
|
385
|
+
:type undo: bool
|
|
393
386
|
"""
|
|
394
387
|
|
|
395
388
|
...
|
|
396
389
|
|
|
397
|
-
def backimage_sample(
|
|
390
|
+
def backimage_sample(
|
|
391
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
392
|
+
execution_context: typing.Union[str, int] = None,
|
|
393
|
+
undo: bool = None,
|
|
394
|
+
):
|
|
398
395
|
"""Use mouse to sample background image
|
|
399
396
|
|
|
400
|
-
:type override_context: typing.
|
|
401
|
-
:type execution_context: typing.
|
|
402
|
-
:type undo:
|
|
397
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
398
|
+
:type execution_context: typing.Union[str, int]
|
|
399
|
+
:type undo: bool
|
|
403
400
|
"""
|
|
404
401
|
|
|
405
402
|
...
|
|
406
403
|
|
|
407
404
|
def backimage_zoom(
|
|
408
|
-
override_context=None,
|
|
409
|
-
execution_context=None,
|
|
410
|
-
undo=None,
|
|
411
|
-
|
|
412
|
-
factor: typing.Optional[typing.Any] = 1.2,
|
|
405
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
406
|
+
execution_context: typing.Union[str, int] = None,
|
|
407
|
+
undo: bool = None,
|
|
408
|
+
factor: typing.Any = 1.2,
|
|
413
409
|
):
|
|
414
410
|
"""Zoom in/out the background image
|
|
415
411
|
|
|
416
|
-
:type override_context: typing.
|
|
417
|
-
:type execution_context: typing.
|
|
418
|
-
:type undo:
|
|
412
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
413
|
+
:type execution_context: typing.Union[str, int]
|
|
414
|
+
:type undo: bool
|
|
419
415
|
:param factor: Factor
|
|
420
|
-
:type factor: typing.
|
|
416
|
+
:type factor: typing.Any
|
|
421
417
|
"""
|
|
422
418
|
|
|
423
419
|
...
|
|
424
420
|
|
|
425
|
-
def bake_node_item_add(
|
|
421
|
+
def bake_node_item_add(
|
|
422
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
423
|
+
execution_context: typing.Union[str, int] = None,
|
|
424
|
+
undo: bool = None,
|
|
425
|
+
):
|
|
426
426
|
"""Add a bake item to the bake node
|
|
427
427
|
|
|
428
|
-
:type override_context: typing.
|
|
429
|
-
:type execution_context: typing.
|
|
430
|
-
:type undo:
|
|
428
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
429
|
+
:type execution_context: typing.Union[str, int]
|
|
430
|
+
:type undo: bool
|
|
431
431
|
"""
|
|
432
432
|
|
|
433
433
|
...
|
|
434
434
|
|
|
435
435
|
def bake_node_item_move(
|
|
436
|
-
override_context=None,
|
|
437
|
-
execution_context=None,
|
|
438
|
-
undo=None,
|
|
439
|
-
|
|
440
|
-
direction: typing.Optional[typing.Any] = "UP",
|
|
436
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
437
|
+
execution_context: typing.Union[str, int] = None,
|
|
438
|
+
undo: bool = None,
|
|
439
|
+
direction: typing.Any = "UP",
|
|
441
440
|
):
|
|
442
441
|
"""Move a bake item up or down in the list
|
|
443
442
|
|
|
444
|
-
:type override_context: typing.
|
|
445
|
-
:type execution_context: typing.
|
|
446
|
-
:type undo:
|
|
443
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
444
|
+
:type execution_context: typing.Union[str, int]
|
|
445
|
+
:type undo: bool
|
|
447
446
|
:param direction: Direction
|
|
448
|
-
:type direction: typing.
|
|
447
|
+
:type direction: typing.Any
|
|
449
448
|
"""
|
|
450
449
|
|
|
451
450
|
...
|
|
452
451
|
|
|
453
|
-
def bake_node_item_remove(
|
|
452
|
+
def bake_node_item_remove(
|
|
453
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
454
|
+
execution_context: typing.Union[str, int] = None,
|
|
455
|
+
undo: bool = None,
|
|
456
|
+
):
|
|
454
457
|
"""Remove a bake item from the bake node
|
|
455
458
|
|
|
456
|
-
:type override_context: typing.
|
|
457
|
-
:type execution_context: typing.
|
|
458
|
-
:type undo:
|
|
459
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
460
|
+
:type execution_context: typing.Union[str, int]
|
|
461
|
+
:type undo: bool
|
|
459
462
|
"""
|
|
460
463
|
|
|
461
464
|
...
|
|
462
465
|
|
|
463
|
-
def clear_viewer_border(
|
|
466
|
+
def clear_viewer_border(
|
|
467
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
468
|
+
execution_context: typing.Union[str, int] = None,
|
|
469
|
+
undo: bool = None,
|
|
470
|
+
):
|
|
464
471
|
"""Clear the boundaries for viewer operations
|
|
465
472
|
|
|
466
|
-
:type override_context: typing.
|
|
467
|
-
:type execution_context: typing.
|
|
468
|
-
:type undo:
|
|
473
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
474
|
+
:type execution_context: typing.Union[str, int]
|
|
475
|
+
:type undo: bool
|
|
469
476
|
"""
|
|
470
477
|
|
|
471
478
|
...
|
|
472
479
|
|
|
473
|
-
def clipboard_copy(
|
|
480
|
+
def clipboard_copy(
|
|
481
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
482
|
+
execution_context: typing.Union[str, int] = None,
|
|
483
|
+
undo: bool = None,
|
|
484
|
+
):
|
|
474
485
|
"""Copy the selected nodes to the internal clipboard
|
|
475
486
|
|
|
476
|
-
:type override_context: typing.
|
|
477
|
-
:type execution_context: typing.
|
|
478
|
-
:type undo:
|
|
487
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
488
|
+
:type execution_context: typing.Union[str, int]
|
|
489
|
+
:type undo: bool
|
|
479
490
|
"""
|
|
480
491
|
|
|
481
492
|
...
|
|
482
493
|
|
|
483
494
|
def clipboard_paste(
|
|
484
|
-
override_context=None,
|
|
485
|
-
execution_context=None,
|
|
486
|
-
undo=None,
|
|
487
|
-
|
|
488
|
-
offset: typing.Optional[typing.Any] = (0.0, 0.0),
|
|
495
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
496
|
+
execution_context: typing.Union[str, int] = None,
|
|
497
|
+
undo: bool = None,
|
|
498
|
+
offset: typing.Any = (0.0, 0.0),
|
|
489
499
|
):
|
|
490
500
|
"""Paste nodes from the internal clipboard to the active node tree
|
|
491
501
|
|
|
492
|
-
:type override_context: typing.
|
|
493
|
-
:type execution_context: typing.
|
|
494
|
-
:type undo:
|
|
502
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
503
|
+
:type execution_context: typing.Union[str, int]
|
|
504
|
+
:type undo: bool
|
|
495
505
|
:param offset: Location, The 2D view location for the center of the new nodes, or unchanged if not set
|
|
496
|
-
:type offset: typing.
|
|
506
|
+
:type offset: typing.Any
|
|
497
507
|
"""
|
|
498
508
|
|
|
499
509
|
...
|
|
500
510
|
|
|
501
511
|
def collapse_hide_unused_toggle(
|
|
502
|
-
override_context
|
|
512
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
513
|
+
execution_context: typing.Union[str, int] = None,
|
|
514
|
+
undo: bool = None,
|
|
503
515
|
):
|
|
504
516
|
"""Toggle collapsed nodes and hide unused sockets
|
|
505
517
|
|
|
506
|
-
:type override_context: typing.
|
|
507
|
-
:type execution_context: typing.
|
|
508
|
-
:type undo:
|
|
518
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
519
|
+
:type execution_context: typing.Union[str, int]
|
|
520
|
+
:type undo: bool
|
|
509
521
|
"""
|
|
510
522
|
|
|
511
523
|
...
|
|
512
524
|
|
|
513
|
-
def cryptomatte_layer_add(
|
|
525
|
+
def cryptomatte_layer_add(
|
|
526
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
527
|
+
execution_context: typing.Union[str, int] = None,
|
|
528
|
+
undo: bool = None,
|
|
529
|
+
):
|
|
514
530
|
"""Add a new input layer to a Cryptomatte node
|
|
515
531
|
|
|
516
|
-
:type override_context: typing.
|
|
517
|
-
:type execution_context: typing.
|
|
518
|
-
:type undo:
|
|
532
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
533
|
+
:type execution_context: typing.Union[str, int]
|
|
534
|
+
:type undo: bool
|
|
519
535
|
"""
|
|
520
536
|
|
|
521
537
|
...
|
|
522
538
|
|
|
523
|
-
def cryptomatte_layer_remove(
|
|
539
|
+
def cryptomatte_layer_remove(
|
|
540
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
541
|
+
execution_context: typing.Union[str, int] = None,
|
|
542
|
+
undo: bool = None,
|
|
543
|
+
):
|
|
524
544
|
"""Remove layer from a Cryptomatte node
|
|
525
545
|
|
|
526
|
-
:type override_context: typing.
|
|
527
|
-
:type execution_context: typing.
|
|
528
|
-
:type undo:
|
|
546
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
547
|
+
:type execution_context: typing.Union[str, int]
|
|
548
|
+
:type undo: bool
|
|
529
549
|
"""
|
|
530
550
|
|
|
531
551
|
...
|
|
532
552
|
|
|
533
|
-
def deactivate_viewer(
|
|
553
|
+
def deactivate_viewer(
|
|
554
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
555
|
+
execution_context: typing.Union[str, int] = None,
|
|
556
|
+
undo: bool = None,
|
|
557
|
+
):
|
|
534
558
|
"""Deactivate selected viewer node in geometry nodes
|
|
535
559
|
|
|
536
|
-
:type override_context: typing.
|
|
537
|
-
:type execution_context: typing.
|
|
538
|
-
:type undo:
|
|
560
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
561
|
+
:type execution_context: typing.Union[str, int]
|
|
562
|
+
:type undo: bool
|
|
539
563
|
"""
|
|
540
564
|
|
|
541
565
|
...
|
|
542
566
|
|
|
543
|
-
def delete(
|
|
567
|
+
def delete(
|
|
568
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
569
|
+
execution_context: typing.Union[str, int] = None,
|
|
570
|
+
undo: bool = None,
|
|
571
|
+
):
|
|
544
572
|
"""Remove selected nodes
|
|
545
573
|
|
|
546
|
-
:type override_context: typing.
|
|
547
|
-
:type execution_context: typing.
|
|
548
|
-
:type undo:
|
|
574
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
575
|
+
:type execution_context: typing.Union[str, int]
|
|
576
|
+
:type undo: bool
|
|
549
577
|
"""
|
|
550
578
|
|
|
551
579
|
...
|
|
552
580
|
|
|
553
|
-
def delete_reconnect(
|
|
581
|
+
def delete_reconnect(
|
|
582
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
583
|
+
execution_context: typing.Union[str, int] = None,
|
|
584
|
+
undo: bool = None,
|
|
585
|
+
):
|
|
554
586
|
"""Remove nodes and reconnect nodes as if deletion was muted
|
|
555
587
|
|
|
556
|
-
:type override_context: typing.
|
|
557
|
-
:type execution_context: typing.
|
|
558
|
-
:type undo:
|
|
588
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
589
|
+
:type execution_context: typing.Union[str, int]
|
|
590
|
+
:type undo: bool
|
|
559
591
|
"""
|
|
560
592
|
|
|
561
593
|
...
|
|
562
594
|
|
|
563
|
-
def detach(
|
|
595
|
+
def detach(
|
|
596
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
597
|
+
execution_context: typing.Union[str, int] = None,
|
|
598
|
+
undo: bool = None,
|
|
599
|
+
):
|
|
564
600
|
"""Detach selected nodes from parents
|
|
565
601
|
|
|
566
|
-
:type override_context: typing.
|
|
567
|
-
:type execution_context: typing.
|
|
568
|
-
:type undo:
|
|
602
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
603
|
+
:type execution_context: typing.Union[str, int]
|
|
604
|
+
:type undo: bool
|
|
569
605
|
"""
|
|
570
606
|
|
|
571
607
|
...
|
|
572
608
|
|
|
573
609
|
def detach_translate_attach(
|
|
574
|
-
override_context=None,
|
|
575
|
-
execution_context=None,
|
|
576
|
-
undo=None,
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
NODE_OT_attach: typing.Optional["attach"] = None,
|
|
610
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
611
|
+
execution_context: typing.Union[str, int] = None,
|
|
612
|
+
undo: bool = None,
|
|
613
|
+
NODE_OT_detach: detach = None,
|
|
614
|
+
TRANSFORM_OT_translate: bpy.ops.transform.translate = None,
|
|
615
|
+
NODE_OT_attach: attach = None,
|
|
581
616
|
):
|
|
582
617
|
"""Detach nodes, move and attach to frame
|
|
583
618
|
|
|
584
|
-
:type override_context: typing.
|
|
585
|
-
:type execution_context: typing.
|
|
586
|
-
:type undo:
|
|
619
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
620
|
+
:type execution_context: typing.Union[str, int]
|
|
621
|
+
:type undo: bool
|
|
587
622
|
:param NODE_OT_detach: Detach Nodes, Detach selected nodes from parents
|
|
588
|
-
:type NODE_OT_detach:
|
|
623
|
+
:type NODE_OT_detach: detach
|
|
589
624
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
590
|
-
:type TRANSFORM_OT_translate:
|
|
625
|
+
:type TRANSFORM_OT_translate: bpy.ops.transform.translate
|
|
591
626
|
:param NODE_OT_attach: Attach Nodes, Attach active node to a frame
|
|
592
|
-
:type NODE_OT_attach:
|
|
627
|
+
:type NODE_OT_attach: attach
|
|
593
628
|
"""
|
|
594
629
|
|
|
595
630
|
...
|
|
596
631
|
|
|
597
632
|
def duplicate(
|
|
598
|
-
override_context=None,
|
|
599
|
-
execution_context=None,
|
|
600
|
-
undo=None,
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
linked: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
633
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
634
|
+
execution_context: typing.Union[str, int] = None,
|
|
635
|
+
undo: bool = None,
|
|
636
|
+
keep_inputs: typing.Union[bool, typing.Any] = False,
|
|
637
|
+
linked: typing.Union[bool, typing.Any] = True,
|
|
604
638
|
):
|
|
605
639
|
"""Duplicate selected nodes
|
|
606
640
|
|
|
607
|
-
:type override_context: typing.
|
|
608
|
-
:type execution_context: typing.
|
|
609
|
-
:type undo:
|
|
641
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
642
|
+
:type execution_context: typing.Union[str, int]
|
|
643
|
+
:type undo: bool
|
|
610
644
|
:param keep_inputs: Keep Inputs, Keep the input links to duplicated nodes
|
|
611
|
-
:type keep_inputs: typing.
|
|
645
|
+
:type keep_inputs: typing.Union[bool, typing.Any]
|
|
612
646
|
:param linked: Linked, Duplicate node but not node trees, linking to the original data
|
|
613
|
-
:type linked: typing.
|
|
647
|
+
:type linked: typing.Union[bool, typing.Any]
|
|
614
648
|
"""
|
|
615
649
|
|
|
616
650
|
...
|
|
617
651
|
|
|
618
652
|
def duplicate_move(
|
|
619
|
-
override_context=None,
|
|
620
|
-
execution_context=None,
|
|
621
|
-
undo=None,
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
NODE_OT_translate_attach: typing.Optional["translate_attach"] = None,
|
|
653
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
654
|
+
execution_context: typing.Union[str, int] = None,
|
|
655
|
+
undo: bool = None,
|
|
656
|
+
NODE_OT_duplicate: duplicate = None,
|
|
657
|
+
NODE_OT_translate_attach: translate_attach = None,
|
|
625
658
|
):
|
|
626
659
|
"""Duplicate selected nodes and move them
|
|
627
660
|
|
|
628
|
-
:type override_context: typing.
|
|
629
|
-
:type execution_context: typing.
|
|
630
|
-
:type undo:
|
|
661
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
662
|
+
:type execution_context: typing.Union[str, int]
|
|
663
|
+
:type undo: bool
|
|
631
664
|
:param NODE_OT_duplicate: Duplicate Nodes, Duplicate selected nodes
|
|
632
|
-
:type NODE_OT_duplicate:
|
|
665
|
+
:type NODE_OT_duplicate: duplicate
|
|
633
666
|
:param NODE_OT_translate_attach: Move and Attach, Move nodes and attach to frame
|
|
634
|
-
:type NODE_OT_translate_attach:
|
|
667
|
+
:type NODE_OT_translate_attach: translate_attach
|
|
635
668
|
"""
|
|
636
669
|
|
|
637
670
|
...
|
|
638
671
|
|
|
639
672
|
def duplicate_move_keep_inputs(
|
|
640
|
-
override_context=None,
|
|
641
|
-
execution_context=None,
|
|
642
|
-
undo=None,
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
NODE_OT_translate_attach: typing.Optional["translate_attach"] = None,
|
|
673
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
674
|
+
execution_context: typing.Union[str, int] = None,
|
|
675
|
+
undo: bool = None,
|
|
676
|
+
NODE_OT_duplicate: duplicate = None,
|
|
677
|
+
NODE_OT_translate_attach: translate_attach = None,
|
|
646
678
|
):
|
|
647
679
|
"""Duplicate selected nodes keeping input links and move them
|
|
648
680
|
|
|
649
|
-
:type override_context: typing.
|
|
650
|
-
:type execution_context: typing.
|
|
651
|
-
:type undo:
|
|
681
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
682
|
+
:type execution_context: typing.Union[str, int]
|
|
683
|
+
:type undo: bool
|
|
652
684
|
:param NODE_OT_duplicate: Duplicate Nodes, Duplicate selected nodes
|
|
653
|
-
:type NODE_OT_duplicate:
|
|
685
|
+
:type NODE_OT_duplicate: duplicate
|
|
654
686
|
:param NODE_OT_translate_attach: Move and Attach, Move nodes and attach to frame
|
|
655
|
-
:type NODE_OT_translate_attach:
|
|
687
|
+
:type NODE_OT_translate_attach: translate_attach
|
|
656
688
|
"""
|
|
657
689
|
|
|
658
690
|
...
|
|
659
691
|
|
|
660
692
|
def duplicate_move_linked(
|
|
661
|
-
override_context=None,
|
|
662
|
-
execution_context=None,
|
|
663
|
-
undo=None,
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
NODE_OT_translate_attach: typing.Optional["translate_attach"] = None,
|
|
693
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
694
|
+
execution_context: typing.Union[str, int] = None,
|
|
695
|
+
undo: bool = None,
|
|
696
|
+
NODE_OT_duplicate: duplicate = None,
|
|
697
|
+
NODE_OT_translate_attach: translate_attach = None,
|
|
667
698
|
):
|
|
668
699
|
"""Duplicate selected nodes, but not their node trees, and move them
|
|
669
700
|
|
|
670
|
-
:type override_context: typing.
|
|
671
|
-
:type execution_context: typing.
|
|
672
|
-
:type undo:
|
|
701
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
702
|
+
:type execution_context: typing.Union[str, int]
|
|
703
|
+
:type undo: bool
|
|
673
704
|
:param NODE_OT_duplicate: Duplicate Nodes, Duplicate selected nodes
|
|
674
|
-
:type NODE_OT_duplicate:
|
|
705
|
+
:type NODE_OT_duplicate: duplicate
|
|
675
706
|
:param NODE_OT_translate_attach: Move and Attach, Move nodes and attach to frame
|
|
676
|
-
:type NODE_OT_translate_attach:
|
|
707
|
+
:type NODE_OT_translate_attach: translate_attach
|
|
677
708
|
"""
|
|
678
709
|
|
|
679
710
|
...
|
|
680
711
|
|
|
681
|
-
def enum_definition_item_add(
|
|
712
|
+
def enum_definition_item_add(
|
|
713
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
714
|
+
execution_context: typing.Union[str, int] = None,
|
|
715
|
+
undo: bool = None,
|
|
716
|
+
):
|
|
682
717
|
"""Add an enum item to the definition
|
|
683
718
|
|
|
684
|
-
:type override_context: typing.
|
|
685
|
-
:type execution_context: typing.
|
|
686
|
-
:type undo:
|
|
719
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
720
|
+
:type execution_context: typing.Union[str, int]
|
|
721
|
+
:type undo: bool
|
|
687
722
|
"""
|
|
688
723
|
|
|
689
724
|
...
|
|
690
725
|
|
|
691
726
|
def enum_definition_item_move(
|
|
692
|
-
override_context=None,
|
|
693
|
-
execution_context=None,
|
|
694
|
-
undo=None,
|
|
695
|
-
|
|
696
|
-
direction: typing.Optional[typing.Any] = "UP",
|
|
727
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
728
|
+
execution_context: typing.Union[str, int] = None,
|
|
729
|
+
undo: bool = None,
|
|
730
|
+
direction: typing.Any = "UP",
|
|
697
731
|
):
|
|
698
732
|
"""Remove the selected enum item from the definition
|
|
699
733
|
|
|
700
|
-
:type override_context: typing.
|
|
701
|
-
:type execution_context: typing.
|
|
702
|
-
:type undo:
|
|
734
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
735
|
+
:type execution_context: typing.Union[str, int]
|
|
736
|
+
:type undo: bool
|
|
703
737
|
:param direction: Direction, Move up or down
|
|
704
|
-
:type direction: typing.
|
|
738
|
+
:type direction: typing.Any
|
|
705
739
|
"""
|
|
706
740
|
|
|
707
741
|
...
|
|
708
742
|
|
|
709
743
|
def enum_definition_item_remove(
|
|
710
|
-
override_context
|
|
744
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
745
|
+
execution_context: typing.Union[str, int] = None,
|
|
746
|
+
undo: bool = None,
|
|
711
747
|
):
|
|
712
748
|
"""Remove the selected enum item from the definition
|
|
713
749
|
|
|
714
|
-
:type override_context: typing.
|
|
715
|
-
:type execution_context: typing.
|
|
716
|
-
:type undo:
|
|
750
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
751
|
+
:type execution_context: typing.Union[str, int]
|
|
752
|
+
:type undo: bool
|
|
717
753
|
"""
|
|
718
754
|
|
|
719
755
|
...
|
|
720
756
|
|
|
721
|
-
def find_node(
|
|
757
|
+
def find_node(
|
|
758
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
759
|
+
execution_context: typing.Union[str, int] = None,
|
|
760
|
+
undo: bool = None,
|
|
761
|
+
):
|
|
722
762
|
"""Search for a node by name and focus and select it
|
|
723
763
|
|
|
724
|
-
:type override_context: typing.
|
|
725
|
-
:type execution_context: typing.
|
|
726
|
-
:type undo:
|
|
764
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
765
|
+
:type execution_context: typing.Union[str, int]
|
|
766
|
+
:type undo: bool
|
|
727
767
|
"""
|
|
728
768
|
|
|
729
769
|
...
|
|
730
770
|
|
|
731
771
|
def gltf_settings_node_operator(
|
|
732
|
-
override_context
|
|
772
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
773
|
+
execution_context: typing.Union[str, int] = None,
|
|
774
|
+
undo: bool = None,
|
|
733
775
|
):
|
|
734
776
|
"""Add a node to the active tree for glTF export
|
|
735
777
|
|
|
736
|
-
:type override_context: typing.
|
|
737
|
-
:type execution_context: typing.
|
|
738
|
-
:type undo:
|
|
778
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
779
|
+
:type execution_context: typing.Union[str, int]
|
|
780
|
+
:type undo: bool
|
|
739
781
|
"""
|
|
740
782
|
|
|
741
783
|
...
|
|
742
784
|
|
|
743
785
|
def group_edit(
|
|
744
|
-
override_context=None,
|
|
745
|
-
execution_context=None,
|
|
746
|
-
undo=None,
|
|
747
|
-
|
|
748
|
-
exit: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
786
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
787
|
+
execution_context: typing.Union[str, int] = None,
|
|
788
|
+
undo: bool = None,
|
|
789
|
+
exit: typing.Union[bool, typing.Any] = False,
|
|
749
790
|
):
|
|
750
791
|
"""Edit node group
|
|
751
792
|
|
|
752
|
-
:type override_context: typing.
|
|
753
|
-
:type execution_context: typing.
|
|
754
|
-
:type undo:
|
|
793
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
794
|
+
:type execution_context: typing.Union[str, int]
|
|
795
|
+
:type undo: bool
|
|
755
796
|
:param exit: Exit
|
|
756
|
-
:type exit: typing.
|
|
797
|
+
:type exit: typing.Union[bool, typing.Any]
|
|
757
798
|
"""
|
|
758
799
|
|
|
759
800
|
...
|
|
760
801
|
|
|
761
|
-
def group_insert(
|
|
802
|
+
def group_insert(
|
|
803
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
804
|
+
execution_context: typing.Union[str, int] = None,
|
|
805
|
+
undo: bool = None,
|
|
806
|
+
):
|
|
762
807
|
"""Insert selected nodes into a node group
|
|
763
808
|
|
|
764
|
-
:type override_context: typing.
|
|
765
|
-
:type execution_context: typing.
|
|
766
|
-
:type undo:
|
|
809
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
810
|
+
:type execution_context: typing.Union[str, int]
|
|
811
|
+
:type undo: bool
|
|
767
812
|
"""
|
|
768
813
|
|
|
769
814
|
...
|
|
770
815
|
|
|
771
|
-
def group_make(
|
|
816
|
+
def group_make(
|
|
817
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
818
|
+
execution_context: typing.Union[str, int] = None,
|
|
819
|
+
undo: bool = None,
|
|
820
|
+
):
|
|
772
821
|
"""Make group from selected nodes
|
|
773
822
|
|
|
774
|
-
:type override_context: typing.
|
|
775
|
-
:type execution_context: typing.
|
|
776
|
-
:type undo:
|
|
823
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
824
|
+
:type execution_context: typing.Union[str, int]
|
|
825
|
+
:type undo: bool
|
|
777
826
|
"""
|
|
778
827
|
|
|
779
828
|
...
|
|
780
829
|
|
|
781
830
|
def group_separate(
|
|
782
|
-
override_context=None,
|
|
783
|
-
execution_context=None,
|
|
784
|
-
undo=None,
|
|
785
|
-
|
|
786
|
-
type: typing.Optional[typing.Any] = "COPY",
|
|
831
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
832
|
+
execution_context: typing.Union[str, int] = None,
|
|
833
|
+
undo: bool = None,
|
|
834
|
+
type: typing.Any = "COPY",
|
|
787
835
|
):
|
|
788
836
|
"""Separate selected nodes from the node group
|
|
789
837
|
|
|
790
|
-
:type override_context: typing.
|
|
791
|
-
:type execution_context: typing.
|
|
792
|
-
:type undo:
|
|
838
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
839
|
+
:type execution_context: typing.Union[str, int]
|
|
840
|
+
:type undo: bool
|
|
793
841
|
:param type: Type
|
|
794
842
|
|
|
795
843
|
COPY
|
|
@@ -797,353 +845,390 @@ def group_separate(
|
|
|
797
845
|
|
|
798
846
|
MOVE
|
|
799
847
|
Move -- Move to parent node tree, remove from group.
|
|
800
|
-
:type type: typing.
|
|
848
|
+
:type type: typing.Any
|
|
801
849
|
"""
|
|
802
850
|
|
|
803
851
|
...
|
|
804
852
|
|
|
805
|
-
def group_ungroup(
|
|
853
|
+
def group_ungroup(
|
|
854
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
855
|
+
execution_context: typing.Union[str, int] = None,
|
|
856
|
+
undo: bool = None,
|
|
857
|
+
):
|
|
806
858
|
"""Ungroup selected nodes
|
|
807
859
|
|
|
808
|
-
:type override_context: typing.
|
|
809
|
-
:type execution_context: typing.
|
|
810
|
-
:type undo:
|
|
860
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
861
|
+
:type execution_context: typing.Union[str, int]
|
|
862
|
+
:type undo: bool
|
|
811
863
|
"""
|
|
812
864
|
|
|
813
865
|
...
|
|
814
866
|
|
|
815
|
-
def hide_socket_toggle(
|
|
867
|
+
def hide_socket_toggle(
|
|
868
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
869
|
+
execution_context: typing.Union[str, int] = None,
|
|
870
|
+
undo: bool = None,
|
|
871
|
+
):
|
|
816
872
|
"""Toggle unused node socket display
|
|
817
873
|
|
|
818
|
-
:type override_context: typing.
|
|
819
|
-
:type execution_context: typing.
|
|
820
|
-
:type undo:
|
|
874
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
875
|
+
:type execution_context: typing.Union[str, int]
|
|
876
|
+
:type undo: bool
|
|
821
877
|
"""
|
|
822
878
|
|
|
823
879
|
...
|
|
824
880
|
|
|
825
|
-
def hide_toggle(
|
|
881
|
+
def hide_toggle(
|
|
882
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
883
|
+
execution_context: typing.Union[str, int] = None,
|
|
884
|
+
undo: bool = None,
|
|
885
|
+
):
|
|
826
886
|
"""Toggle hiding of selected nodes
|
|
827
887
|
|
|
828
|
-
:type override_context: typing.
|
|
829
|
-
:type execution_context: typing.
|
|
830
|
-
:type undo:
|
|
888
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
889
|
+
:type execution_context: typing.Union[str, int]
|
|
890
|
+
:type undo: bool
|
|
831
891
|
"""
|
|
832
892
|
|
|
833
893
|
...
|
|
834
894
|
|
|
835
|
-
def index_switch_item_add(
|
|
895
|
+
def index_switch_item_add(
|
|
896
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
897
|
+
execution_context: typing.Union[str, int] = None,
|
|
898
|
+
undo: bool = None,
|
|
899
|
+
):
|
|
836
900
|
"""Add an item to the index switch
|
|
837
901
|
|
|
838
|
-
:type override_context: typing.
|
|
839
|
-
:type execution_context: typing.
|
|
840
|
-
:type undo:
|
|
902
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
903
|
+
:type execution_context: typing.Union[str, int]
|
|
904
|
+
:type undo: bool
|
|
841
905
|
"""
|
|
842
906
|
|
|
843
907
|
...
|
|
844
908
|
|
|
845
909
|
def index_switch_item_remove(
|
|
846
|
-
override_context=None,
|
|
847
|
-
execution_context=None,
|
|
848
|
-
undo=None,
|
|
849
|
-
|
|
850
|
-
index: typing.Optional[typing.Any] = 0,
|
|
910
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
911
|
+
execution_context: typing.Union[str, int] = None,
|
|
912
|
+
undo: bool = None,
|
|
913
|
+
index: typing.Any = 0,
|
|
851
914
|
):
|
|
852
915
|
"""Remove an item from the index switch
|
|
853
916
|
|
|
854
|
-
:type override_context: typing.
|
|
855
|
-
:type execution_context: typing.
|
|
856
|
-
:type undo:
|
|
917
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
918
|
+
:type execution_context: typing.Union[str, int]
|
|
919
|
+
:type undo: bool
|
|
857
920
|
:param index: Index, Index of item to remove
|
|
858
|
-
:type index: typing.
|
|
921
|
+
:type index: typing.Any
|
|
859
922
|
"""
|
|
860
923
|
|
|
861
924
|
...
|
|
862
925
|
|
|
863
|
-
def insert_offset(
|
|
926
|
+
def insert_offset(
|
|
927
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
928
|
+
execution_context: typing.Union[str, int] = None,
|
|
929
|
+
undo: bool = None,
|
|
930
|
+
):
|
|
864
931
|
"""Automatically offset nodes on insertion
|
|
865
932
|
|
|
866
|
-
:type override_context: typing.
|
|
867
|
-
:type execution_context: typing.
|
|
868
|
-
:type undo:
|
|
933
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
934
|
+
:type execution_context: typing.Union[str, int]
|
|
935
|
+
:type undo: bool
|
|
869
936
|
"""
|
|
870
937
|
|
|
871
938
|
...
|
|
872
939
|
|
|
873
|
-
def interface_item_duplicate(
|
|
940
|
+
def interface_item_duplicate(
|
|
941
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
942
|
+
execution_context: typing.Union[str, int] = None,
|
|
943
|
+
undo: bool = None,
|
|
944
|
+
):
|
|
874
945
|
"""Add a copy of the active item to the interface
|
|
875
946
|
|
|
876
|
-
:type override_context: typing.
|
|
877
|
-
:type execution_context: typing.
|
|
878
|
-
:type undo:
|
|
947
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
948
|
+
:type execution_context: typing.Union[str, int]
|
|
949
|
+
:type undo: bool
|
|
879
950
|
"""
|
|
880
951
|
|
|
881
952
|
...
|
|
882
953
|
|
|
883
954
|
def interface_item_new(
|
|
884
|
-
override_context=None,
|
|
885
|
-
execution_context=None,
|
|
886
|
-
undo=None,
|
|
887
|
-
|
|
888
|
-
item_type: typing.Optional[typing.Any] = "INPUT",
|
|
955
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
956
|
+
execution_context: typing.Union[str, int] = None,
|
|
957
|
+
undo: bool = None,
|
|
958
|
+
item_type: typing.Any = "INPUT",
|
|
889
959
|
):
|
|
890
960
|
"""Add a new item to the interface
|
|
891
961
|
|
|
892
|
-
:type override_context: typing.
|
|
893
|
-
:type execution_context: typing.
|
|
894
|
-
:type undo:
|
|
962
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
963
|
+
:type execution_context: typing.Union[str, int]
|
|
964
|
+
:type undo: bool
|
|
895
965
|
:param item_type: Item Type, Type of the item to create
|
|
896
|
-
:type item_type: typing.
|
|
966
|
+
:type item_type: typing.Any
|
|
897
967
|
"""
|
|
898
968
|
|
|
899
969
|
...
|
|
900
970
|
|
|
901
|
-
def interface_item_remove(
|
|
971
|
+
def interface_item_remove(
|
|
972
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
973
|
+
execution_context: typing.Union[str, int] = None,
|
|
974
|
+
undo: bool = None,
|
|
975
|
+
):
|
|
902
976
|
"""Remove active item from the interface
|
|
903
977
|
|
|
904
|
-
:type override_context: typing.
|
|
905
|
-
:type execution_context: typing.
|
|
906
|
-
:type undo:
|
|
978
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
979
|
+
:type execution_context: typing.Union[str, int]
|
|
980
|
+
:type undo: bool
|
|
907
981
|
"""
|
|
908
982
|
|
|
909
983
|
...
|
|
910
984
|
|
|
911
|
-
def join(
|
|
985
|
+
def join(
|
|
986
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
987
|
+
execution_context: typing.Union[str, int] = None,
|
|
988
|
+
undo: bool = None,
|
|
989
|
+
):
|
|
912
990
|
"""Attach selected nodes to a new common frame
|
|
913
991
|
|
|
914
|
-
:type override_context: typing.
|
|
915
|
-
:type execution_context: typing.
|
|
916
|
-
:type undo:
|
|
992
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
993
|
+
:type execution_context: typing.Union[str, int]
|
|
994
|
+
:type undo: bool
|
|
917
995
|
"""
|
|
918
996
|
|
|
919
997
|
...
|
|
920
998
|
|
|
921
999
|
def link(
|
|
922
|
-
override_context=None,
|
|
923
|
-
execution_context=None,
|
|
924
|
-
undo=None,
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
zoom_influence: typing.Optional[typing.Any] = 0.5,
|
|
1000
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1001
|
+
execution_context: typing.Union[str, int] = None,
|
|
1002
|
+
undo: bool = None,
|
|
1003
|
+
detach: typing.Union[bool, typing.Any] = False,
|
|
1004
|
+
drag_start: typing.Any = (0.0, 0.0),
|
|
1005
|
+
inside_padding: typing.Any = 2.0,
|
|
1006
|
+
outside_padding: typing.Any = 0.0,
|
|
1007
|
+
speed_ramp: typing.Any = 1.0,
|
|
1008
|
+
max_speed: typing.Any = 26.0,
|
|
1009
|
+
delay: typing.Any = 0.5,
|
|
1010
|
+
zoom_influence: typing.Any = 0.5,
|
|
934
1011
|
):
|
|
935
1012
|
"""Use the mouse to create a link between two nodes
|
|
936
1013
|
|
|
937
|
-
:type override_context: typing.
|
|
938
|
-
:type execution_context: typing.
|
|
939
|
-
:type undo:
|
|
1014
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1015
|
+
:type execution_context: typing.Union[str, int]
|
|
1016
|
+
:type undo: bool
|
|
940
1017
|
:param detach: Detach, Detach and redirect existing links
|
|
941
|
-
:type detach: typing.
|
|
1018
|
+
:type detach: typing.Union[bool, typing.Any]
|
|
942
1019
|
:param drag_start: Drag Start, The position of the mouse cursor at the start of the operation
|
|
943
|
-
:type drag_start: typing.
|
|
1020
|
+
:type drag_start: typing.Any
|
|
944
1021
|
:param inside_padding: Inside Padding, Inside distance in UI units from the edge of the region within which to start panning
|
|
945
|
-
:type inside_padding: typing.
|
|
1022
|
+
:type inside_padding: typing.Any
|
|
946
1023
|
:param outside_padding: Outside Padding, Outside distance in UI units from the edge of the region at which to stop panning
|
|
947
|
-
:type outside_padding: typing.
|
|
1024
|
+
:type outside_padding: typing.Any
|
|
948
1025
|
:param speed_ramp: Speed Ramp, Width of the zone in UI units where speed increases with distance from the edge
|
|
949
|
-
:type speed_ramp: typing.
|
|
1026
|
+
:type speed_ramp: typing.Any
|
|
950
1027
|
:param max_speed: Max Speed, Maximum speed in UI units per second
|
|
951
|
-
:type max_speed: typing.
|
|
1028
|
+
:type max_speed: typing.Any
|
|
952
1029
|
:param delay: Delay, Delay in seconds before maximum speed is reached
|
|
953
|
-
:type delay: typing.
|
|
1030
|
+
:type delay: typing.Any
|
|
954
1031
|
:param zoom_influence: Zoom Influence, Influence of the zoom factor on scroll speed
|
|
955
|
-
:type zoom_influence: typing.
|
|
1032
|
+
:type zoom_influence: typing.Any
|
|
956
1033
|
"""
|
|
957
1034
|
|
|
958
1035
|
...
|
|
959
1036
|
|
|
960
1037
|
def link_make(
|
|
961
|
-
override_context=None,
|
|
962
|
-
execution_context=None,
|
|
963
|
-
undo=None,
|
|
964
|
-
|
|
965
|
-
replace: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1038
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1039
|
+
execution_context: typing.Union[str, int] = None,
|
|
1040
|
+
undo: bool = None,
|
|
1041
|
+
replace: typing.Union[bool, typing.Any] = False,
|
|
966
1042
|
):
|
|
967
1043
|
"""Makes a link between selected output in input sockets
|
|
968
1044
|
|
|
969
|
-
:type override_context: typing.
|
|
970
|
-
:type execution_context: typing.
|
|
971
|
-
:type undo:
|
|
1045
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1046
|
+
:type execution_context: typing.Union[str, int]
|
|
1047
|
+
:type undo: bool
|
|
972
1048
|
:param replace: Replace, Replace socket connections with the new links
|
|
973
|
-
:type replace: typing.
|
|
1049
|
+
:type replace: typing.Union[bool, typing.Any]
|
|
974
1050
|
"""
|
|
975
1051
|
|
|
976
1052
|
...
|
|
977
1053
|
|
|
978
|
-
def link_viewer(
|
|
1054
|
+
def link_viewer(
|
|
1055
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1056
|
+
execution_context: typing.Union[str, int] = None,
|
|
1057
|
+
undo: bool = None,
|
|
1058
|
+
):
|
|
979
1059
|
"""Link to viewer node
|
|
980
1060
|
|
|
981
|
-
:type override_context: typing.
|
|
982
|
-
:type execution_context: typing.
|
|
983
|
-
:type undo:
|
|
1061
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1062
|
+
:type execution_context: typing.Union[str, int]
|
|
1063
|
+
:type undo: bool
|
|
984
1064
|
"""
|
|
985
1065
|
|
|
986
1066
|
...
|
|
987
1067
|
|
|
988
1068
|
def links_cut(
|
|
989
|
-
override_context=None,
|
|
990
|
-
execution_context=None,
|
|
991
|
-
undo=None,
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
bpy.types.bpy_prop_collection["bpy.types.OperatorMousePath"]
|
|
995
|
-
] = None,
|
|
996
|
-
cursor: typing.Optional[typing.Any] = 12,
|
|
1069
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1070
|
+
execution_context: typing.Union[str, int] = None,
|
|
1071
|
+
undo: bool = None,
|
|
1072
|
+
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] = None,
|
|
1073
|
+
cursor: typing.Any = 12,
|
|
997
1074
|
):
|
|
998
1075
|
"""Use the mouse to cut (remove) some links
|
|
999
1076
|
|
|
1000
|
-
:type override_context: typing.
|
|
1001
|
-
:type execution_context: typing.
|
|
1002
|
-
:type undo:
|
|
1077
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1078
|
+
:type execution_context: typing.Union[str, int]
|
|
1079
|
+
:type undo: bool
|
|
1003
1080
|
:param path: Path
|
|
1004
|
-
:type path:
|
|
1081
|
+
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath]
|
|
1005
1082
|
:param cursor: Cursor
|
|
1006
|
-
:type cursor: typing.
|
|
1083
|
+
:type cursor: typing.Any
|
|
1007
1084
|
"""
|
|
1008
1085
|
|
|
1009
1086
|
...
|
|
1010
1087
|
|
|
1011
|
-
def links_detach(
|
|
1088
|
+
def links_detach(
|
|
1089
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1090
|
+
execution_context: typing.Union[str, int] = None,
|
|
1091
|
+
undo: bool = None,
|
|
1092
|
+
):
|
|
1012
1093
|
"""Remove all links to selected nodes, and try to connect neighbor nodes together
|
|
1013
1094
|
|
|
1014
|
-
:type override_context: typing.
|
|
1015
|
-
:type execution_context: typing.
|
|
1016
|
-
:type undo:
|
|
1095
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1096
|
+
:type execution_context: typing.Union[str, int]
|
|
1097
|
+
:type undo: bool
|
|
1017
1098
|
"""
|
|
1018
1099
|
|
|
1019
1100
|
...
|
|
1020
1101
|
|
|
1021
1102
|
def links_mute(
|
|
1022
|
-
override_context=None,
|
|
1023
|
-
execution_context=None,
|
|
1024
|
-
undo=None,
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
bpy.types.bpy_prop_collection["bpy.types.OperatorMousePath"]
|
|
1028
|
-
] = None,
|
|
1029
|
-
cursor: typing.Optional[typing.Any] = 35,
|
|
1103
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1104
|
+
execution_context: typing.Union[str, int] = None,
|
|
1105
|
+
undo: bool = None,
|
|
1106
|
+
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] = None,
|
|
1107
|
+
cursor: typing.Any = 35,
|
|
1030
1108
|
):
|
|
1031
1109
|
"""Use the mouse to mute links
|
|
1032
1110
|
|
|
1033
|
-
:type override_context: typing.
|
|
1034
|
-
:type execution_context: typing.
|
|
1035
|
-
:type undo:
|
|
1111
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1112
|
+
:type execution_context: typing.Union[str, int]
|
|
1113
|
+
:type undo: bool
|
|
1036
1114
|
:param path: Path
|
|
1037
|
-
:type path:
|
|
1115
|
+
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath]
|
|
1038
1116
|
:param cursor: Cursor
|
|
1039
|
-
:type cursor: typing.
|
|
1117
|
+
:type cursor: typing.Any
|
|
1040
1118
|
"""
|
|
1041
1119
|
|
|
1042
1120
|
...
|
|
1043
1121
|
|
|
1044
1122
|
def move_detach_links(
|
|
1045
|
-
override_context=None,
|
|
1046
|
-
execution_context=None,
|
|
1047
|
-
undo=None,
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
TRANSFORM_OT_translate: typing.Optional["bpy.ops.transform.translate"] = None,
|
|
1123
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1124
|
+
execution_context: typing.Union[str, int] = None,
|
|
1125
|
+
undo: bool = None,
|
|
1126
|
+
NODE_OT_links_detach: links_detach = None,
|
|
1127
|
+
TRANSFORM_OT_translate: bpy.ops.transform.translate = None,
|
|
1051
1128
|
):
|
|
1052
1129
|
"""Move a node to detach links
|
|
1053
1130
|
|
|
1054
|
-
:type override_context: typing.
|
|
1055
|
-
:type execution_context: typing.
|
|
1056
|
-
:type undo:
|
|
1131
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1132
|
+
:type execution_context: typing.Union[str, int]
|
|
1133
|
+
:type undo: bool
|
|
1057
1134
|
:param NODE_OT_links_detach: Detach Links, Remove all links to selected nodes, and try to connect neighbor nodes together
|
|
1058
|
-
:type NODE_OT_links_detach:
|
|
1135
|
+
:type NODE_OT_links_detach: links_detach
|
|
1059
1136
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
1060
|
-
:type TRANSFORM_OT_translate:
|
|
1137
|
+
:type TRANSFORM_OT_translate: bpy.ops.transform.translate
|
|
1061
1138
|
"""
|
|
1062
1139
|
|
|
1063
1140
|
...
|
|
1064
1141
|
|
|
1065
1142
|
def move_detach_links_release(
|
|
1066
|
-
override_context=None,
|
|
1067
|
-
execution_context=None,
|
|
1068
|
-
undo=None,
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
NODE_OT_translate_attach: typing.Optional["translate_attach"] = None,
|
|
1143
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1144
|
+
execution_context: typing.Union[str, int] = None,
|
|
1145
|
+
undo: bool = None,
|
|
1146
|
+
NODE_OT_links_detach: links_detach = None,
|
|
1147
|
+
NODE_OT_translate_attach: translate_attach = None,
|
|
1072
1148
|
):
|
|
1073
1149
|
"""Move a node to detach links
|
|
1074
1150
|
|
|
1075
|
-
:type override_context: typing.
|
|
1076
|
-
:type execution_context: typing.
|
|
1077
|
-
:type undo:
|
|
1151
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1152
|
+
:type execution_context: typing.Union[str, int]
|
|
1153
|
+
:type undo: bool
|
|
1078
1154
|
:param NODE_OT_links_detach: Detach Links, Remove all links to selected nodes, and try to connect neighbor nodes together
|
|
1079
|
-
:type NODE_OT_links_detach:
|
|
1155
|
+
:type NODE_OT_links_detach: links_detach
|
|
1080
1156
|
:param NODE_OT_translate_attach: Move and Attach, Move nodes and attach to frame
|
|
1081
|
-
:type NODE_OT_translate_attach:
|
|
1157
|
+
:type NODE_OT_translate_attach: translate_attach
|
|
1082
1158
|
"""
|
|
1083
1159
|
|
|
1084
1160
|
...
|
|
1085
1161
|
|
|
1086
|
-
def mute_toggle(
|
|
1162
|
+
def mute_toggle(
|
|
1163
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1164
|
+
execution_context: typing.Union[str, int] = None,
|
|
1165
|
+
undo: bool = None,
|
|
1166
|
+
):
|
|
1087
1167
|
"""Toggle muting of selected nodes
|
|
1088
1168
|
|
|
1089
|
-
:type override_context: typing.
|
|
1090
|
-
:type execution_context: typing.
|
|
1091
|
-
:type undo:
|
|
1169
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1170
|
+
:type execution_context: typing.Union[str, int]
|
|
1171
|
+
:type undo: bool
|
|
1092
1172
|
"""
|
|
1093
1173
|
|
|
1094
1174
|
...
|
|
1095
1175
|
|
|
1096
1176
|
def new_geometry_node_group_assign(
|
|
1097
|
-
override_context
|
|
1177
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1178
|
+
execution_context: typing.Union[str, int] = None,
|
|
1179
|
+
undo: bool = None,
|
|
1098
1180
|
):
|
|
1099
1181
|
"""Create a new geometry node group and assign it to the active modifier
|
|
1100
1182
|
|
|
1101
|
-
:type override_context: typing.
|
|
1102
|
-
:type execution_context: typing.
|
|
1103
|
-
:type undo:
|
|
1183
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1184
|
+
:type execution_context: typing.Union[str, int]
|
|
1185
|
+
:type undo: bool
|
|
1104
1186
|
"""
|
|
1105
1187
|
|
|
1106
1188
|
...
|
|
1107
1189
|
|
|
1108
1190
|
def new_geometry_node_group_tool(
|
|
1109
|
-
override_context
|
|
1191
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1192
|
+
execution_context: typing.Union[str, int] = None,
|
|
1193
|
+
undo: bool = None,
|
|
1110
1194
|
):
|
|
1111
1195
|
"""Create a new geometry node group for a tool
|
|
1112
1196
|
|
|
1113
|
-
:type override_context: typing.
|
|
1114
|
-
:type execution_context: typing.
|
|
1115
|
-
:type undo:
|
|
1197
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1198
|
+
:type execution_context: typing.Union[str, int]
|
|
1199
|
+
:type undo: bool
|
|
1116
1200
|
"""
|
|
1117
1201
|
|
|
1118
1202
|
...
|
|
1119
1203
|
|
|
1120
1204
|
def new_geometry_nodes_modifier(
|
|
1121
|
-
override_context
|
|
1205
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1206
|
+
execution_context: typing.Union[str, int] = None,
|
|
1207
|
+
undo: bool = None,
|
|
1122
1208
|
):
|
|
1123
1209
|
"""Create a new modifier with a new geometry node group
|
|
1124
1210
|
|
|
1125
|
-
:type override_context: typing.
|
|
1126
|
-
:type execution_context: typing.
|
|
1127
|
-
:type undo:
|
|
1211
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1212
|
+
:type execution_context: typing.Union[str, int]
|
|
1213
|
+
:type undo: bool
|
|
1128
1214
|
"""
|
|
1129
1215
|
|
|
1130
1216
|
...
|
|
1131
1217
|
|
|
1132
1218
|
def new_node_tree(
|
|
1133
|
-
override_context=None,
|
|
1134
|
-
execution_context=None,
|
|
1135
|
-
undo=None,
|
|
1136
|
-
|
|
1137
|
-
type: typing.Optional[typing.Union[int, str, typing.Any]] = "",
|
|
1219
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1220
|
+
execution_context: typing.Union[str, int] = None,
|
|
1221
|
+
undo: bool = None,
|
|
1222
|
+
type: typing.Union[str, int, typing.Any] = "",
|
|
1138
1223
|
name: typing.Union[str, typing.Any] = "NodeTree",
|
|
1139
1224
|
):
|
|
1140
1225
|
"""Create a new node tree
|
|
1141
1226
|
|
|
1142
|
-
:type override_context: typing.
|
|
1143
|
-
:type execution_context: typing.
|
|
1144
|
-
:type undo:
|
|
1227
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1228
|
+
:type execution_context: typing.Union[str, int]
|
|
1229
|
+
:type undo: bool
|
|
1145
1230
|
:param type: Tree Type
|
|
1146
|
-
:type type: typing.
|
|
1231
|
+
:type type: typing.Union[str, int, typing.Any]
|
|
1147
1232
|
:param name: Name
|
|
1148
1233
|
:type name: typing.Union[str, typing.Any]
|
|
1149
1234
|
"""
|
|
@@ -1151,61 +1236,67 @@ def new_node_tree(
|
|
|
1151
1236
|
...
|
|
1152
1237
|
|
|
1153
1238
|
def node_color_preset_add(
|
|
1154
|
-
override_context=None,
|
|
1155
|
-
execution_context=None,
|
|
1156
|
-
undo=None,
|
|
1157
|
-
*,
|
|
1239
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1240
|
+
execution_context: typing.Union[str, int] = None,
|
|
1241
|
+
undo: bool = None,
|
|
1158
1242
|
name: typing.Union[str, typing.Any] = "",
|
|
1159
|
-
remove_name: typing.
|
|
1160
|
-
remove_active: typing.
|
|
1243
|
+
remove_name: typing.Union[bool, typing.Any] = False,
|
|
1244
|
+
remove_active: typing.Union[bool, typing.Any] = False,
|
|
1161
1245
|
):
|
|
1162
1246
|
"""Add or remove a Node Color Preset
|
|
1163
1247
|
|
|
1164
|
-
:type override_context: typing.
|
|
1165
|
-
:type execution_context: typing.
|
|
1166
|
-
:type undo:
|
|
1248
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1249
|
+
:type execution_context: typing.Union[str, int]
|
|
1250
|
+
:type undo: bool
|
|
1167
1251
|
:param name: Name, Name of the preset, used to make the path name
|
|
1168
1252
|
:type name: typing.Union[str, typing.Any]
|
|
1169
1253
|
:param remove_name: remove_name
|
|
1170
|
-
:type remove_name: typing.
|
|
1254
|
+
:type remove_name: typing.Union[bool, typing.Any]
|
|
1171
1255
|
:param remove_active: remove_active
|
|
1172
|
-
:type remove_active: typing.
|
|
1256
|
+
:type remove_active: typing.Union[bool, typing.Any]
|
|
1173
1257
|
"""
|
|
1174
1258
|
|
|
1175
1259
|
...
|
|
1176
1260
|
|
|
1177
|
-
def node_copy_color(
|
|
1261
|
+
def node_copy_color(
|
|
1262
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1263
|
+
execution_context: typing.Union[str, int] = None,
|
|
1264
|
+
undo: bool = None,
|
|
1265
|
+
):
|
|
1178
1266
|
"""Copy color to all selected nodes
|
|
1179
1267
|
|
|
1180
|
-
:type override_context: typing.
|
|
1181
|
-
:type execution_context: typing.
|
|
1182
|
-
:type undo:
|
|
1268
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1269
|
+
:type execution_context: typing.Union[str, int]
|
|
1270
|
+
:type undo: bool
|
|
1183
1271
|
"""
|
|
1184
1272
|
|
|
1185
1273
|
...
|
|
1186
1274
|
|
|
1187
|
-
def options_toggle(
|
|
1275
|
+
def options_toggle(
|
|
1276
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1277
|
+
execution_context: typing.Union[str, int] = None,
|
|
1278
|
+
undo: bool = None,
|
|
1279
|
+
):
|
|
1188
1280
|
"""Toggle option buttons display for selected nodes
|
|
1189
1281
|
|
|
1190
|
-
:type override_context: typing.
|
|
1191
|
-
:type execution_context: typing.
|
|
1192
|
-
:type undo:
|
|
1282
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1283
|
+
:type execution_context: typing.Union[str, int]
|
|
1284
|
+
:type undo: bool
|
|
1193
1285
|
"""
|
|
1194
1286
|
|
|
1195
1287
|
...
|
|
1196
1288
|
|
|
1197
1289
|
def output_file_add_socket(
|
|
1198
|
-
override_context=None,
|
|
1199
|
-
execution_context=None,
|
|
1200
|
-
undo=None,
|
|
1201
|
-
*,
|
|
1290
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1291
|
+
execution_context: typing.Union[str, int] = None,
|
|
1292
|
+
undo: bool = None,
|
|
1202
1293
|
file_path: typing.Union[str, typing.Any] = "Image",
|
|
1203
1294
|
):
|
|
1204
1295
|
"""Add a new input to a file output node
|
|
1205
1296
|
|
|
1206
|
-
:type override_context: typing.
|
|
1207
|
-
:type execution_context: typing.
|
|
1208
|
-
:type undo:
|
|
1297
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1298
|
+
:type execution_context: typing.Union[str, int]
|
|
1299
|
+
:type undo: bool
|
|
1209
1300
|
:param file_path: File Path, Subpath of the output file
|
|
1210
1301
|
:type file_path: typing.Union[str, typing.Any]
|
|
1211
1302
|
"""
|
|
@@ -1213,174 +1304,200 @@ def output_file_add_socket(
|
|
|
1213
1304
|
...
|
|
1214
1305
|
|
|
1215
1306
|
def output_file_move_active_socket(
|
|
1216
|
-
override_context=None,
|
|
1217
|
-
execution_context=None,
|
|
1218
|
-
undo=None,
|
|
1219
|
-
|
|
1220
|
-
direction: typing.Optional[typing.Any] = "DOWN",
|
|
1307
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1308
|
+
execution_context: typing.Union[str, int] = None,
|
|
1309
|
+
undo: bool = None,
|
|
1310
|
+
direction: typing.Any = "DOWN",
|
|
1221
1311
|
):
|
|
1222
1312
|
"""Move the active input of a file output node up or down the list
|
|
1223
1313
|
|
|
1224
|
-
:type override_context: typing.
|
|
1225
|
-
:type execution_context: typing.
|
|
1226
|
-
:type undo:
|
|
1314
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1315
|
+
:type execution_context: typing.Union[str, int]
|
|
1316
|
+
:type undo: bool
|
|
1227
1317
|
:param direction: Direction
|
|
1228
|
-
:type direction: typing.
|
|
1318
|
+
:type direction: typing.Any
|
|
1229
1319
|
"""
|
|
1230
1320
|
|
|
1231
1321
|
...
|
|
1232
1322
|
|
|
1233
1323
|
def output_file_remove_active_socket(
|
|
1234
|
-
override_context
|
|
1324
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1325
|
+
execution_context: typing.Union[str, int] = None,
|
|
1326
|
+
undo: bool = None,
|
|
1235
1327
|
):
|
|
1236
1328
|
"""Remove the active input from a file output node
|
|
1237
1329
|
|
|
1238
|
-
:type override_context: typing.
|
|
1239
|
-
:type execution_context: typing.
|
|
1240
|
-
:type undo:
|
|
1330
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1331
|
+
:type execution_context: typing.Union[str, int]
|
|
1332
|
+
:type undo: bool
|
|
1241
1333
|
"""
|
|
1242
1334
|
|
|
1243
1335
|
...
|
|
1244
1336
|
|
|
1245
|
-
def parent_set(
|
|
1337
|
+
def parent_set(
|
|
1338
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1339
|
+
execution_context: typing.Union[str, int] = None,
|
|
1340
|
+
undo: bool = None,
|
|
1341
|
+
):
|
|
1246
1342
|
"""Attach selected nodes
|
|
1247
1343
|
|
|
1248
|
-
:type override_context: typing.
|
|
1249
|
-
:type execution_context: typing.
|
|
1250
|
-
:type undo:
|
|
1344
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1345
|
+
:type execution_context: typing.Union[str, int]
|
|
1346
|
+
:type undo: bool
|
|
1251
1347
|
"""
|
|
1252
1348
|
|
|
1253
1349
|
...
|
|
1254
1350
|
|
|
1255
|
-
def preview_toggle(
|
|
1351
|
+
def preview_toggle(
|
|
1352
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1353
|
+
execution_context: typing.Union[str, int] = None,
|
|
1354
|
+
undo: bool = None,
|
|
1355
|
+
):
|
|
1256
1356
|
"""Toggle preview display for selected nodes
|
|
1257
1357
|
|
|
1258
|
-
:type override_context: typing.
|
|
1259
|
-
:type execution_context: typing.
|
|
1260
|
-
:type undo:
|
|
1358
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1359
|
+
:type execution_context: typing.Union[str, int]
|
|
1360
|
+
:type undo: bool
|
|
1261
1361
|
"""
|
|
1262
1362
|
|
|
1263
1363
|
...
|
|
1264
1364
|
|
|
1265
|
-
def read_viewlayers(
|
|
1365
|
+
def read_viewlayers(
|
|
1366
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1367
|
+
execution_context: typing.Union[str, int] = None,
|
|
1368
|
+
undo: bool = None,
|
|
1369
|
+
):
|
|
1266
1370
|
"""Read all render layers of all used scenes
|
|
1267
1371
|
|
|
1268
|
-
:type override_context: typing.
|
|
1269
|
-
:type execution_context: typing.
|
|
1270
|
-
:type undo:
|
|
1372
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1373
|
+
:type execution_context: typing.Union[str, int]
|
|
1374
|
+
:type undo: bool
|
|
1271
1375
|
"""
|
|
1272
1376
|
|
|
1273
1377
|
...
|
|
1274
1378
|
|
|
1275
|
-
def render_changed(
|
|
1379
|
+
def render_changed(
|
|
1380
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1381
|
+
execution_context: typing.Union[str, int] = None,
|
|
1382
|
+
undo: bool = None,
|
|
1383
|
+
):
|
|
1276
1384
|
"""Render current scene, when input node's layer has been changed
|
|
1277
1385
|
|
|
1278
|
-
:type override_context: typing.
|
|
1279
|
-
:type execution_context: typing.
|
|
1280
|
-
:type undo:
|
|
1386
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1387
|
+
:type execution_context: typing.Union[str, int]
|
|
1388
|
+
:type undo: bool
|
|
1281
1389
|
"""
|
|
1282
1390
|
|
|
1283
1391
|
...
|
|
1284
1392
|
|
|
1285
|
-
def repeat_zone_item_add(
|
|
1393
|
+
def repeat_zone_item_add(
|
|
1394
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1395
|
+
execution_context: typing.Union[str, int] = None,
|
|
1396
|
+
undo: bool = None,
|
|
1397
|
+
):
|
|
1286
1398
|
"""Add a repeat item to the repeat zone
|
|
1287
1399
|
|
|
1288
|
-
:type override_context: typing.
|
|
1289
|
-
:type execution_context: typing.
|
|
1290
|
-
:type undo:
|
|
1400
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1401
|
+
:type execution_context: typing.Union[str, int]
|
|
1402
|
+
:type undo: bool
|
|
1291
1403
|
"""
|
|
1292
1404
|
|
|
1293
1405
|
...
|
|
1294
1406
|
|
|
1295
1407
|
def repeat_zone_item_move(
|
|
1296
|
-
override_context=None,
|
|
1297
|
-
execution_context=None,
|
|
1298
|
-
undo=None,
|
|
1299
|
-
|
|
1300
|
-
direction: typing.Optional[typing.Any] = "UP",
|
|
1408
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1409
|
+
execution_context: typing.Union[str, int] = None,
|
|
1410
|
+
undo: bool = None,
|
|
1411
|
+
direction: typing.Any = "UP",
|
|
1301
1412
|
):
|
|
1302
1413
|
"""Move a repeat item up or down in the list
|
|
1303
1414
|
|
|
1304
|
-
:type override_context: typing.
|
|
1305
|
-
:type execution_context: typing.
|
|
1306
|
-
:type undo:
|
|
1415
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1416
|
+
:type execution_context: typing.Union[str, int]
|
|
1417
|
+
:type undo: bool
|
|
1307
1418
|
:param direction: Direction
|
|
1308
|
-
:type direction: typing.
|
|
1419
|
+
:type direction: typing.Any
|
|
1309
1420
|
"""
|
|
1310
1421
|
|
|
1311
1422
|
...
|
|
1312
1423
|
|
|
1313
|
-
def repeat_zone_item_remove(
|
|
1424
|
+
def repeat_zone_item_remove(
|
|
1425
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1426
|
+
execution_context: typing.Union[str, int] = None,
|
|
1427
|
+
undo: bool = None,
|
|
1428
|
+
):
|
|
1314
1429
|
"""Remove a repeat item from the repeat zone
|
|
1315
1430
|
|
|
1316
|
-
:type override_context: typing.
|
|
1317
|
-
:type execution_context: typing.
|
|
1318
|
-
:type undo:
|
|
1431
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1432
|
+
:type execution_context: typing.Union[str, int]
|
|
1433
|
+
:type undo: bool
|
|
1319
1434
|
"""
|
|
1320
1435
|
|
|
1321
1436
|
...
|
|
1322
1437
|
|
|
1323
|
-
def resize(
|
|
1438
|
+
def resize(
|
|
1439
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1440
|
+
execution_context: typing.Union[str, int] = None,
|
|
1441
|
+
undo: bool = None,
|
|
1442
|
+
):
|
|
1324
1443
|
"""Resize a node
|
|
1325
1444
|
|
|
1326
|
-
:type override_context: typing.
|
|
1327
|
-
:type execution_context: typing.
|
|
1328
|
-
:type undo:
|
|
1445
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1446
|
+
:type execution_context: typing.Union[str, int]
|
|
1447
|
+
:type undo: bool
|
|
1329
1448
|
"""
|
|
1330
1449
|
|
|
1331
1450
|
...
|
|
1332
1451
|
|
|
1333
1452
|
def select(
|
|
1334
|
-
override_context=None,
|
|
1335
|
-
execution_context=None,
|
|
1336
|
-
undo=None,
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
clear_viewer: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1453
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1454
|
+
execution_context: typing.Union[str, int] = None,
|
|
1455
|
+
undo: bool = None,
|
|
1456
|
+
extend: typing.Union[bool, typing.Any] = False,
|
|
1457
|
+
deselect: typing.Union[bool, typing.Any] = False,
|
|
1458
|
+
toggle: typing.Union[bool, typing.Any] = False,
|
|
1459
|
+
deselect_all: typing.Union[bool, typing.Any] = False,
|
|
1460
|
+
select_passthrough: typing.Union[bool, typing.Any] = False,
|
|
1461
|
+
location: typing.Any = (0, 0),
|
|
1462
|
+
socket_select: typing.Union[bool, typing.Any] = False,
|
|
1463
|
+
clear_viewer: typing.Union[bool, typing.Any] = False,
|
|
1346
1464
|
):
|
|
1347
1465
|
"""Select the node under the cursor
|
|
1348
1466
|
|
|
1349
|
-
:type override_context: typing.
|
|
1350
|
-
:type execution_context: typing.
|
|
1351
|
-
:type undo:
|
|
1467
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1468
|
+
:type execution_context: typing.Union[str, int]
|
|
1469
|
+
:type undo: bool
|
|
1352
1470
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
1353
|
-
:type extend: typing.
|
|
1471
|
+
:type extend: typing.Union[bool, typing.Any]
|
|
1354
1472
|
:param deselect: Deselect, Remove from selection
|
|
1355
|
-
:type deselect: typing.
|
|
1473
|
+
:type deselect: typing.Union[bool, typing.Any]
|
|
1356
1474
|
:param toggle: Toggle Selection, Toggle the selection
|
|
1357
|
-
:type toggle: typing.
|
|
1475
|
+
:type toggle: typing.Union[bool, typing.Any]
|
|
1358
1476
|
:param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
|
|
1359
|
-
:type deselect_all: typing.
|
|
1477
|
+
:type deselect_all: typing.Union[bool, typing.Any]
|
|
1360
1478
|
:param select_passthrough: Only Select Unselected, Ignore the select action when the element is already selected
|
|
1361
|
-
:type select_passthrough: typing.
|
|
1479
|
+
:type select_passthrough: typing.Union[bool, typing.Any]
|
|
1362
1480
|
:param location: Location, Mouse location
|
|
1363
|
-
:type location: typing.
|
|
1481
|
+
:type location: typing.Any
|
|
1364
1482
|
:param socket_select: Socket Select
|
|
1365
|
-
:type socket_select: typing.
|
|
1483
|
+
:type socket_select: typing.Union[bool, typing.Any]
|
|
1366
1484
|
:param clear_viewer: Clear Viewer, Deactivate geometry nodes viewer when clicking in empty space
|
|
1367
|
-
:type clear_viewer: typing.
|
|
1485
|
+
:type clear_viewer: typing.Union[bool, typing.Any]
|
|
1368
1486
|
"""
|
|
1369
1487
|
|
|
1370
1488
|
...
|
|
1371
1489
|
|
|
1372
1490
|
def select_all(
|
|
1373
|
-
override_context=None,
|
|
1374
|
-
execution_context=None,
|
|
1375
|
-
undo=None,
|
|
1376
|
-
|
|
1377
|
-
action: typing.Optional[typing.Any] = "TOGGLE",
|
|
1491
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1492
|
+
execution_context: typing.Union[str, int] = None,
|
|
1493
|
+
undo: bool = None,
|
|
1494
|
+
action: typing.Any = "TOGGLE",
|
|
1378
1495
|
):
|
|
1379
1496
|
"""(De)select all nodes
|
|
1380
1497
|
|
|
1381
|
-
:type override_context: typing.
|
|
1382
|
-
:type execution_context: typing.
|
|
1383
|
-
:type undo:
|
|
1498
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1499
|
+
:type execution_context: typing.Union[str, int]
|
|
1500
|
+
:type undo: bool
|
|
1384
1501
|
:param action: Action, Selection action to execute
|
|
1385
1502
|
|
|
1386
1503
|
TOGGLE
|
|
@@ -1394,41 +1511,40 @@ def select_all(
|
|
|
1394
1511
|
|
|
1395
1512
|
INVERT
|
|
1396
1513
|
Invert -- Invert selection of all elements.
|
|
1397
|
-
:type action: typing.
|
|
1514
|
+
:type action: typing.Any
|
|
1398
1515
|
"""
|
|
1399
1516
|
|
|
1400
1517
|
...
|
|
1401
1518
|
|
|
1402
1519
|
def select_box(
|
|
1403
|
-
override_context=None,
|
|
1404
|
-
execution_context=None,
|
|
1405
|
-
undo=None,
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
mode: typing.Optional[typing.Any] = "SET",
|
|
1520
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1521
|
+
execution_context: typing.Union[str, int] = None,
|
|
1522
|
+
undo: bool = None,
|
|
1523
|
+
tweak: typing.Union[bool, typing.Any] = False,
|
|
1524
|
+
xmin: typing.Any = 0,
|
|
1525
|
+
xmax: typing.Any = 0,
|
|
1526
|
+
ymin: typing.Any = 0,
|
|
1527
|
+
ymax: typing.Any = 0,
|
|
1528
|
+
wait_for_input: typing.Union[bool, typing.Any] = True,
|
|
1529
|
+
mode: typing.Any = "SET",
|
|
1414
1530
|
):
|
|
1415
1531
|
"""Use box selection to select nodes
|
|
1416
1532
|
|
|
1417
|
-
:type override_context: typing.
|
|
1418
|
-
:type execution_context: typing.
|
|
1419
|
-
:type undo:
|
|
1533
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1534
|
+
:type execution_context: typing.Union[str, int]
|
|
1535
|
+
:type undo: bool
|
|
1420
1536
|
:param tweak: Tweak, Only activate when mouse is not over a node (useful for tweak gesture)
|
|
1421
|
-
:type tweak: typing.
|
|
1537
|
+
:type tweak: typing.Union[bool, typing.Any]
|
|
1422
1538
|
:param xmin: X Min
|
|
1423
|
-
:type xmin: typing.
|
|
1539
|
+
:type xmin: typing.Any
|
|
1424
1540
|
:param xmax: X Max
|
|
1425
|
-
:type xmax: typing.
|
|
1541
|
+
:type xmax: typing.Any
|
|
1426
1542
|
:param ymin: Y Min
|
|
1427
|
-
:type ymin: typing.
|
|
1543
|
+
:type ymin: typing.Any
|
|
1428
1544
|
:param ymax: Y Max
|
|
1429
|
-
:type ymax: typing.
|
|
1545
|
+
:type ymax: typing.Any
|
|
1430
1546
|
:param wait_for_input: Wait for Input
|
|
1431
|
-
:type wait_for_input: typing.
|
|
1547
|
+
:type wait_for_input: typing.Union[bool, typing.Any]
|
|
1432
1548
|
:param mode: Mode
|
|
1433
1549
|
|
|
1434
1550
|
SET
|
|
@@ -1439,35 +1555,34 @@ def select_box(
|
|
|
1439
1555
|
|
|
1440
1556
|
SUB
|
|
1441
1557
|
Subtract -- Subtract existing selection.
|
|
1442
|
-
:type mode: typing.
|
|
1558
|
+
:type mode: typing.Any
|
|
1443
1559
|
"""
|
|
1444
1560
|
|
|
1445
1561
|
...
|
|
1446
1562
|
|
|
1447
1563
|
def select_circle(
|
|
1448
|
-
override_context=None,
|
|
1449
|
-
execution_context=None,
|
|
1450
|
-
undo=None,
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
mode: typing.Optional[typing.Any] = "SET",
|
|
1564
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1565
|
+
execution_context: typing.Union[str, int] = None,
|
|
1566
|
+
undo: bool = None,
|
|
1567
|
+
x: typing.Any = 0,
|
|
1568
|
+
y: typing.Any = 0,
|
|
1569
|
+
radius: typing.Any = 25,
|
|
1570
|
+
wait_for_input: typing.Union[bool, typing.Any] = True,
|
|
1571
|
+
mode: typing.Any = "SET",
|
|
1457
1572
|
):
|
|
1458
1573
|
"""Use circle selection to select nodes
|
|
1459
1574
|
|
|
1460
|
-
:type override_context: typing.
|
|
1461
|
-
:type execution_context: typing.
|
|
1462
|
-
:type undo:
|
|
1575
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1576
|
+
:type execution_context: typing.Union[str, int]
|
|
1577
|
+
:type undo: bool
|
|
1463
1578
|
:param x: X
|
|
1464
|
-
:type x: typing.
|
|
1579
|
+
:type x: typing.Any
|
|
1465
1580
|
:param y: Y
|
|
1466
|
-
:type y: typing.
|
|
1581
|
+
:type y: typing.Any
|
|
1467
1582
|
:param radius: Radius
|
|
1468
|
-
:type radius: typing.
|
|
1583
|
+
:type radius: typing.Any
|
|
1469
1584
|
:param wait_for_input: Wait for Input
|
|
1470
|
-
:type wait_for_input: typing.
|
|
1585
|
+
:type wait_for_input: typing.Union[bool, typing.Any]
|
|
1471
1586
|
:param mode: Mode
|
|
1472
1587
|
|
|
1473
1588
|
SET
|
|
@@ -1478,52 +1593,48 @@ def select_circle(
|
|
|
1478
1593
|
|
|
1479
1594
|
SUB
|
|
1480
1595
|
Subtract -- Subtract existing selection.
|
|
1481
|
-
:type mode: typing.
|
|
1596
|
+
:type mode: typing.Any
|
|
1482
1597
|
"""
|
|
1483
1598
|
|
|
1484
1599
|
...
|
|
1485
1600
|
|
|
1486
1601
|
def select_grouped(
|
|
1487
|
-
override_context=None,
|
|
1488
|
-
execution_context=None,
|
|
1489
|
-
undo=None,
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
type: typing.Optional[typing.Any] = "TYPE",
|
|
1602
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1603
|
+
execution_context: typing.Union[str, int] = None,
|
|
1604
|
+
undo: bool = None,
|
|
1605
|
+
extend: typing.Union[bool, typing.Any] = False,
|
|
1606
|
+
type: typing.Any = "TYPE",
|
|
1493
1607
|
):
|
|
1494
1608
|
"""Select nodes with similar properties
|
|
1495
1609
|
|
|
1496
|
-
:type override_context: typing.
|
|
1497
|
-
:type execution_context: typing.
|
|
1498
|
-
:type undo:
|
|
1610
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1611
|
+
:type execution_context: typing.Union[str, int]
|
|
1612
|
+
:type undo: bool
|
|
1499
1613
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
1500
|
-
:type extend: typing.
|
|
1614
|
+
:type extend: typing.Union[bool, typing.Any]
|
|
1501
1615
|
:param type: Type
|
|
1502
|
-
:type type: typing.
|
|
1616
|
+
:type type: typing.Any
|
|
1503
1617
|
"""
|
|
1504
1618
|
|
|
1505
1619
|
...
|
|
1506
1620
|
|
|
1507
1621
|
def select_lasso(
|
|
1508
|
-
override_context=None,
|
|
1509
|
-
execution_context=None,
|
|
1510
|
-
undo=None,
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
bpy.types.bpy_prop_collection["bpy.types.OperatorMousePath"]
|
|
1515
|
-
] = None,
|
|
1516
|
-
mode: typing.Optional[typing.Any] = "SET",
|
|
1622
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1623
|
+
execution_context: typing.Union[str, int] = None,
|
|
1624
|
+
undo: bool = None,
|
|
1625
|
+
tweak: typing.Union[bool, typing.Any] = False,
|
|
1626
|
+
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] = None,
|
|
1627
|
+
mode: typing.Any = "SET",
|
|
1517
1628
|
):
|
|
1518
1629
|
"""Select nodes using lasso selection
|
|
1519
1630
|
|
|
1520
|
-
:type override_context: typing.
|
|
1521
|
-
:type execution_context: typing.
|
|
1522
|
-
:type undo:
|
|
1631
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1632
|
+
:type execution_context: typing.Union[str, int]
|
|
1633
|
+
:type undo: bool
|
|
1523
1634
|
:param tweak: Tweak, Only activate when mouse is not over a node (useful for tweak gesture)
|
|
1524
|
-
:type tweak: typing.
|
|
1635
|
+
:type tweak: typing.Union[bool, typing.Any]
|
|
1525
1636
|
:param path: Path
|
|
1526
|
-
:type path:
|
|
1637
|
+
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath]
|
|
1527
1638
|
:param mode: Mode
|
|
1528
1639
|
|
|
1529
1640
|
SET
|
|
@@ -1534,228 +1645,256 @@ def select_lasso(
|
|
|
1534
1645
|
|
|
1535
1646
|
SUB
|
|
1536
1647
|
Subtract -- Subtract existing selection.
|
|
1537
|
-
:type mode: typing.
|
|
1648
|
+
:type mode: typing.Any
|
|
1538
1649
|
"""
|
|
1539
1650
|
|
|
1540
1651
|
...
|
|
1541
1652
|
|
|
1542
1653
|
def select_link_viewer(
|
|
1543
|
-
override_context=None,
|
|
1544
|
-
execution_context=None,
|
|
1545
|
-
undo=None,
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
NODE_OT_link_viewer: typing.Optional["link_viewer"] = None,
|
|
1654
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1655
|
+
execution_context: typing.Union[str, int] = None,
|
|
1656
|
+
undo: bool = None,
|
|
1657
|
+
NODE_OT_select: select = None,
|
|
1658
|
+
NODE_OT_link_viewer: link_viewer = None,
|
|
1549
1659
|
):
|
|
1550
1660
|
"""Select node and link it to a viewer node
|
|
1551
1661
|
|
|
1552
|
-
:type override_context: typing.
|
|
1553
|
-
:type execution_context: typing.
|
|
1554
|
-
:type undo:
|
|
1662
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1663
|
+
:type execution_context: typing.Union[str, int]
|
|
1664
|
+
:type undo: bool
|
|
1555
1665
|
:param NODE_OT_select: Select, Select the node under the cursor
|
|
1556
|
-
:type NODE_OT_select:
|
|
1666
|
+
:type NODE_OT_select: select
|
|
1557
1667
|
:param NODE_OT_link_viewer: Link to Viewer Node, Link to viewer node
|
|
1558
|
-
:type NODE_OT_link_viewer:
|
|
1668
|
+
:type NODE_OT_link_viewer: link_viewer
|
|
1559
1669
|
"""
|
|
1560
1670
|
|
|
1561
1671
|
...
|
|
1562
1672
|
|
|
1563
|
-
def select_linked_from(
|
|
1673
|
+
def select_linked_from(
|
|
1674
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1675
|
+
execution_context: typing.Union[str, int] = None,
|
|
1676
|
+
undo: bool = None,
|
|
1677
|
+
):
|
|
1564
1678
|
"""Select nodes linked from the selected ones
|
|
1565
1679
|
|
|
1566
|
-
:type override_context: typing.
|
|
1567
|
-
:type execution_context: typing.
|
|
1568
|
-
:type undo:
|
|
1680
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1681
|
+
:type execution_context: typing.Union[str, int]
|
|
1682
|
+
:type undo: bool
|
|
1569
1683
|
"""
|
|
1570
1684
|
|
|
1571
1685
|
...
|
|
1572
1686
|
|
|
1573
|
-
def select_linked_to(
|
|
1687
|
+
def select_linked_to(
|
|
1688
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1689
|
+
execution_context: typing.Union[str, int] = None,
|
|
1690
|
+
undo: bool = None,
|
|
1691
|
+
):
|
|
1574
1692
|
"""Select nodes linked to the selected ones
|
|
1575
1693
|
|
|
1576
|
-
:type override_context: typing.
|
|
1577
|
-
:type execution_context: typing.
|
|
1578
|
-
:type undo:
|
|
1694
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1695
|
+
:type execution_context: typing.Union[str, int]
|
|
1696
|
+
:type undo: bool
|
|
1579
1697
|
"""
|
|
1580
1698
|
|
|
1581
1699
|
...
|
|
1582
1700
|
|
|
1583
1701
|
def select_same_type_step(
|
|
1584
|
-
override_context=None,
|
|
1585
|
-
execution_context=None,
|
|
1586
|
-
undo=None,
|
|
1587
|
-
|
|
1588
|
-
prev: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1702
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1703
|
+
execution_context: typing.Union[str, int] = None,
|
|
1704
|
+
undo: bool = None,
|
|
1705
|
+
prev: typing.Union[bool, typing.Any] = False,
|
|
1589
1706
|
):
|
|
1590
1707
|
"""Activate and view same node type, step by step
|
|
1591
1708
|
|
|
1592
|
-
:type override_context: typing.
|
|
1593
|
-
:type execution_context: typing.
|
|
1594
|
-
:type undo:
|
|
1709
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1710
|
+
:type execution_context: typing.Union[str, int]
|
|
1711
|
+
:type undo: bool
|
|
1595
1712
|
:param prev: Previous
|
|
1596
|
-
:type prev: typing.
|
|
1713
|
+
:type prev: typing.Union[bool, typing.Any]
|
|
1597
1714
|
"""
|
|
1598
1715
|
|
|
1599
1716
|
...
|
|
1600
1717
|
|
|
1601
|
-
def shader_script_update(
|
|
1718
|
+
def shader_script_update(
|
|
1719
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1720
|
+
execution_context: typing.Union[str, int] = None,
|
|
1721
|
+
undo: bool = None,
|
|
1722
|
+
):
|
|
1602
1723
|
"""Update shader script node with new sockets and options from the script
|
|
1603
1724
|
|
|
1604
|
-
:type override_context: typing.
|
|
1605
|
-
:type execution_context: typing.
|
|
1606
|
-
:type undo:
|
|
1725
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1726
|
+
:type execution_context: typing.Union[str, int]
|
|
1727
|
+
:type undo: bool
|
|
1607
1728
|
"""
|
|
1608
1729
|
|
|
1609
1730
|
...
|
|
1610
1731
|
|
|
1611
|
-
def simulation_zone_item_add(
|
|
1732
|
+
def simulation_zone_item_add(
|
|
1733
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1734
|
+
execution_context: typing.Union[str, int] = None,
|
|
1735
|
+
undo: bool = None,
|
|
1736
|
+
):
|
|
1612
1737
|
"""Add a state item to the simulation zone
|
|
1613
1738
|
|
|
1614
|
-
:type override_context: typing.
|
|
1615
|
-
:type execution_context: typing.
|
|
1616
|
-
:type undo:
|
|
1739
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1740
|
+
:type execution_context: typing.Union[str, int]
|
|
1741
|
+
:type undo: bool
|
|
1617
1742
|
"""
|
|
1618
1743
|
|
|
1619
1744
|
...
|
|
1620
1745
|
|
|
1621
1746
|
def simulation_zone_item_move(
|
|
1622
|
-
override_context=None,
|
|
1623
|
-
execution_context=None,
|
|
1624
|
-
undo=None,
|
|
1625
|
-
|
|
1626
|
-
direction: typing.Optional[typing.Any] = "UP",
|
|
1747
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1748
|
+
execution_context: typing.Union[str, int] = None,
|
|
1749
|
+
undo: bool = None,
|
|
1750
|
+
direction: typing.Any = "UP",
|
|
1627
1751
|
):
|
|
1628
1752
|
"""Move a simulation state item up or down in the list
|
|
1629
1753
|
|
|
1630
|
-
:type override_context: typing.
|
|
1631
|
-
:type execution_context: typing.
|
|
1632
|
-
:type undo:
|
|
1754
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1755
|
+
:type execution_context: typing.Union[str, int]
|
|
1756
|
+
:type undo: bool
|
|
1633
1757
|
:param direction: Direction
|
|
1634
|
-
:type direction: typing.
|
|
1758
|
+
:type direction: typing.Any
|
|
1635
1759
|
"""
|
|
1636
1760
|
|
|
1637
1761
|
...
|
|
1638
1762
|
|
|
1639
1763
|
def simulation_zone_item_remove(
|
|
1640
|
-
override_context
|
|
1764
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1765
|
+
execution_context: typing.Union[str, int] = None,
|
|
1766
|
+
undo: bool = None,
|
|
1641
1767
|
):
|
|
1642
1768
|
"""Remove a state item from the simulation zone
|
|
1643
1769
|
|
|
1644
|
-
:type override_context: typing.
|
|
1645
|
-
:type execution_context: typing.
|
|
1646
|
-
:type undo:
|
|
1770
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1771
|
+
:type execution_context: typing.Union[str, int]
|
|
1772
|
+
:type undo: bool
|
|
1647
1773
|
"""
|
|
1648
1774
|
|
|
1649
1775
|
...
|
|
1650
1776
|
|
|
1651
|
-
def switch_view_update(
|
|
1777
|
+
def switch_view_update(
|
|
1778
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1779
|
+
execution_context: typing.Union[str, int] = None,
|
|
1780
|
+
undo: bool = None,
|
|
1781
|
+
):
|
|
1652
1782
|
"""Update views of selected node
|
|
1653
1783
|
|
|
1654
|
-
:type override_context: typing.
|
|
1655
|
-
:type execution_context: typing.
|
|
1656
|
-
:type undo:
|
|
1784
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1785
|
+
:type execution_context: typing.Union[str, int]
|
|
1786
|
+
:type undo: bool
|
|
1657
1787
|
"""
|
|
1658
1788
|
|
|
1659
1789
|
...
|
|
1660
1790
|
|
|
1661
1791
|
def translate_attach(
|
|
1662
|
-
override_context=None,
|
|
1663
|
-
execution_context=None,
|
|
1664
|
-
undo=None,
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
NODE_OT_attach: typing.Optional["attach"] = None,
|
|
1792
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1793
|
+
execution_context: typing.Union[str, int] = None,
|
|
1794
|
+
undo: bool = None,
|
|
1795
|
+
TRANSFORM_OT_translate: bpy.ops.transform.translate = None,
|
|
1796
|
+
NODE_OT_attach: attach = None,
|
|
1668
1797
|
):
|
|
1669
1798
|
"""Move nodes and attach to frame
|
|
1670
1799
|
|
|
1671
|
-
:type override_context: typing.
|
|
1672
|
-
:type execution_context: typing.
|
|
1673
|
-
:type undo:
|
|
1800
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1801
|
+
:type execution_context: typing.Union[str, int]
|
|
1802
|
+
:type undo: bool
|
|
1674
1803
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
1675
|
-
:type TRANSFORM_OT_translate:
|
|
1804
|
+
:type TRANSFORM_OT_translate: bpy.ops.transform.translate
|
|
1676
1805
|
:param NODE_OT_attach: Attach Nodes, Attach active node to a frame
|
|
1677
|
-
:type NODE_OT_attach:
|
|
1806
|
+
:type NODE_OT_attach: attach
|
|
1678
1807
|
"""
|
|
1679
1808
|
|
|
1680
1809
|
...
|
|
1681
1810
|
|
|
1682
1811
|
def translate_attach_remove_on_cancel(
|
|
1683
|
-
override_context=None,
|
|
1684
|
-
execution_context=None,
|
|
1685
|
-
undo=None,
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
NODE_OT_attach: typing.Optional["attach"] = None,
|
|
1812
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1813
|
+
execution_context: typing.Union[str, int] = None,
|
|
1814
|
+
undo: bool = None,
|
|
1815
|
+
TRANSFORM_OT_translate: bpy.ops.transform.translate = None,
|
|
1816
|
+
NODE_OT_attach: attach = None,
|
|
1689
1817
|
):
|
|
1690
1818
|
"""Move nodes and attach to frame
|
|
1691
1819
|
|
|
1692
|
-
:type override_context: typing.
|
|
1693
|
-
:type execution_context: typing.
|
|
1694
|
-
:type undo:
|
|
1820
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1821
|
+
:type execution_context: typing.Union[str, int]
|
|
1822
|
+
:type undo: bool
|
|
1695
1823
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
1696
|
-
:type TRANSFORM_OT_translate:
|
|
1824
|
+
:type TRANSFORM_OT_translate: bpy.ops.transform.translate
|
|
1697
1825
|
:param NODE_OT_attach: Attach Nodes, Attach active node to a frame
|
|
1698
|
-
:type NODE_OT_attach:
|
|
1826
|
+
:type NODE_OT_attach: attach
|
|
1699
1827
|
"""
|
|
1700
1828
|
|
|
1701
1829
|
...
|
|
1702
1830
|
|
|
1703
|
-
def tree_path_parent(
|
|
1831
|
+
def tree_path_parent(
|
|
1832
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1833
|
+
execution_context: typing.Union[str, int] = None,
|
|
1834
|
+
undo: bool = None,
|
|
1835
|
+
):
|
|
1704
1836
|
"""Go to parent node tree
|
|
1705
1837
|
|
|
1706
|
-
:type override_context: typing.
|
|
1707
|
-
:type execution_context: typing.
|
|
1708
|
-
:type undo:
|
|
1838
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1839
|
+
:type execution_context: typing.Union[str, int]
|
|
1840
|
+
:type undo: bool
|
|
1709
1841
|
"""
|
|
1710
1842
|
|
|
1711
1843
|
...
|
|
1712
1844
|
|
|
1713
|
-
def view_all(
|
|
1845
|
+
def view_all(
|
|
1846
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1847
|
+
execution_context: typing.Union[str, int] = None,
|
|
1848
|
+
undo: bool = None,
|
|
1849
|
+
):
|
|
1714
1850
|
"""Resize view so you can see all nodes
|
|
1715
1851
|
|
|
1716
|
-
:type override_context: typing.
|
|
1717
|
-
:type execution_context: typing.
|
|
1718
|
-
:type undo:
|
|
1852
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1853
|
+
:type execution_context: typing.Union[str, int]
|
|
1854
|
+
:type undo: bool
|
|
1719
1855
|
"""
|
|
1720
1856
|
|
|
1721
1857
|
...
|
|
1722
1858
|
|
|
1723
|
-
def view_selected(
|
|
1859
|
+
def view_selected(
|
|
1860
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1861
|
+
execution_context: typing.Union[str, int] = None,
|
|
1862
|
+
undo: bool = None,
|
|
1863
|
+
):
|
|
1724
1864
|
"""Resize view so you can see selected nodes
|
|
1725
1865
|
|
|
1726
|
-
:type override_context: typing.
|
|
1727
|
-
:type execution_context: typing.
|
|
1728
|
-
:type undo:
|
|
1866
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1867
|
+
:type execution_context: typing.Union[str, int]
|
|
1868
|
+
:type undo: bool
|
|
1729
1869
|
"""
|
|
1730
1870
|
|
|
1731
1871
|
...
|
|
1732
1872
|
|
|
1733
1873
|
def viewer_border(
|
|
1734
|
-
override_context=None,
|
|
1735
|
-
execution_context=None,
|
|
1736
|
-
undo=None,
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
1874
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1875
|
+
execution_context: typing.Union[str, int] = None,
|
|
1876
|
+
undo: bool = None,
|
|
1877
|
+
xmin: typing.Any = 0,
|
|
1878
|
+
xmax: typing.Any = 0,
|
|
1879
|
+
ymin: typing.Any = 0,
|
|
1880
|
+
ymax: typing.Any = 0,
|
|
1881
|
+
wait_for_input: typing.Union[bool, typing.Any] = True,
|
|
1743
1882
|
):
|
|
1744
1883
|
"""Set the boundaries for viewer operations
|
|
1745
1884
|
|
|
1746
|
-
:type override_context: typing.
|
|
1747
|
-
:type execution_context: typing.
|
|
1748
|
-
:type undo:
|
|
1885
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1886
|
+
:type execution_context: typing.Union[str, int]
|
|
1887
|
+
:type undo: bool
|
|
1749
1888
|
:param xmin: X Min
|
|
1750
|
-
:type xmin: typing.
|
|
1889
|
+
:type xmin: typing.Any
|
|
1751
1890
|
:param xmax: X Max
|
|
1752
|
-
:type xmax: typing.
|
|
1891
|
+
:type xmax: typing.Any
|
|
1753
1892
|
:param ymin: Y Min
|
|
1754
|
-
:type ymin: typing.
|
|
1893
|
+
:type ymin: typing.Any
|
|
1755
1894
|
:param ymax: Y Max
|
|
1756
|
-
:type ymax: typing.
|
|
1895
|
+
:type ymax: typing.Any
|
|
1757
1896
|
:param wait_for_input: Wait for Input
|
|
1758
|
-
:type wait_for_input: typing.
|
|
1897
|
+
:type wait_for_input: typing.Union[bool, typing.Any]
|
|
1759
1898
|
"""
|
|
1760
1899
|
|
|
1761
1900
|
...
|