fake-bpy-module 20240524__py3-none-any.whl → 20240529__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.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_console_utils/autocomplete/complete_calltip/__init__.pyi +3 -3
- bl_operators/__init__.pyi +3 -0
- bl_operators/connect_to_output/__init__.pyi +325 -0
- bl_operators/image_as_planes/__init__.pyi +463 -0
- bl_operators/node_editor/__init__.pyi +6 -0
- bl_operators/node_editor/node_functions/__init__.pyi +23 -0
- bl_operators/presets/__init__.pyi +12 -12
- bl_operators/userpref/__init__.pyi +0 -214
- bl_operators/wm/__init__.pyi +24 -24
- bl_ui/__init__.pyi +12 -12
- bl_ui/anim/__init__.pyi +6 -6
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/node_add_menu/__init__.pyi +6 -6
- bl_ui/node_add_menu_compositor/__init__.pyi +108 -108
- bl_ui/node_add_menu_geometry/__init__.pyi +288 -288
- bl_ui/node_add_menu_shader/__init__.pyi +60 -60
- bl_ui/node_add_menu_texture/__init__.pyi +54 -54
- bl_ui/properties_collection/__init__.pyi +6 -6
- bl_ui/properties_data_armature/__init__.pyi +12 -12
- bl_ui/properties_data_camera/__init__.pyi +12 -12
- bl_ui/properties_data_curves/__init__.pyi +6 -6
- bl_ui/properties_data_gpencil/__init__.pyi +12 -12
- bl_ui/properties_data_grease_pencil/__init__.pyi +18 -18
- bl_ui/properties_data_mesh/__init__.pyi +24 -24
- bl_ui/properties_data_modifier/__init__.pyi +42 -42
- bl_ui/properties_data_pointcloud/__init__.pyi +6 -6
- bl_ui/properties_freestyle/__init__.pyi +6 -6
- bl_ui/properties_grease_pencil_common/__init__.pyi +72 -72
- bl_ui/properties_mask_common/__init__.pyi +36 -36
- bl_ui/properties_material/__init__.pyi +6 -6
- bl_ui/properties_material_gpencil/__init__.pyi +12 -12
- bl_ui/properties_object/__init__.pyi +6 -6
- bl_ui/properties_output/__init__.pyi +18 -18
- bl_ui/properties_paint_common/__init__.pyi +6 -6
- bl_ui/properties_particle/__init__.pyi +12 -12
- bl_ui/properties_physics_cloth/__init__.pyi +6 -6
- bl_ui/properties_physics_fluid/__init__.pyi +6 -6
- bl_ui/properties_render/__init__.pyi +7 -7
- bl_ui/properties_texture/__init__.pyi +6 -6
- bl_ui/properties_view_layer/__init__.pyi +6 -6
- bl_ui/space_clip/__init__.pyi +186 -186
- bl_ui/space_console/__init__.pyi +30 -30
- bl_ui/space_dopesheet/__init__.pyi +84 -84
- bl_ui/space_filebrowser/__init__.pyi +78 -78
- bl_ui/space_graph/__init__.pyi +96 -96
- bl_ui/space_image/__init__.pyi +138 -138
- bl_ui/space_info/__init__.pyi +30 -30
- bl_ui/space_nla/__init__.pyi +78 -78
- bl_ui/space_node/__init__.pyi +72 -72
- bl_ui/space_outliner/__init__.pyi +72 -72
- bl_ui/space_sequencer/__init__.pyi +204 -204
- bl_ui/space_text/__init__.pyi +72 -72
- bl_ui/space_time/__init__.pyi +24 -24
- bl_ui/space_toolsystem_toolbar/__init__.pyi +4 -0
- bl_ui/space_topbar/__init__.pyi +114 -114
- bl_ui/space_userpref/__init__.pyi +36 -36
- bl_ui/space_view3d/__init__.pyi +1446 -1176
- bl_ui/space_view3d_toolbar/__init__.pyi +30 -30
- bl_ui/utils/__init__.pyi +6 -6
- bmesh/geometry/__init__.pyi +2 -2
- bmesh/ops/__init__.pyi +55 -54
- bmesh/types/__init__.pyi +43 -33
- bmesh/utils/__init__.pyi +2 -2
- bpy/app/__init__.pyi +5 -1
- bpy/app/handlers/__init__.pyi +37 -37
- bpy/app/icons/__init__.pyi +4 -4
- bpy/app/timers/__init__.pyi +6 -6
- bpy/ops/action/__init__.pyi +21 -0
- bpy/ops/anim/__init__.pyi +34 -0
- bpy/ops/armature/__init__.pyi +31 -0
- bpy/ops/asset/__init__.pyi +5 -0
- bpy/ops/bl_pkg/__init__.pyi +32 -21
- bpy/ops/boid/__init__.pyi +1 -0
- bpy/ops/brush/__init__.pyi +6 -0
- bpy/ops/buttons/__init__.pyi +2 -0
- bpy/ops/cachefile/__init__.pyi +3 -0
- bpy/ops/camera/__init__.pyi +2 -0
- bpy/ops/clip/__init__.pyi +49 -0
- bpy/ops/cloth/__init__.pyi +1 -0
- bpy/ops/collection/__init__.pyi +7 -0
- bpy/ops/console/__init__.pyi +11 -0
- bpy/ops/constraint/__init__.pyi +15 -0
- bpy/ops/curve/__init__.pyi +28 -0
- bpy/ops/curves/__init__.pyi +14 -0
- bpy/ops/cycles/__init__.pyi +2 -0
- bpy/ops/dpaint/__init__.pyi +2 -0
- bpy/ops/ed/__init__.pyi +3 -0
- bpy/ops/export_anim/__init__.pyi +1 -0
- bpy/ops/export_scene/__init__.pyi +20 -3
- bpy/ops/file/__init__.pyi +14 -0
- bpy/ops/fluid/__init__.pyi +1 -0
- bpy/ops/font/__init__.pyi +13 -0
- bpy/ops/geometry/__init__.pyi +7 -0
- bpy/ops/gizmogroup/__init__.pyi +1 -0
- bpy/ops/gpencil/__init__.pyi +106 -0
- bpy/ops/graph/__init__.pyi +47 -0
- bpy/ops/grease_pencil/__init__.pyi +52 -0
- bpy/ops/image/__init__.pyi +308 -0
- bpy/ops/import_anim/__init__.pyi +1 -0
- bpy/ops/import_curve/__init__.pyi +1 -0
- bpy/ops/import_scene/__init__.pyi +2 -0
- bpy/ops/info/__init__.pyi +3 -0
- bpy/ops/lattice/__init__.pyi +5 -0
- bpy/ops/marker/__init__.pyi +9 -0
- bpy/ops/mask/__init__.pyi +22 -0
- bpy/ops/mball/__init__.pyi +7 -0
- bpy/ops/mesh/__init__.pyi +134 -0
- bpy/ops/nla/__init__.pyi +20 -0
- bpy/ops/node/__init__.pyi +65 -0
- bpy/ops/object/__init__.pyi +174 -0
- bpy/ops/outliner/__init__.pyi +25 -0
- bpy/ops/paint/__init__.pyi +105 -0
- bpy/ops/paintcurve/__init__.pyi +4 -0
- bpy/ops/palette/__init__.pyi +4 -0
- bpy/ops/particle/__init__.pyi +17 -0
- bpy/ops/pose/__init__.pyi +24 -0
- bpy/ops/poselib/__init__.pyi +4 -0
- bpy/ops/preferences/__init__.pyi +28 -16
- bpy/ops/ptcache/__init__.pyi +2 -0
- bpy/ops/render/__init__.pyi +9 -0
- bpy/ops/rigidbody/__init__.pyi +7 -0
- bpy/ops/scene/__init__.pyi +16 -0
- bpy/ops/screen/__init__.pyi +21 -0
- bpy/ops/script/__init__.pyi +2 -0
- bpy/ops/sculpt/__init__.pyi +151 -0
- bpy/ops/sculpt_curves/__init__.pyi +3 -0
- bpy/ops/sequencer/__init__.pyi +57 -0
- bpy/ops/sound/__init__.pyi +4 -0
- bpy/ops/spreadsheet/__init__.pyi +2 -0
- bpy/ops/surface/__init__.pyi +6 -0
- bpy/ops/text/__init__.pyi +18 -0
- bpy/ops/text_editor/__init__.pyi +1 -0
- bpy/ops/texture/__init__.pyi +1 -0
- bpy/ops/transform/__init__.pyi +25 -0
- bpy/ops/ui/__init__.pyi +13 -0
- bpy/ops/uilist/__init__.pyi +3 -0
- bpy/ops/uv/__init__.pyi +40 -0
- bpy/ops/view2d/__init__.pyi +11 -0
- bpy/ops/view3d/__init__.pyi +30 -0
- bpy/ops/wm/__init__.pyi +114 -0
- bpy/ops/workspace/__init__.pyi +1 -0
- bpy/path/__init__.pyi +6 -6
- bpy/props/__init__.pyi +27 -15
- bpy/types/__init__.pyi +662 -388
- bpy/utils/__init__.pyi +12 -10
- bpy_extras/anim_utils/__init__.pyi +7 -7
- bpy_extras/io_utils/__init__.pyi +4 -4
- bpy_extras/mesh_utils/__init__.pyi +4 -4
- bpy_extras/object_utils/__init__.pyi +8 -8
- bpy_extras/view3d_utils/__init__.pyi +2 -0
- bpy_types/__init__.pyi +12 -12
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/RECORD +167 -163
- freestyle/shaders/__init__.pyi +2 -2
- freestyle/types/__init__.pyi +64 -56
- gpu/matrix/__init__.pyi +6 -6
- gpu/types/__init__.pyi +14 -10
- gpu_extras/batch/__init__.pyi +1 -1
- gpu_extras/presets/__init__.pyi +1 -1
- imbuf/__init__.pyi +2 -2
- mathutils/__init__.pyi +176 -137
- mathutils/bvhtree/__init__.pyi +4 -4
- mathutils/geometry/__init__.pyi +139 -139
- mathutils/kdtree/__init__.pyi +14 -10
- mathutils/noise/__init__.pyi +26 -26
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/top_level.txt +0 -0
bpy/ops/nla/__init__.pyi
CHANGED
|
@@ -10,6 +10,7 @@ def action_pushdown(
|
|
|
10
10
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
11
11
|
execution_context: str | int | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
|
+
*,
|
|
13
14
|
track_index: typing.Any | None = -1,
|
|
14
15
|
):
|
|
15
16
|
"""Push action down onto the top of the NLA stack as a new strip
|
|
@@ -27,6 +28,7 @@ def action_sync_length(
|
|
|
27
28
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
28
29
|
execution_context: str | int | None = None,
|
|
29
30
|
undo: bool | None = None,
|
|
31
|
+
*,
|
|
30
32
|
active: bool | typing.Any | None = True,
|
|
31
33
|
):
|
|
32
34
|
"""Synchronize the length of the referenced Action with the length used in the strip
|
|
@@ -44,6 +46,7 @@ def action_unlink(
|
|
|
44
46
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
45
47
|
execution_context: str | int | None = None,
|
|
46
48
|
undo: bool | None = None,
|
|
49
|
+
*,
|
|
47
50
|
force_delete: bool | typing.Any | None = False,
|
|
48
51
|
):
|
|
49
52
|
"""Unlink this action from the active action slot (and/or exit Tweak Mode)
|
|
@@ -61,6 +64,7 @@ def actionclip_add(
|
|
|
61
64
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
62
65
|
execution_context: str | int | None = None,
|
|
63
66
|
undo: bool | None = None,
|
|
67
|
+
*,
|
|
64
68
|
action: str | None = "",
|
|
65
69
|
):
|
|
66
70
|
"""Add an Action-Clip strip (i.e. an NLA Strip referencing an Action) to the active track
|
|
@@ -92,6 +96,7 @@ def bake(
|
|
|
92
96
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
93
97
|
execution_context: str | int | None = None,
|
|
94
98
|
undo: bool | None = None,
|
|
99
|
+
*,
|
|
95
100
|
frame_start: typing.Any | None = 1,
|
|
96
101
|
frame_end: typing.Any | None = 250,
|
|
97
102
|
step: typing.Any | None = 1,
|
|
@@ -166,6 +171,7 @@ def channels_click(
|
|
|
166
171
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
167
172
|
execution_context: str | int | None = None,
|
|
168
173
|
undo: bool | None = None,
|
|
174
|
+
*,
|
|
169
175
|
extend: bool | typing.Any | None = False,
|
|
170
176
|
):
|
|
171
177
|
"""Handle clicks to select NLA tracks
|
|
@@ -197,6 +203,7 @@ def click_select(
|
|
|
197
203
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
198
204
|
execution_context: str | int | None = None,
|
|
199
205
|
undo: bool | None = None,
|
|
206
|
+
*,
|
|
200
207
|
wait_to_deselect_others: bool | typing.Any | None = False,
|
|
201
208
|
mouse_x: typing.Any | None = 0,
|
|
202
209
|
mouse_y: typing.Any | None = 0,
|
|
@@ -240,6 +247,7 @@ def duplicate(
|
|
|
240
247
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
241
248
|
execution_context: str | int | None = None,
|
|
242
249
|
undo: bool | None = None,
|
|
250
|
+
*,
|
|
243
251
|
linked: bool | typing.Any | None = False,
|
|
244
252
|
):
|
|
245
253
|
"""Duplicate selected NLA-Strips, adding the new strips to new track(s)
|
|
@@ -257,6 +265,7 @@ def duplicate_linked_move(
|
|
|
257
265
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
258
266
|
execution_context: str | int | None = None,
|
|
259
267
|
undo: bool | None = None,
|
|
268
|
+
*,
|
|
260
269
|
NLA_OT_duplicate: duplicate | None = None,
|
|
261
270
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
262
271
|
):
|
|
@@ -277,6 +286,7 @@ def duplicate_move(
|
|
|
277
286
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
278
287
|
execution_context: str | int | None = None,
|
|
279
288
|
undo: bool | None = None,
|
|
289
|
+
*,
|
|
280
290
|
NLA_OT_duplicate: duplicate | None = None,
|
|
281
291
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
282
292
|
):
|
|
@@ -297,6 +307,7 @@ def fmodifier_add(
|
|
|
297
307
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
298
308
|
execution_context: str | int | None = None,
|
|
299
309
|
undo: bool | None = None,
|
|
310
|
+
*,
|
|
300
311
|
type: str | None = "NULL",
|
|
301
312
|
only_active: bool | typing.Any | None = True,
|
|
302
313
|
):
|
|
@@ -331,6 +342,7 @@ def fmodifier_paste(
|
|
|
331
342
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
332
343
|
execution_context: str | int | None = None,
|
|
333
344
|
undo: bool | None = None,
|
|
345
|
+
*,
|
|
334
346
|
only_active: bool | typing.Any | None = True,
|
|
335
347
|
replace: bool | typing.Any | None = False,
|
|
336
348
|
):
|
|
@@ -351,6 +363,7 @@ def make_single_user(
|
|
|
351
363
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
352
364
|
execution_context: str | int | None = None,
|
|
353
365
|
undo: bool | None = None,
|
|
366
|
+
*,
|
|
354
367
|
confirm: bool | typing.Any | None = True,
|
|
355
368
|
):
|
|
356
369
|
"""Make linked action local to each strip
|
|
@@ -452,6 +465,7 @@ def select_all(
|
|
|
452
465
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
453
466
|
execution_context: str | int | None = None,
|
|
454
467
|
undo: bool | None = None,
|
|
468
|
+
*,
|
|
455
469
|
action: str | None = "TOGGLE",
|
|
456
470
|
):
|
|
457
471
|
"""Select or deselect all NLA-Strips
|
|
@@ -481,6 +495,7 @@ def select_box(
|
|
|
481
495
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
482
496
|
execution_context: str | int | None = None,
|
|
483
497
|
undo: bool | None = None,
|
|
498
|
+
*,
|
|
484
499
|
axis_range: bool | typing.Any | None = False,
|
|
485
500
|
tweak: bool | typing.Any | None = False,
|
|
486
501
|
xmin: typing.Any | None = 0,
|
|
@@ -528,6 +543,7 @@ def select_leftright(
|
|
|
528
543
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
529
544
|
execution_context: str | int | None = None,
|
|
530
545
|
undo: bool | None = None,
|
|
546
|
+
*,
|
|
531
547
|
mode: str | None = "CHECK",
|
|
532
548
|
extend: bool | typing.Any | None = False,
|
|
533
549
|
):
|
|
@@ -562,6 +578,7 @@ def snap(
|
|
|
562
578
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
563
579
|
execution_context: str | int | None = None,
|
|
564
580
|
undo: bool | None = None,
|
|
581
|
+
*,
|
|
565
582
|
type: str | None = "CFRA",
|
|
566
583
|
):
|
|
567
584
|
"""Move start of strips to specified time
|
|
@@ -621,6 +638,7 @@ def tracks_add(
|
|
|
621
638
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
622
639
|
execution_context: str | int | None = None,
|
|
623
640
|
undo: bool | None = None,
|
|
641
|
+
*,
|
|
624
642
|
above_selected: bool | typing.Any | None = False,
|
|
625
643
|
):
|
|
626
644
|
"""Add NLA-Tracks above/after the selected tracks
|
|
@@ -666,6 +684,7 @@ def tweakmode_enter(
|
|
|
666
684
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
667
685
|
execution_context: str | int | None = None,
|
|
668
686
|
undo: bool | None = None,
|
|
687
|
+
*,
|
|
669
688
|
isolate_action: bool | typing.Any | None = False,
|
|
670
689
|
use_upper_stack_evaluation: bool | typing.Any | None = False,
|
|
671
690
|
):
|
|
@@ -686,6 +705,7 @@ def tweakmode_exit(
|
|
|
686
705
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
687
706
|
execution_context: str | int | None = None,
|
|
688
707
|
undo: bool | None = None,
|
|
708
|
+
*,
|
|
689
709
|
isolate_action: bool | typing.Any | None = False,
|
|
690
710
|
):
|
|
691
711
|
"""Exit tweaking mode for the action referenced by the active strip
|
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -11,6 +11,7 @@ def add_collection(
|
|
|
11
11
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
12
12
|
execution_context: str | int | None = None,
|
|
13
13
|
undo: bool | None = None,
|
|
14
|
+
*,
|
|
14
15
|
name: str | typing.Any = "",
|
|
15
16
|
session_uid: typing.Any | None = 0,
|
|
16
17
|
):
|
|
@@ -31,6 +32,7 @@ def add_file(
|
|
|
31
32
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
32
33
|
execution_context: str | int | None = None,
|
|
33
34
|
undo: bool | None = None,
|
|
35
|
+
*,
|
|
34
36
|
filepath: str | typing.Any = "",
|
|
35
37
|
directory: str | typing.Any = "",
|
|
36
38
|
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
@@ -163,6 +165,7 @@ def add_group(
|
|
|
163
165
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
164
166
|
execution_context: str | int | None = None,
|
|
165
167
|
undo: bool | None = None,
|
|
168
|
+
*,
|
|
166
169
|
name: str | typing.Any = "",
|
|
167
170
|
session_uid: typing.Any | None = 0,
|
|
168
171
|
show_datablock_in_node: bool | typing.Any | None = True,
|
|
@@ -186,6 +189,7 @@ def add_group_asset(
|
|
|
186
189
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
187
190
|
execution_context: str | int | None = None,
|
|
188
191
|
undo: bool | None = None,
|
|
192
|
+
*,
|
|
189
193
|
asset_library_type: str | None = "LOCAL",
|
|
190
194
|
asset_library_identifier: str | typing.Any = "",
|
|
191
195
|
relative_asset_identifier: str | typing.Any = "",
|
|
@@ -209,6 +213,7 @@ def add_mask(
|
|
|
209
213
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
210
214
|
execution_context: str | int | None = None,
|
|
211
215
|
undo: bool | None = None,
|
|
216
|
+
*,
|
|
212
217
|
name: str | typing.Any = "",
|
|
213
218
|
session_uid: typing.Any | None = 0,
|
|
214
219
|
):
|
|
@@ -229,6 +234,7 @@ def add_material(
|
|
|
229
234
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
230
235
|
execution_context: str | int | None = None,
|
|
231
236
|
undo: bool | None = None,
|
|
237
|
+
*,
|
|
232
238
|
name: str | typing.Any = "",
|
|
233
239
|
session_uid: typing.Any | None = 0,
|
|
234
240
|
):
|
|
@@ -249,6 +255,7 @@ def add_node(
|
|
|
249
255
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
250
256
|
execution_context: str | int | None = None,
|
|
251
257
|
undo: bool | None = None,
|
|
258
|
+
*,
|
|
252
259
|
use_transform: bool | typing.Any | None = False,
|
|
253
260
|
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
254
261
|
| None = None,
|
|
@@ -273,6 +280,7 @@ def add_object(
|
|
|
273
280
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
274
281
|
execution_context: str | int | None = None,
|
|
275
282
|
undo: bool | None = None,
|
|
283
|
+
*,
|
|
276
284
|
name: str | typing.Any = "",
|
|
277
285
|
session_uid: typing.Any | None = 0,
|
|
278
286
|
):
|
|
@@ -293,6 +301,7 @@ def add_repeat_zone(
|
|
|
293
301
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
294
302
|
execution_context: str | int | None = None,
|
|
295
303
|
undo: bool | None = None,
|
|
304
|
+
*,
|
|
296
305
|
use_transform: bool | typing.Any | None = False,
|
|
297
306
|
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
298
307
|
| None = None,
|
|
@@ -317,6 +326,7 @@ def add_reroute(
|
|
|
317
326
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
318
327
|
execution_context: str | int | None = None,
|
|
319
328
|
undo: bool | None = None,
|
|
329
|
+
*,
|
|
320
330
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
321
331
|
cursor: typing.Any | None = 8,
|
|
322
332
|
):
|
|
@@ -337,6 +347,7 @@ def add_simulation_zone(
|
|
|
337
347
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
338
348
|
execution_context: str | int | None = None,
|
|
339
349
|
undo: bool | None = None,
|
|
350
|
+
*,
|
|
340
351
|
use_transform: bool | typing.Any | None = False,
|
|
341
352
|
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
342
353
|
| None = None,
|
|
@@ -417,6 +428,7 @@ def backimage_zoom(
|
|
|
417
428
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
418
429
|
execution_context: str | int | None = None,
|
|
419
430
|
undo: bool | None = None,
|
|
431
|
+
*,
|
|
420
432
|
factor: typing.Any | None = 1.2,
|
|
421
433
|
):
|
|
422
434
|
"""Zoom in/out the background image
|
|
@@ -448,6 +460,7 @@ def bake_node_item_move(
|
|
|
448
460
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
449
461
|
execution_context: str | int | None = None,
|
|
450
462
|
undo: bool | None = None,
|
|
463
|
+
*,
|
|
451
464
|
direction: str | None = "UP",
|
|
452
465
|
):
|
|
453
466
|
"""Move active bake item
|
|
@@ -507,6 +520,7 @@ def clipboard_paste(
|
|
|
507
520
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
508
521
|
execution_context: str | int | None = None,
|
|
509
522
|
undo: bool | None = None,
|
|
523
|
+
*,
|
|
510
524
|
offset: typing.Any | None = (0.0, 0.0),
|
|
511
525
|
):
|
|
512
526
|
"""Paste nodes from the internal clipboard to the active node tree
|
|
@@ -534,6 +548,24 @@ def collapse_hide_unused_toggle(
|
|
|
534
548
|
|
|
535
549
|
...
|
|
536
550
|
|
|
551
|
+
def connect_to_output(
|
|
552
|
+
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
553
|
+
execution_context: str | int | None = None,
|
|
554
|
+
undo: bool | None = None,
|
|
555
|
+
*,
|
|
556
|
+
run_in_geometry_nodes: bool | typing.Any | None = True,
|
|
557
|
+
):
|
|
558
|
+
"""Connect active node to the active output node of the node tree
|
|
559
|
+
|
|
560
|
+
:type override_context: dict[str, typing.Any] | bpy.types.Context | None
|
|
561
|
+
:type execution_context: str | int | None
|
|
562
|
+
:type undo: bool | None
|
|
563
|
+
:param run_in_geometry_nodes: Run in Geometry Nodes Editor
|
|
564
|
+
:type run_in_geometry_nodes: bool | typing.Any | None
|
|
565
|
+
"""
|
|
566
|
+
|
|
567
|
+
...
|
|
568
|
+
|
|
537
569
|
def cryptomatte_layer_add(
|
|
538
570
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
539
571
|
execution_context: str | int | None = None,
|
|
@@ -622,6 +654,7 @@ def detach_translate_attach(
|
|
|
622
654
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
623
655
|
execution_context: str | int | None = None,
|
|
624
656
|
undo: bool | None = None,
|
|
657
|
+
*,
|
|
625
658
|
NODE_OT_detach: detach | None = None,
|
|
626
659
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
627
660
|
NODE_OT_attach: attach | None = None,
|
|
@@ -645,6 +678,7 @@ def duplicate(
|
|
|
645
678
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
646
679
|
execution_context: str | int | None = None,
|
|
647
680
|
undo: bool | None = None,
|
|
681
|
+
*,
|
|
648
682
|
keep_inputs: bool | typing.Any | None = False,
|
|
649
683
|
linked: bool | typing.Any | None = True,
|
|
650
684
|
):
|
|
@@ -665,6 +699,7 @@ def duplicate_move(
|
|
|
665
699
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
666
700
|
execution_context: str | int | None = None,
|
|
667
701
|
undo: bool | None = None,
|
|
702
|
+
*,
|
|
668
703
|
NODE_OT_duplicate: duplicate | None = None,
|
|
669
704
|
NODE_OT_translate_attach: translate_attach | None = None,
|
|
670
705
|
):
|
|
@@ -685,6 +720,7 @@ def duplicate_move_keep_inputs(
|
|
|
685
720
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
686
721
|
execution_context: str | int | None = None,
|
|
687
722
|
undo: bool | None = None,
|
|
723
|
+
*,
|
|
688
724
|
NODE_OT_duplicate: duplicate | None = None,
|
|
689
725
|
NODE_OT_translate_attach: translate_attach | None = None,
|
|
690
726
|
):
|
|
@@ -705,6 +741,7 @@ def duplicate_move_linked(
|
|
|
705
741
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
706
742
|
execution_context: str | int | None = None,
|
|
707
743
|
undo: bool | None = None,
|
|
744
|
+
*,
|
|
708
745
|
NODE_OT_duplicate: duplicate | None = None,
|
|
709
746
|
NODE_OT_translate_attach: translate_attach | None = None,
|
|
710
747
|
):
|
|
@@ -739,6 +776,7 @@ def enum_definition_item_move(
|
|
|
739
776
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
740
777
|
execution_context: str | int | None = None,
|
|
741
778
|
undo: bool | None = None,
|
|
779
|
+
*,
|
|
742
780
|
direction: str | None = "UP",
|
|
743
781
|
):
|
|
744
782
|
"""Move active menu item
|
|
@@ -798,6 +836,7 @@ def group_edit(
|
|
|
798
836
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
799
837
|
execution_context: str | int | None = None,
|
|
800
838
|
undo: bool | None = None,
|
|
839
|
+
*,
|
|
801
840
|
exit: bool | typing.Any | None = False,
|
|
802
841
|
):
|
|
803
842
|
"""Edit node group
|
|
@@ -843,6 +882,7 @@ def group_separate(
|
|
|
843
882
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
844
883
|
execution_context: str | int | None = None,
|
|
845
884
|
undo: bool | None = None,
|
|
885
|
+
*,
|
|
846
886
|
type: str | None = "COPY",
|
|
847
887
|
):
|
|
848
888
|
"""Separate selected nodes from the node group
|
|
@@ -922,6 +962,7 @@ def index_switch_item_remove(
|
|
|
922
962
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
923
963
|
execution_context: str | int | None = None,
|
|
924
964
|
undo: bool | None = None,
|
|
965
|
+
*,
|
|
925
966
|
index: typing.Any | None = 0,
|
|
926
967
|
):
|
|
927
968
|
"""Remove an item from the index switch
|
|
@@ -967,6 +1008,7 @@ def interface_item_new(
|
|
|
967
1008
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
968
1009
|
execution_context: str | int | None = None,
|
|
969
1010
|
undo: bool | None = None,
|
|
1011
|
+
*,
|
|
970
1012
|
item_type: str | None = "INPUT",
|
|
971
1013
|
):
|
|
972
1014
|
"""Add a new item to the interface
|
|
@@ -1012,6 +1054,7 @@ def link(
|
|
|
1012
1054
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1013
1055
|
execution_context: str | int | None = None,
|
|
1014
1056
|
undo: bool | None = None,
|
|
1057
|
+
*,
|
|
1015
1058
|
detach: bool | typing.Any | None = False,
|
|
1016
1059
|
drag_start: typing.Any | None = (0.0, 0.0),
|
|
1017
1060
|
inside_padding: typing.Any | None = 2.0,
|
|
@@ -1050,6 +1093,7 @@ def link_make(
|
|
|
1050
1093
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1051
1094
|
execution_context: str | int | None = None,
|
|
1052
1095
|
undo: bool | None = None,
|
|
1096
|
+
*,
|
|
1053
1097
|
replace: bool | typing.Any | None = False,
|
|
1054
1098
|
):
|
|
1055
1099
|
"""Make a link between selected output and input sockets
|
|
@@ -1081,6 +1125,7 @@ def links_cut(
|
|
|
1081
1125
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1082
1126
|
execution_context: str | int | None = None,
|
|
1083
1127
|
undo: bool | None = None,
|
|
1128
|
+
*,
|
|
1084
1129
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
1085
1130
|
cursor: typing.Any | None = 12,
|
|
1086
1131
|
):
|
|
@@ -1115,6 +1160,7 @@ def links_mute(
|
|
|
1115
1160
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1116
1161
|
execution_context: str | int | None = None,
|
|
1117
1162
|
undo: bool | None = None,
|
|
1163
|
+
*,
|
|
1118
1164
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
1119
1165
|
cursor: typing.Any | None = 35,
|
|
1120
1166
|
):
|
|
@@ -1135,6 +1181,7 @@ def move_detach_links(
|
|
|
1135
1181
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1136
1182
|
execution_context: str | int | None = None,
|
|
1137
1183
|
undo: bool | None = None,
|
|
1184
|
+
*,
|
|
1138
1185
|
NODE_OT_links_detach: links_detach | None = None,
|
|
1139
1186
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
1140
1187
|
):
|
|
@@ -1155,6 +1202,7 @@ def move_detach_links_release(
|
|
|
1155
1202
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1156
1203
|
execution_context: str | int | None = None,
|
|
1157
1204
|
undo: bool | None = None,
|
|
1205
|
+
*,
|
|
1158
1206
|
NODE_OT_links_detach: links_detach | None = None,
|
|
1159
1207
|
NODE_OT_translate_attach: translate_attach | None = None,
|
|
1160
1208
|
):
|
|
@@ -1231,6 +1279,7 @@ def new_node_tree(
|
|
|
1231
1279
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1232
1280
|
execution_context: str | int | None = None,
|
|
1233
1281
|
undo: bool | None = None,
|
|
1282
|
+
*,
|
|
1234
1283
|
type: str | None = "",
|
|
1235
1284
|
name: str | typing.Any = "NodeTree",
|
|
1236
1285
|
):
|
|
@@ -1251,6 +1300,7 @@ def node_color_preset_add(
|
|
|
1251
1300
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1252
1301
|
execution_context: str | int | None = None,
|
|
1253
1302
|
undo: bool | None = None,
|
|
1303
|
+
*,
|
|
1254
1304
|
name: str | typing.Any = "",
|
|
1255
1305
|
remove_name: bool | typing.Any | None = False,
|
|
1256
1306
|
remove_active: bool | typing.Any | None = False,
|
|
@@ -1302,6 +1352,7 @@ def output_file_add_socket(
|
|
|
1302
1352
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1303
1353
|
execution_context: str | int | None = None,
|
|
1304
1354
|
undo: bool | None = None,
|
|
1355
|
+
*,
|
|
1305
1356
|
file_path: str | typing.Any = "Image",
|
|
1306
1357
|
):
|
|
1307
1358
|
"""Add a new input to a file output node
|
|
@@ -1319,6 +1370,7 @@ def output_file_move_active_socket(
|
|
|
1319
1370
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1320
1371
|
execution_context: str | int | None = None,
|
|
1321
1372
|
undo: bool | None = None,
|
|
1373
|
+
*,
|
|
1322
1374
|
direction: str | None = "DOWN",
|
|
1323
1375
|
):
|
|
1324
1376
|
"""Move the active input of a file output node up or down the list
|
|
@@ -1420,6 +1472,7 @@ def repeat_zone_item_move(
|
|
|
1420
1472
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1421
1473
|
execution_context: str | int | None = None,
|
|
1422
1474
|
undo: bool | None = None,
|
|
1475
|
+
*,
|
|
1423
1476
|
direction: str | None = "UP",
|
|
1424
1477
|
):
|
|
1425
1478
|
"""Move active repeat zone item
|
|
@@ -1465,6 +1518,7 @@ def select(
|
|
|
1465
1518
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1466
1519
|
execution_context: str | int | None = None,
|
|
1467
1520
|
undo: bool | None = None,
|
|
1521
|
+
*,
|
|
1468
1522
|
extend: bool | typing.Any | None = False,
|
|
1469
1523
|
deselect: bool | typing.Any | None = False,
|
|
1470
1524
|
toggle: bool | typing.Any | None = False,
|
|
@@ -1503,6 +1557,7 @@ def select_all(
|
|
|
1503
1557
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1504
1558
|
execution_context: str | int | None = None,
|
|
1505
1559
|
undo: bool | None = None,
|
|
1560
|
+
*,
|
|
1506
1561
|
action: str | None = "TOGGLE",
|
|
1507
1562
|
):
|
|
1508
1563
|
"""(De)select all nodes
|
|
@@ -1532,6 +1587,7 @@ def select_box(
|
|
|
1532
1587
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1533
1588
|
execution_context: str | int | None = None,
|
|
1534
1589
|
undo: bool | None = None,
|
|
1590
|
+
*,
|
|
1535
1591
|
tweak: bool | typing.Any | None = False,
|
|
1536
1592
|
xmin: typing.Any | None = 0,
|
|
1537
1593
|
xmax: typing.Any | None = 0,
|
|
@@ -1576,6 +1632,7 @@ def select_circle(
|
|
|
1576
1632
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1577
1633
|
execution_context: str | int | None = None,
|
|
1578
1634
|
undo: bool | None = None,
|
|
1635
|
+
*,
|
|
1579
1636
|
x: typing.Any | None = 0,
|
|
1580
1637
|
y: typing.Any | None = 0,
|
|
1581
1638
|
radius: typing.Any | None = 25,
|
|
@@ -1614,6 +1671,7 @@ def select_grouped(
|
|
|
1614
1671
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1615
1672
|
execution_context: str | int | None = None,
|
|
1616
1673
|
undo: bool | None = None,
|
|
1674
|
+
*,
|
|
1617
1675
|
extend: bool | typing.Any | None = False,
|
|
1618
1676
|
type: str | None = "TYPE",
|
|
1619
1677
|
):
|
|
@@ -1634,6 +1692,7 @@ def select_lasso(
|
|
|
1634
1692
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1635
1693
|
execution_context: str | int | None = None,
|
|
1636
1694
|
undo: bool | None = None,
|
|
1695
|
+
*,
|
|
1637
1696
|
tweak: bool | typing.Any | None = False,
|
|
1638
1697
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
1639
1698
|
mode: str | None = "SET",
|
|
@@ -1666,6 +1725,7 @@ def select_link_viewer(
|
|
|
1666
1725
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1667
1726
|
execution_context: str | int | None = None,
|
|
1668
1727
|
undo: bool | None = None,
|
|
1728
|
+
*,
|
|
1669
1729
|
NODE_OT_select: select | None = None,
|
|
1670
1730
|
NODE_OT_link_viewer: link_viewer | None = None,
|
|
1671
1731
|
):
|
|
@@ -1714,6 +1774,7 @@ def select_same_type_step(
|
|
|
1714
1774
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1715
1775
|
execution_context: str | int | None = None,
|
|
1716
1776
|
undo: bool | None = None,
|
|
1777
|
+
*,
|
|
1717
1778
|
prev: bool | typing.Any | None = False,
|
|
1718
1779
|
):
|
|
1719
1780
|
"""Activate and view same node type, step by step
|
|
@@ -1759,6 +1820,7 @@ def simulation_zone_item_move(
|
|
|
1759
1820
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1760
1821
|
execution_context: str | int | None = None,
|
|
1761
1822
|
undo: bool | None = None,
|
|
1823
|
+
*,
|
|
1762
1824
|
direction: str | None = "UP",
|
|
1763
1825
|
):
|
|
1764
1826
|
"""Move active simulation zone item
|
|
@@ -1804,6 +1866,7 @@ def translate_attach(
|
|
|
1804
1866
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1805
1867
|
execution_context: str | int | None = None,
|
|
1806
1868
|
undo: bool | None = None,
|
|
1869
|
+
*,
|
|
1807
1870
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
1808
1871
|
NODE_OT_attach: attach | None = None,
|
|
1809
1872
|
):
|
|
@@ -1824,6 +1887,7 @@ def translate_attach_remove_on_cancel(
|
|
|
1824
1887
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1825
1888
|
execution_context: str | int | None = None,
|
|
1826
1889
|
undo: bool | None = None,
|
|
1890
|
+
*,
|
|
1827
1891
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
1828
1892
|
NODE_OT_attach: attach | None = None,
|
|
1829
1893
|
):
|
|
@@ -1886,6 +1950,7 @@ def viewer_border(
|
|
|
1886
1950
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1887
1951
|
execution_context: str | int | None = None,
|
|
1888
1952
|
undo: bool | None = None,
|
|
1953
|
+
*,
|
|
1889
1954
|
xmin: typing.Any | None = 0,
|
|
1890
1955
|
xmax: typing.Any | None = 0,
|
|
1891
1956
|
ymin: typing.Any | None = 0,
|