fake-bpy-module 20240927__py3-none-any.whl → 20240929__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_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/space_dopesheet/__init__.pyi +25 -0
- bl_ui/space_view3d/__init__.pyi +36 -0
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +144 -120
- bpy/ops/armature/__init__.pyi +96 -96
- bpy/ops/asset/__init__.pyi +32 -32
- bpy/ops/boid/__init__.pyi +16 -16
- bpy/ops/brush/__init__.pyi +26 -26
- bpy/ops/buttons/__init__.pyi +12 -12
- bpy/ops/cachefile/__init__.pyi +10 -10
- bpy/ops/camera/__init__.pyi +4 -4
- bpy/ops/clip/__init__.pyi +184 -184
- bpy/ops/cloth/__init__.pyi +2 -2
- bpy/ops/collection/__init__.pyi +18 -18
- bpy/ops/console/__init__.pyi +42 -42
- bpy/ops/constraint/__init__.pyi +36 -36
- bpy/ops/curve/__init__.pyi +102 -102
- bpy/ops/curves/__init__.pyi +54 -54
- bpy/ops/cycles/__init__.pyi +6 -6
- bpy/ops/dpaint/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +24 -24
- bpy/ops/export_anim/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +4 -4
- bpy/ops/extensions/__init__.pyi +68 -68
- bpy/ops/file/__init__.pyi +80 -80
- bpy/ops/fluid/__init__.pyi +28 -28
- bpy/ops/font/__init__.pyi +46 -46
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +4 -4
- bpy/ops/gpencil/__init__.pyi +284 -284
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +220 -200
- bpy/ops/image/__init__.pyi +98 -98
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +4 -4
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +16 -16
- bpy/ops/marker/__init__.pyi +22 -22
- bpy/ops/mask/__init__.pyi +78 -78
- bpy/ops/material/__init__.pyi +6 -6
- bpy/ops/mball/__init__.pyi +16 -16
- bpy/ops/mesh/__init__.pyi +326 -326
- bpy/ops/nla/__init__.pyi +78 -78
- bpy/ops/node/__init__.pyi +230 -230
- bpy/ops/object/__init__.pyi +476 -476
- bpy/ops/outliner/__init__.pyi +142 -142
- bpy/ops/paint/__init__.pyi +108 -108
- bpy/ops/paintcurve/__init__.pyi +16 -16
- bpy/ops/palette/__init__.pyi +14 -14
- bpy/ops/particle/__init__.pyi +72 -72
- bpy/ops/pose/__init__.pyi +102 -102
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +70 -70
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +26 -26
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +74 -74
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +74 -74
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +178 -178
- bpy/ops/sound/__init__.pyi +14 -14
- bpy/ops/spreadsheet/__init__.pyi +8 -8
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +86 -86
- bpy/ops/text_editor/__init__.pyi +2 -2
- bpy/ops/texture/__init__.pyi +8 -8
- bpy/ops/transform/__init__.pyi +54 -54
- bpy/ops/ui/__init__.pyi +68 -68
- bpy/ops/uilist/__init__.pyi +6 -6
- bpy/ops/uv/__init__.pyi +98 -98
- bpy/ops/view2d/__init__.pyi +28 -28
- bpy/ops/view3d/__init__.pyi +134 -134
- bpy/ops/wm/__init__.pyi +232 -232
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +449 -226
- bpy/typing/__init__.pyi +1 -0
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/RECORD +87 -87
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/top_level.txt +0 -0
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -7,7 +7,7 @@ import bpy.types
|
|
|
7
7
|
import bpy.typing
|
|
8
8
|
|
|
9
9
|
def add_collection(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
*,
|
|
@@ -16,7 +16,7 @@ def add_collection(
|
|
|
16
16
|
):
|
|
17
17
|
"""Add a collection info node to the current node editor
|
|
18
18
|
|
|
19
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
19
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
20
20
|
:type execution_context: int | str | None
|
|
21
21
|
:type undo: bool | None
|
|
22
22
|
:param name: Name, Name of the data-block to use by the operator
|
|
@@ -26,7 +26,7 @@ def add_collection(
|
|
|
26
26
|
"""
|
|
27
27
|
|
|
28
28
|
def add_file(
|
|
29
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
29
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
30
30
|
execution_context: int | str | None = None,
|
|
31
31
|
undo: bool | None = None,
|
|
32
32
|
*,
|
|
@@ -74,7 +74,7 @@ def add_file(
|
|
|
74
74
|
):
|
|
75
75
|
"""Add a file node to the current node editor
|
|
76
76
|
|
|
77
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
77
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
78
78
|
:type execution_context: int | str | None
|
|
79
79
|
:type undo: bool | None
|
|
80
80
|
:param filepath: File Path, Path to file
|
|
@@ -167,7 +167,7 @@ def add_file(
|
|
|
167
167
|
"""
|
|
168
168
|
|
|
169
169
|
def add_foreach_geometry_element_zone(
|
|
170
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
170
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
171
171
|
execution_context: int | str | None = None,
|
|
172
172
|
undo: bool | None = None,
|
|
173
173
|
*,
|
|
@@ -178,7 +178,7 @@ def add_foreach_geometry_element_zone(
|
|
|
178
178
|
):
|
|
179
179
|
"""Add a For Each Geometry Element zone that allows executing nodes e.g. for each vertex separately
|
|
180
180
|
|
|
181
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
181
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
182
182
|
:type execution_context: int | str | None
|
|
183
183
|
:type undo: bool | None
|
|
184
184
|
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
@@ -190,7 +190,7 @@ def add_foreach_geometry_element_zone(
|
|
|
190
190
|
"""
|
|
191
191
|
|
|
192
192
|
def add_group(
|
|
193
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
193
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
194
194
|
execution_context: int | str | None = None,
|
|
195
195
|
undo: bool | None = None,
|
|
196
196
|
*,
|
|
@@ -200,7 +200,7 @@ def add_group(
|
|
|
200
200
|
):
|
|
201
201
|
"""Add an existing node group to the current node editor
|
|
202
202
|
|
|
203
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
203
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
204
204
|
:type execution_context: int | str | None
|
|
205
205
|
:type undo: bool | None
|
|
206
206
|
:param name: Name, Name of the data-block to use by the operator
|
|
@@ -212,7 +212,7 @@ def add_group(
|
|
|
212
212
|
"""
|
|
213
213
|
|
|
214
214
|
def add_group_asset(
|
|
215
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
215
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
216
216
|
execution_context: int | str | None = None,
|
|
217
217
|
undo: bool | None = None,
|
|
218
218
|
*,
|
|
@@ -222,7 +222,7 @@ def add_group_asset(
|
|
|
222
222
|
):
|
|
223
223
|
"""Add a node group asset to the active node tree
|
|
224
224
|
|
|
225
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
225
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
226
226
|
:type execution_context: int | str | None
|
|
227
227
|
:type undo: bool | None
|
|
228
228
|
:param asset_library_type: Asset Library Type
|
|
@@ -234,7 +234,7 @@ def add_group_asset(
|
|
|
234
234
|
"""
|
|
235
235
|
|
|
236
236
|
def add_mask(
|
|
237
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
237
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
238
238
|
execution_context: int | str | None = None,
|
|
239
239
|
undo: bool | None = None,
|
|
240
240
|
*,
|
|
@@ -243,7 +243,7 @@ def add_mask(
|
|
|
243
243
|
):
|
|
244
244
|
"""Add a mask node to the current node editor
|
|
245
245
|
|
|
246
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
246
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
247
247
|
:type execution_context: int | str | None
|
|
248
248
|
:type undo: bool | None
|
|
249
249
|
:param name: Name, Name of the data-block to use by the operator
|
|
@@ -253,7 +253,7 @@ def add_mask(
|
|
|
253
253
|
"""
|
|
254
254
|
|
|
255
255
|
def add_material(
|
|
256
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
256
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
257
257
|
execution_context: int | str | None = None,
|
|
258
258
|
undo: bool | None = None,
|
|
259
259
|
*,
|
|
@@ -262,7 +262,7 @@ def add_material(
|
|
|
262
262
|
):
|
|
263
263
|
"""Add a material node to the current node editor
|
|
264
264
|
|
|
265
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
265
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
266
266
|
:type execution_context: int | str | None
|
|
267
267
|
:type undo: bool | None
|
|
268
268
|
:param name: Name, Name of the data-block to use by the operator
|
|
@@ -272,7 +272,7 @@ def add_material(
|
|
|
272
272
|
"""
|
|
273
273
|
|
|
274
274
|
def add_node(
|
|
275
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
275
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
276
276
|
execution_context: int | str | None = None,
|
|
277
277
|
undo: bool | None = None,
|
|
278
278
|
*,
|
|
@@ -283,7 +283,7 @@ def add_node(
|
|
|
283
283
|
):
|
|
284
284
|
"""Add a node to the active tree
|
|
285
285
|
|
|
286
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
286
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
287
287
|
:type execution_context: int | str | None
|
|
288
288
|
:type undo: bool | None
|
|
289
289
|
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
@@ -295,7 +295,7 @@ def add_node(
|
|
|
295
295
|
"""
|
|
296
296
|
|
|
297
297
|
def add_object(
|
|
298
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
298
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
299
299
|
execution_context: int | str | None = None,
|
|
300
300
|
undo: bool | None = None,
|
|
301
301
|
*,
|
|
@@ -304,7 +304,7 @@ def add_object(
|
|
|
304
304
|
):
|
|
305
305
|
"""Add an object info node to the current node editor
|
|
306
306
|
|
|
307
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
307
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
308
308
|
:type execution_context: int | str | None
|
|
309
309
|
:type undo: bool | None
|
|
310
310
|
:param name: Name, Name of the data-block to use by the operator
|
|
@@ -314,7 +314,7 @@ def add_object(
|
|
|
314
314
|
"""
|
|
315
315
|
|
|
316
316
|
def add_repeat_zone(
|
|
317
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
317
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
318
318
|
execution_context: int | str | None = None,
|
|
319
319
|
undo: bool | None = None,
|
|
320
320
|
*,
|
|
@@ -325,7 +325,7 @@ def add_repeat_zone(
|
|
|
325
325
|
):
|
|
326
326
|
"""Add a repeat zone that allows executing nodes a dynamic number of times
|
|
327
327
|
|
|
328
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
328
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
329
329
|
:type execution_context: int | str | None
|
|
330
330
|
:type undo: bool | None
|
|
331
331
|
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
@@ -337,7 +337,7 @@ def add_repeat_zone(
|
|
|
337
337
|
"""
|
|
338
338
|
|
|
339
339
|
def add_reroute(
|
|
340
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
340
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
341
341
|
execution_context: int | str | None = None,
|
|
342
342
|
undo: bool | None = None,
|
|
343
343
|
*,
|
|
@@ -346,7 +346,7 @@ def add_reroute(
|
|
|
346
346
|
):
|
|
347
347
|
"""Add a reroute node
|
|
348
348
|
|
|
349
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
349
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
350
350
|
:type execution_context: int | str | None
|
|
351
351
|
:type undo: bool | None
|
|
352
352
|
:param path: Path
|
|
@@ -356,7 +356,7 @@ def add_reroute(
|
|
|
356
356
|
"""
|
|
357
357
|
|
|
358
358
|
def add_simulation_zone(
|
|
359
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
359
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
360
360
|
execution_context: int | str | None = None,
|
|
361
361
|
undo: bool | None = None,
|
|
362
362
|
*,
|
|
@@ -367,7 +367,7 @@ def add_simulation_zone(
|
|
|
367
367
|
):
|
|
368
368
|
"""Add simulation zone input and output nodes to the active tree
|
|
369
369
|
|
|
370
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
370
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
371
371
|
:type execution_context: int | str | None
|
|
372
372
|
:type undo: bool | None
|
|
373
373
|
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
@@ -379,55 +379,55 @@ def add_simulation_zone(
|
|
|
379
379
|
"""
|
|
380
380
|
|
|
381
381
|
def attach(
|
|
382
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
382
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
383
383
|
execution_context: int | str | None = None,
|
|
384
384
|
undo: bool | None = None,
|
|
385
385
|
):
|
|
386
386
|
"""Attach active node to a frame
|
|
387
387
|
|
|
388
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
388
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
389
389
|
:type execution_context: int | str | None
|
|
390
390
|
:type undo: bool | None
|
|
391
391
|
"""
|
|
392
392
|
|
|
393
393
|
def backimage_fit(
|
|
394
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
394
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
395
395
|
execution_context: int | str | None = None,
|
|
396
396
|
undo: bool | None = None,
|
|
397
397
|
):
|
|
398
398
|
"""Fit the background image to the view
|
|
399
399
|
|
|
400
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
400
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
401
401
|
:type execution_context: int | str | None
|
|
402
402
|
:type undo: bool | None
|
|
403
403
|
"""
|
|
404
404
|
|
|
405
405
|
def backimage_move(
|
|
406
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
406
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
407
407
|
execution_context: int | str | None = None,
|
|
408
408
|
undo: bool | None = None,
|
|
409
409
|
):
|
|
410
410
|
"""Move node backdrop
|
|
411
411
|
|
|
412
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
412
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
413
413
|
:type execution_context: int | str | None
|
|
414
414
|
:type undo: bool | None
|
|
415
415
|
"""
|
|
416
416
|
|
|
417
417
|
def backimage_sample(
|
|
418
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
418
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
419
419
|
execution_context: int | str | None = None,
|
|
420
420
|
undo: bool | None = None,
|
|
421
421
|
):
|
|
422
422
|
"""Use mouse to sample background image
|
|
423
423
|
|
|
424
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
424
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
425
425
|
:type execution_context: int | str | None
|
|
426
426
|
:type undo: bool | None
|
|
427
427
|
"""
|
|
428
428
|
|
|
429
429
|
def backimage_zoom(
|
|
430
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
430
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
431
431
|
execution_context: int | str | None = None,
|
|
432
432
|
undo: bool | None = None,
|
|
433
433
|
*,
|
|
@@ -435,7 +435,7 @@ def backimage_zoom(
|
|
|
435
435
|
):
|
|
436
436
|
"""Zoom in/out the background image
|
|
437
437
|
|
|
438
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
438
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
439
439
|
:type execution_context: int | str | None
|
|
440
440
|
:type undo: bool | None
|
|
441
441
|
:param factor: Factor
|
|
@@ -443,19 +443,19 @@ def backimage_zoom(
|
|
|
443
443
|
"""
|
|
444
444
|
|
|
445
445
|
def bake_node_item_add(
|
|
446
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
446
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
447
447
|
execution_context: int | str | None = None,
|
|
448
448
|
undo: bool | None = None,
|
|
449
449
|
):
|
|
450
450
|
"""Add bake item
|
|
451
451
|
|
|
452
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
452
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
453
453
|
:type execution_context: int | str | None
|
|
454
454
|
:type undo: bool | None
|
|
455
455
|
"""
|
|
456
456
|
|
|
457
457
|
def bake_node_item_move(
|
|
458
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
458
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
459
459
|
execution_context: int | str | None = None,
|
|
460
460
|
undo: bool | None = None,
|
|
461
461
|
*,
|
|
@@ -463,7 +463,7 @@ def bake_node_item_move(
|
|
|
463
463
|
):
|
|
464
464
|
"""Move active bake item
|
|
465
465
|
|
|
466
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
466
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
467
467
|
:type execution_context: int | str | None
|
|
468
468
|
:type undo: bool | None
|
|
469
469
|
:param direction: Direction, Move direction
|
|
@@ -471,31 +471,31 @@ def bake_node_item_move(
|
|
|
471
471
|
"""
|
|
472
472
|
|
|
473
473
|
def bake_node_item_remove(
|
|
474
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
474
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
475
475
|
execution_context: int | str | None = None,
|
|
476
476
|
undo: bool | None = None,
|
|
477
477
|
):
|
|
478
478
|
"""Remove active bake item
|
|
479
479
|
|
|
480
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
480
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
481
481
|
:type execution_context: int | str | None
|
|
482
482
|
:type undo: bool | None
|
|
483
483
|
"""
|
|
484
484
|
|
|
485
485
|
def capture_attribute_item_add(
|
|
486
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
486
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
487
487
|
execution_context: int | str | None = None,
|
|
488
488
|
undo: bool | None = None,
|
|
489
489
|
):
|
|
490
490
|
"""Add capture attribute item
|
|
491
491
|
|
|
492
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
492
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
493
493
|
:type execution_context: int | str | None
|
|
494
494
|
:type undo: bool | None
|
|
495
495
|
"""
|
|
496
496
|
|
|
497
497
|
def capture_attribute_item_move(
|
|
498
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
498
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
499
499
|
execution_context: int | str | None = None,
|
|
500
500
|
undo: bool | None = None,
|
|
501
501
|
*,
|
|
@@ -503,7 +503,7 @@ def capture_attribute_item_move(
|
|
|
503
503
|
):
|
|
504
504
|
"""Move active capture attribute item
|
|
505
505
|
|
|
506
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
506
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
507
507
|
:type execution_context: int | str | None
|
|
508
508
|
:type undo: bool | None
|
|
509
509
|
:param direction: Direction, Move direction
|
|
@@ -511,43 +511,43 @@ def capture_attribute_item_move(
|
|
|
511
511
|
"""
|
|
512
512
|
|
|
513
513
|
def capture_attribute_item_remove(
|
|
514
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
514
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
515
515
|
execution_context: int | str | None = None,
|
|
516
516
|
undo: bool | None = None,
|
|
517
517
|
):
|
|
518
518
|
"""Remove active capture attribute item
|
|
519
519
|
|
|
520
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
520
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
521
521
|
:type execution_context: int | str | None
|
|
522
522
|
:type undo: bool | None
|
|
523
523
|
"""
|
|
524
524
|
|
|
525
525
|
def clear_viewer_border(
|
|
526
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
526
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
527
527
|
execution_context: int | str | None = None,
|
|
528
528
|
undo: bool | None = None,
|
|
529
529
|
):
|
|
530
530
|
"""Clear the boundaries for viewer operations
|
|
531
531
|
|
|
532
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
532
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
533
533
|
:type execution_context: int | str | None
|
|
534
534
|
:type undo: bool | None
|
|
535
535
|
"""
|
|
536
536
|
|
|
537
537
|
def clipboard_copy(
|
|
538
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
538
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
539
539
|
execution_context: int | str | None = None,
|
|
540
540
|
undo: bool | None = None,
|
|
541
541
|
):
|
|
542
542
|
"""Copy the selected nodes to the internal clipboard
|
|
543
543
|
|
|
544
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
544
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
545
545
|
:type execution_context: int | str | None
|
|
546
546
|
:type undo: bool | None
|
|
547
547
|
"""
|
|
548
548
|
|
|
549
549
|
def clipboard_paste(
|
|
550
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
550
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
551
551
|
execution_context: int | str | None = None,
|
|
552
552
|
undo: bool | None = None,
|
|
553
553
|
*,
|
|
@@ -555,7 +555,7 @@ def clipboard_paste(
|
|
|
555
555
|
):
|
|
556
556
|
"""Paste nodes from the internal clipboard to the active node tree
|
|
557
557
|
|
|
558
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
558
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
559
559
|
:type execution_context: int | str | None
|
|
560
560
|
:type undo: bool | None
|
|
561
561
|
:param offset: Location, The 2D view location for the center of the new nodes, or unchanged if not set
|
|
@@ -563,19 +563,19 @@ def clipboard_paste(
|
|
|
563
563
|
"""
|
|
564
564
|
|
|
565
565
|
def collapse_hide_unused_toggle(
|
|
566
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
566
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
567
567
|
execution_context: int | str | None = None,
|
|
568
568
|
undo: bool | None = None,
|
|
569
569
|
):
|
|
570
570
|
"""Toggle collapsed nodes and hide unused sockets
|
|
571
571
|
|
|
572
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
572
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
573
573
|
:type execution_context: int | str | None
|
|
574
574
|
:type undo: bool | None
|
|
575
575
|
"""
|
|
576
576
|
|
|
577
577
|
def connect_to_output(
|
|
578
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
578
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
579
579
|
execution_context: int | str | None = None,
|
|
580
580
|
undo: bool | None = None,
|
|
581
581
|
*,
|
|
@@ -583,7 +583,7 @@ def connect_to_output(
|
|
|
583
583
|
):
|
|
584
584
|
"""Connect active node to the active output node of the node tree
|
|
585
585
|
|
|
586
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
586
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
587
587
|
:type execution_context: int | str | None
|
|
588
588
|
:type undo: bool | None
|
|
589
589
|
:param run_in_geometry_nodes: Run in Geometry Nodes Editor
|
|
@@ -591,91 +591,91 @@ def connect_to_output(
|
|
|
591
591
|
"""
|
|
592
592
|
|
|
593
593
|
def cryptomatte_layer_add(
|
|
594
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
594
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
595
595
|
execution_context: int | str | None = None,
|
|
596
596
|
undo: bool | None = None,
|
|
597
597
|
):
|
|
598
598
|
"""Add a new input layer to a Cryptomatte node
|
|
599
599
|
|
|
600
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
600
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
601
601
|
:type execution_context: int | str | None
|
|
602
602
|
:type undo: bool | None
|
|
603
603
|
"""
|
|
604
604
|
|
|
605
605
|
def cryptomatte_layer_remove(
|
|
606
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
606
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
607
607
|
execution_context: int | str | None = None,
|
|
608
608
|
undo: bool | None = None,
|
|
609
609
|
):
|
|
610
610
|
"""Remove layer from a Cryptomatte node
|
|
611
611
|
|
|
612
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
612
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
613
613
|
:type execution_context: int | str | None
|
|
614
614
|
:type undo: bool | None
|
|
615
615
|
"""
|
|
616
616
|
|
|
617
617
|
def deactivate_viewer(
|
|
618
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
618
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
619
619
|
execution_context: int | str | None = None,
|
|
620
620
|
undo: bool | None = None,
|
|
621
621
|
):
|
|
622
622
|
"""Deactivate selected viewer node in geometry nodes
|
|
623
623
|
|
|
624
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
624
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
625
625
|
:type execution_context: int | str | None
|
|
626
626
|
:type undo: bool | None
|
|
627
627
|
"""
|
|
628
628
|
|
|
629
629
|
def default_group_width_set(
|
|
630
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
630
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
631
631
|
execution_context: int | str | None = None,
|
|
632
632
|
undo: bool | None = None,
|
|
633
633
|
):
|
|
634
634
|
"""Set the width based on the parent group node in the current context
|
|
635
635
|
|
|
636
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
636
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
637
637
|
:type execution_context: int | str | None
|
|
638
638
|
:type undo: bool | None
|
|
639
639
|
"""
|
|
640
640
|
|
|
641
641
|
def delete(
|
|
642
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
642
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
643
643
|
execution_context: int | str | None = None,
|
|
644
644
|
undo: bool | None = None,
|
|
645
645
|
):
|
|
646
646
|
"""Remove selected nodes
|
|
647
647
|
|
|
648
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
648
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
649
649
|
:type execution_context: int | str | None
|
|
650
650
|
:type undo: bool | None
|
|
651
651
|
"""
|
|
652
652
|
|
|
653
653
|
def delete_reconnect(
|
|
654
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
654
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
655
655
|
execution_context: int | str | None = None,
|
|
656
656
|
undo: bool | None = None,
|
|
657
657
|
):
|
|
658
658
|
"""Remove nodes and reconnect nodes as if deletion was muted
|
|
659
659
|
|
|
660
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
660
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
661
661
|
:type execution_context: int | str | None
|
|
662
662
|
:type undo: bool | None
|
|
663
663
|
"""
|
|
664
664
|
|
|
665
665
|
def detach(
|
|
666
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
666
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
667
667
|
execution_context: int | str | None = None,
|
|
668
668
|
undo: bool | None = None,
|
|
669
669
|
):
|
|
670
670
|
"""Detach selected nodes from parents
|
|
671
671
|
|
|
672
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
672
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
673
673
|
:type execution_context: int | str | None
|
|
674
674
|
:type undo: bool | None
|
|
675
675
|
"""
|
|
676
676
|
|
|
677
677
|
def detach_translate_attach(
|
|
678
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
678
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
679
679
|
execution_context: int | str | None = None,
|
|
680
680
|
undo: bool | None = None,
|
|
681
681
|
*,
|
|
@@ -685,7 +685,7 @@ def detach_translate_attach(
|
|
|
685
685
|
):
|
|
686
686
|
"""Detach nodes, move and attach to frame
|
|
687
687
|
|
|
688
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
688
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
689
689
|
:type execution_context: int | str | None
|
|
690
690
|
:type undo: bool | None
|
|
691
691
|
:param NODE_OT_detach: Detach Nodes, Detach selected nodes from parents
|
|
@@ -697,7 +697,7 @@ def detach_translate_attach(
|
|
|
697
697
|
"""
|
|
698
698
|
|
|
699
699
|
def duplicate(
|
|
700
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
700
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
701
701
|
execution_context: int | str | None = None,
|
|
702
702
|
undo: bool | None = None,
|
|
703
703
|
*,
|
|
@@ -706,7 +706,7 @@ def duplicate(
|
|
|
706
706
|
):
|
|
707
707
|
"""Duplicate selected nodes
|
|
708
708
|
|
|
709
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
709
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
710
710
|
:type execution_context: int | str | None
|
|
711
711
|
:type undo: bool | None
|
|
712
712
|
:param keep_inputs: Keep Inputs, Keep the input links to duplicated nodes
|
|
@@ -716,7 +716,7 @@ def duplicate(
|
|
|
716
716
|
"""
|
|
717
717
|
|
|
718
718
|
def duplicate_move(
|
|
719
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
719
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
720
720
|
execution_context: int | str | None = None,
|
|
721
721
|
undo: bool | None = None,
|
|
722
722
|
*,
|
|
@@ -725,7 +725,7 @@ def duplicate_move(
|
|
|
725
725
|
):
|
|
726
726
|
"""Duplicate selected nodes and move them
|
|
727
727
|
|
|
728
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
728
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
729
729
|
:type execution_context: int | str | None
|
|
730
730
|
:type undo: bool | None
|
|
731
731
|
:param NODE_OT_duplicate: Duplicate Nodes, Duplicate selected nodes
|
|
@@ -735,7 +735,7 @@ def duplicate_move(
|
|
|
735
735
|
"""
|
|
736
736
|
|
|
737
737
|
def duplicate_move_keep_inputs(
|
|
738
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
738
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
739
739
|
execution_context: int | str | None = None,
|
|
740
740
|
undo: bool | None = None,
|
|
741
741
|
*,
|
|
@@ -744,7 +744,7 @@ def duplicate_move_keep_inputs(
|
|
|
744
744
|
):
|
|
745
745
|
"""Duplicate selected nodes keeping input links and move them
|
|
746
746
|
|
|
747
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
747
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
748
748
|
:type execution_context: int | str | None
|
|
749
749
|
:type undo: bool | None
|
|
750
750
|
:param NODE_OT_duplicate: Duplicate Nodes, Duplicate selected nodes
|
|
@@ -754,7 +754,7 @@ def duplicate_move_keep_inputs(
|
|
|
754
754
|
"""
|
|
755
755
|
|
|
756
756
|
def duplicate_move_linked(
|
|
757
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
757
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
758
758
|
execution_context: int | str | None = None,
|
|
759
759
|
undo: bool | None = None,
|
|
760
760
|
*,
|
|
@@ -763,7 +763,7 @@ def duplicate_move_linked(
|
|
|
763
763
|
):
|
|
764
764
|
"""Duplicate selected nodes, but not their node trees, and move them
|
|
765
765
|
|
|
766
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
766
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
767
767
|
:type execution_context: int | str | None
|
|
768
768
|
:type undo: bool | None
|
|
769
769
|
:param NODE_OT_duplicate: Duplicate Nodes, Duplicate selected nodes
|
|
@@ -773,19 +773,19 @@ def duplicate_move_linked(
|
|
|
773
773
|
"""
|
|
774
774
|
|
|
775
775
|
def enum_definition_item_add(
|
|
776
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
776
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
777
777
|
execution_context: int | str | None = None,
|
|
778
778
|
undo: bool | None = None,
|
|
779
779
|
):
|
|
780
780
|
"""Add menu item
|
|
781
781
|
|
|
782
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
782
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
783
783
|
:type execution_context: int | str | None
|
|
784
784
|
:type undo: bool | None
|
|
785
785
|
"""
|
|
786
786
|
|
|
787
787
|
def enum_definition_item_move(
|
|
788
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
788
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
789
789
|
execution_context: int | str | None = None,
|
|
790
790
|
undo: bool | None = None,
|
|
791
791
|
*,
|
|
@@ -793,7 +793,7 @@ def enum_definition_item_move(
|
|
|
793
793
|
):
|
|
794
794
|
"""Move active menu item
|
|
795
795
|
|
|
796
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
796
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
797
797
|
:type execution_context: int | str | None
|
|
798
798
|
:type undo: bool | None
|
|
799
799
|
:param direction: Direction, Move direction
|
|
@@ -801,43 +801,43 @@ def enum_definition_item_move(
|
|
|
801
801
|
"""
|
|
802
802
|
|
|
803
803
|
def enum_definition_item_remove(
|
|
804
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
804
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
805
805
|
execution_context: int | str | None = None,
|
|
806
806
|
undo: bool | None = None,
|
|
807
807
|
):
|
|
808
808
|
"""Remove active menu item
|
|
809
809
|
|
|
810
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
810
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
811
811
|
:type execution_context: int | str | None
|
|
812
812
|
:type undo: bool | None
|
|
813
813
|
"""
|
|
814
814
|
|
|
815
815
|
def find_node(
|
|
816
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
816
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
817
817
|
execution_context: int | str | None = None,
|
|
818
818
|
undo: bool | None = None,
|
|
819
819
|
):
|
|
820
820
|
"""Search for a node by name and focus and select it
|
|
821
821
|
|
|
822
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
822
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
823
823
|
:type execution_context: int | str | None
|
|
824
824
|
:type undo: bool | None
|
|
825
825
|
"""
|
|
826
826
|
|
|
827
827
|
def foreach_geometry_element_zone_generation_item_add(
|
|
828
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
828
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
829
829
|
execution_context: int | str | None = None,
|
|
830
830
|
undo: bool | None = None,
|
|
831
831
|
):
|
|
832
832
|
"""Add for-each generation item
|
|
833
833
|
|
|
834
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
834
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
835
835
|
:type execution_context: int | str | None
|
|
836
836
|
:type undo: bool | None
|
|
837
837
|
"""
|
|
838
838
|
|
|
839
839
|
def foreach_geometry_element_zone_generation_item_move(
|
|
840
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
840
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
841
841
|
execution_context: int | str | None = None,
|
|
842
842
|
undo: bool | None = None,
|
|
843
843
|
*,
|
|
@@ -845,7 +845,7 @@ def foreach_geometry_element_zone_generation_item_move(
|
|
|
845
845
|
):
|
|
846
846
|
"""Move active for-each generation item
|
|
847
847
|
|
|
848
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
848
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
849
849
|
:type execution_context: int | str | None
|
|
850
850
|
:type undo: bool | None
|
|
851
851
|
:param direction: Direction, Move direction
|
|
@@ -853,31 +853,31 @@ def foreach_geometry_element_zone_generation_item_move(
|
|
|
853
853
|
"""
|
|
854
854
|
|
|
855
855
|
def foreach_geometry_element_zone_generation_item_remove(
|
|
856
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
856
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
857
857
|
execution_context: int | str | None = None,
|
|
858
858
|
undo: bool | None = None,
|
|
859
859
|
):
|
|
860
860
|
"""Remove active for-each generation item
|
|
861
861
|
|
|
862
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
862
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
863
863
|
:type execution_context: int | str | None
|
|
864
864
|
:type undo: bool | None
|
|
865
865
|
"""
|
|
866
866
|
|
|
867
867
|
def foreach_geometry_element_zone_input_item_add(
|
|
868
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
868
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
869
869
|
execution_context: int | str | None = None,
|
|
870
870
|
undo: bool | None = None,
|
|
871
871
|
):
|
|
872
872
|
"""Add for-each input item
|
|
873
873
|
|
|
874
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
874
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
875
875
|
:type execution_context: int | str | None
|
|
876
876
|
:type undo: bool | None
|
|
877
877
|
"""
|
|
878
878
|
|
|
879
879
|
def foreach_geometry_element_zone_input_item_move(
|
|
880
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
880
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
881
881
|
execution_context: int | str | None = None,
|
|
882
882
|
undo: bool | None = None,
|
|
883
883
|
*,
|
|
@@ -885,7 +885,7 @@ def foreach_geometry_element_zone_input_item_move(
|
|
|
885
885
|
):
|
|
886
886
|
"""Move active for-each input item
|
|
887
887
|
|
|
888
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
888
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
889
889
|
:type execution_context: int | str | None
|
|
890
890
|
:type undo: bool | None
|
|
891
891
|
:param direction: Direction, Move direction
|
|
@@ -893,31 +893,31 @@ def foreach_geometry_element_zone_input_item_move(
|
|
|
893
893
|
"""
|
|
894
894
|
|
|
895
895
|
def foreach_geometry_element_zone_input_item_remove(
|
|
896
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
896
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
897
897
|
execution_context: int | str | None = None,
|
|
898
898
|
undo: bool | None = None,
|
|
899
899
|
):
|
|
900
900
|
"""Remove active for-each input item
|
|
901
901
|
|
|
902
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
902
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
903
903
|
:type execution_context: int | str | None
|
|
904
904
|
:type undo: bool | None
|
|
905
905
|
"""
|
|
906
906
|
|
|
907
907
|
def foreach_geometry_element_zone_main_item_add(
|
|
908
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
908
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
909
909
|
execution_context: int | str | None = None,
|
|
910
910
|
undo: bool | None = None,
|
|
911
911
|
):
|
|
912
912
|
"""Add for-each main item
|
|
913
913
|
|
|
914
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
914
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
915
915
|
:type execution_context: int | str | None
|
|
916
916
|
:type undo: bool | None
|
|
917
917
|
"""
|
|
918
918
|
|
|
919
919
|
def foreach_geometry_element_zone_main_item_move(
|
|
920
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
920
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
921
921
|
execution_context: int | str | None = None,
|
|
922
922
|
undo: bool | None = None,
|
|
923
923
|
*,
|
|
@@ -925,7 +925,7 @@ def foreach_geometry_element_zone_main_item_move(
|
|
|
925
925
|
):
|
|
926
926
|
"""Move active for-each main item
|
|
927
927
|
|
|
928
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
928
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
929
929
|
:type execution_context: int | str | None
|
|
930
930
|
:type undo: bool | None
|
|
931
931
|
:param direction: Direction, Move direction
|
|
@@ -933,31 +933,31 @@ def foreach_geometry_element_zone_main_item_move(
|
|
|
933
933
|
"""
|
|
934
934
|
|
|
935
935
|
def foreach_geometry_element_zone_main_item_remove(
|
|
936
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
936
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
937
937
|
execution_context: int | str | None = None,
|
|
938
938
|
undo: bool | None = None,
|
|
939
939
|
):
|
|
940
940
|
"""Remove active for-each main item
|
|
941
941
|
|
|
942
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
942
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
943
943
|
:type execution_context: int | str | None
|
|
944
944
|
:type undo: bool | None
|
|
945
945
|
"""
|
|
946
946
|
|
|
947
947
|
def gltf_settings_node_operator(
|
|
948
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
948
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
949
949
|
execution_context: int | str | None = None,
|
|
950
950
|
undo: bool | None = None,
|
|
951
951
|
):
|
|
952
952
|
"""Add a node to the active tree for glTF export
|
|
953
953
|
|
|
954
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
954
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
955
955
|
:type execution_context: int | str | None
|
|
956
956
|
:type undo: bool | None
|
|
957
957
|
"""
|
|
958
958
|
|
|
959
959
|
def group_edit(
|
|
960
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
960
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
961
961
|
execution_context: int | str | None = None,
|
|
962
962
|
undo: bool | None = None,
|
|
963
963
|
*,
|
|
@@ -965,7 +965,7 @@ def group_edit(
|
|
|
965
965
|
):
|
|
966
966
|
"""Edit node group
|
|
967
967
|
|
|
968
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
968
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
969
969
|
:type execution_context: int | str | None
|
|
970
970
|
:type undo: bool | None
|
|
971
971
|
:param exit: Exit
|
|
@@ -973,31 +973,31 @@ def group_edit(
|
|
|
973
973
|
"""
|
|
974
974
|
|
|
975
975
|
def group_insert(
|
|
976
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
976
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
977
977
|
execution_context: int | str | None = None,
|
|
978
978
|
undo: bool | None = None,
|
|
979
979
|
):
|
|
980
980
|
"""Insert selected nodes into a node group
|
|
981
981
|
|
|
982
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
982
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
983
983
|
:type execution_context: int | str | None
|
|
984
984
|
:type undo: bool | None
|
|
985
985
|
"""
|
|
986
986
|
|
|
987
987
|
def group_make(
|
|
988
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
988
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
989
989
|
execution_context: int | str | None = None,
|
|
990
990
|
undo: bool | None = None,
|
|
991
991
|
):
|
|
992
992
|
"""Make group from selected nodes
|
|
993
993
|
|
|
994
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
994
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
995
995
|
:type execution_context: int | str | None
|
|
996
996
|
:type undo: bool | None
|
|
997
997
|
"""
|
|
998
998
|
|
|
999
999
|
def group_separate(
|
|
1000
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1000
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1001
1001
|
execution_context: int | str | None = None,
|
|
1002
1002
|
undo: bool | None = None,
|
|
1003
1003
|
*,
|
|
@@ -1005,7 +1005,7 @@ def group_separate(
|
|
|
1005
1005
|
):
|
|
1006
1006
|
"""Separate selected nodes from the node group
|
|
1007
1007
|
|
|
1008
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1008
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1009
1009
|
:type execution_context: int | str | None
|
|
1010
1010
|
:type undo: bool | None
|
|
1011
1011
|
:param type: Type
|
|
@@ -1019,55 +1019,55 @@ def group_separate(
|
|
|
1019
1019
|
"""
|
|
1020
1020
|
|
|
1021
1021
|
def group_ungroup(
|
|
1022
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1022
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1023
1023
|
execution_context: int | str | None = None,
|
|
1024
1024
|
undo: bool | None = None,
|
|
1025
1025
|
):
|
|
1026
1026
|
"""Ungroup selected nodes
|
|
1027
1027
|
|
|
1028
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1028
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1029
1029
|
:type execution_context: int | str | None
|
|
1030
1030
|
:type undo: bool | None
|
|
1031
1031
|
"""
|
|
1032
1032
|
|
|
1033
1033
|
def hide_socket_toggle(
|
|
1034
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1034
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1035
1035
|
execution_context: int | str | None = None,
|
|
1036
1036
|
undo: bool | None = None,
|
|
1037
1037
|
):
|
|
1038
1038
|
"""Toggle unused node socket display
|
|
1039
1039
|
|
|
1040
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1040
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1041
1041
|
:type execution_context: int | str | None
|
|
1042
1042
|
:type undo: bool | None
|
|
1043
1043
|
"""
|
|
1044
1044
|
|
|
1045
1045
|
def hide_toggle(
|
|
1046
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1046
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1047
1047
|
execution_context: int | str | None = None,
|
|
1048
1048
|
undo: bool | None = None,
|
|
1049
1049
|
):
|
|
1050
1050
|
"""Toggle hiding of selected nodes
|
|
1051
1051
|
|
|
1052
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1052
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1053
1053
|
:type execution_context: int | str | None
|
|
1054
1054
|
:type undo: bool | None
|
|
1055
1055
|
"""
|
|
1056
1056
|
|
|
1057
1057
|
def index_switch_item_add(
|
|
1058
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1058
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1059
1059
|
execution_context: int | str | None = None,
|
|
1060
1060
|
undo: bool | None = None,
|
|
1061
1061
|
):
|
|
1062
1062
|
"""Add bake item
|
|
1063
1063
|
|
|
1064
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1064
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1065
1065
|
:type execution_context: int | str | None
|
|
1066
1066
|
:type undo: bool | None
|
|
1067
1067
|
"""
|
|
1068
1068
|
|
|
1069
1069
|
def index_switch_item_remove(
|
|
1070
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1070
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1071
1071
|
execution_context: int | str | None = None,
|
|
1072
1072
|
undo: bool | None = None,
|
|
1073
1073
|
*,
|
|
@@ -1075,7 +1075,7 @@ def index_switch_item_remove(
|
|
|
1075
1075
|
):
|
|
1076
1076
|
"""Remove an item from the index switch
|
|
1077
1077
|
|
|
1078
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1078
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1079
1079
|
:type execution_context: int | str | None
|
|
1080
1080
|
:type undo: bool | None
|
|
1081
1081
|
:param index: Index, Index to remove
|
|
@@ -1083,31 +1083,31 @@ def index_switch_item_remove(
|
|
|
1083
1083
|
"""
|
|
1084
1084
|
|
|
1085
1085
|
def insert_offset(
|
|
1086
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1086
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1087
1087
|
execution_context: int | str | None = None,
|
|
1088
1088
|
undo: bool | None = None,
|
|
1089
1089
|
):
|
|
1090
1090
|
"""Automatically offset nodes on insertion
|
|
1091
1091
|
|
|
1092
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1092
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1093
1093
|
:type execution_context: int | str | None
|
|
1094
1094
|
:type undo: bool | None
|
|
1095
1095
|
"""
|
|
1096
1096
|
|
|
1097
1097
|
def interface_item_duplicate(
|
|
1098
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1098
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1099
1099
|
execution_context: int | str | None = None,
|
|
1100
1100
|
undo: bool | None = None,
|
|
1101
1101
|
):
|
|
1102
1102
|
"""Add a copy of the active item to the interface
|
|
1103
1103
|
|
|
1104
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1104
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1105
1105
|
:type execution_context: int | str | None
|
|
1106
1106
|
:type undo: bool | None
|
|
1107
1107
|
"""
|
|
1108
1108
|
|
|
1109
1109
|
def interface_item_new(
|
|
1110
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1110
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1111
1111
|
execution_context: int | str | None = None,
|
|
1112
1112
|
undo: bool | None = None,
|
|
1113
1113
|
*,
|
|
@@ -1115,7 +1115,7 @@ def interface_item_new(
|
|
|
1115
1115
|
):
|
|
1116
1116
|
"""Add a new item to the interface
|
|
1117
1117
|
|
|
1118
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1118
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1119
1119
|
:type execution_context: int | str | None
|
|
1120
1120
|
:type undo: bool | None
|
|
1121
1121
|
:param item_type: Item Type, Type of the item to create
|
|
@@ -1123,31 +1123,31 @@ def interface_item_new(
|
|
|
1123
1123
|
"""
|
|
1124
1124
|
|
|
1125
1125
|
def interface_item_remove(
|
|
1126
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1126
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1127
1127
|
execution_context: int | str | None = None,
|
|
1128
1128
|
undo: bool | None = None,
|
|
1129
1129
|
):
|
|
1130
1130
|
"""Remove active item from the interface
|
|
1131
1131
|
|
|
1132
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1132
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1133
1133
|
:type execution_context: int | str | None
|
|
1134
1134
|
:type undo: bool | None
|
|
1135
1135
|
"""
|
|
1136
1136
|
|
|
1137
1137
|
def join(
|
|
1138
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1138
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1139
1139
|
execution_context: int | str | None = None,
|
|
1140
1140
|
undo: bool | None = None,
|
|
1141
1141
|
):
|
|
1142
1142
|
"""Attach selected nodes to a new common frame
|
|
1143
1143
|
|
|
1144
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1144
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1145
1145
|
:type execution_context: int | str | None
|
|
1146
1146
|
:type undo: bool | None
|
|
1147
1147
|
"""
|
|
1148
1148
|
|
|
1149
1149
|
def link(
|
|
1150
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1150
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1151
1151
|
execution_context: int | str | None = None,
|
|
1152
1152
|
undo: bool | None = None,
|
|
1153
1153
|
*,
|
|
@@ -1162,7 +1162,7 @@ def link(
|
|
|
1162
1162
|
):
|
|
1163
1163
|
"""Use the mouse to create a link between two nodes
|
|
1164
1164
|
|
|
1165
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1165
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1166
1166
|
:type execution_context: int | str | None
|
|
1167
1167
|
:type undo: bool | None
|
|
1168
1168
|
:param detach: Detach, Detach and redirect existing links
|
|
@@ -1184,7 +1184,7 @@ def link(
|
|
|
1184
1184
|
"""
|
|
1185
1185
|
|
|
1186
1186
|
def link_make(
|
|
1187
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1187
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1188
1188
|
execution_context: int | str | None = None,
|
|
1189
1189
|
undo: bool | None = None,
|
|
1190
1190
|
*,
|
|
@@ -1192,7 +1192,7 @@ def link_make(
|
|
|
1192
1192
|
):
|
|
1193
1193
|
"""Make a link between selected output and input sockets
|
|
1194
1194
|
|
|
1195
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1195
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1196
1196
|
:type execution_context: int | str | None
|
|
1197
1197
|
:type undo: bool | None
|
|
1198
1198
|
:param replace: Replace, Replace socket connections with the new links
|
|
@@ -1200,19 +1200,19 @@ def link_make(
|
|
|
1200
1200
|
"""
|
|
1201
1201
|
|
|
1202
1202
|
def link_viewer(
|
|
1203
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1203
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1204
1204
|
execution_context: int | str | None = None,
|
|
1205
1205
|
undo: bool | None = None,
|
|
1206
1206
|
):
|
|
1207
1207
|
"""Link to viewer node
|
|
1208
1208
|
|
|
1209
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1209
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1210
1210
|
:type execution_context: int | str | None
|
|
1211
1211
|
:type undo: bool | None
|
|
1212
1212
|
"""
|
|
1213
1213
|
|
|
1214
1214
|
def links_cut(
|
|
1215
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1215
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1216
1216
|
execution_context: int | str | None = None,
|
|
1217
1217
|
undo: bool | None = None,
|
|
1218
1218
|
*,
|
|
@@ -1221,7 +1221,7 @@ def links_cut(
|
|
|
1221
1221
|
):
|
|
1222
1222
|
"""Use the mouse to cut (remove) some links
|
|
1223
1223
|
|
|
1224
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1224
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1225
1225
|
:type execution_context: int | str | None
|
|
1226
1226
|
:type undo: bool | None
|
|
1227
1227
|
:param path: Path
|
|
@@ -1231,19 +1231,19 @@ def links_cut(
|
|
|
1231
1231
|
"""
|
|
1232
1232
|
|
|
1233
1233
|
def links_detach(
|
|
1234
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1234
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1235
1235
|
execution_context: int | str | None = None,
|
|
1236
1236
|
undo: bool | None = None,
|
|
1237
1237
|
):
|
|
1238
1238
|
"""Remove all links to selected nodes, and try to connect neighbor nodes together
|
|
1239
1239
|
|
|
1240
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1240
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1241
1241
|
:type execution_context: int | str | None
|
|
1242
1242
|
:type undo: bool | None
|
|
1243
1243
|
"""
|
|
1244
1244
|
|
|
1245
1245
|
def links_mute(
|
|
1246
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1246
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1247
1247
|
execution_context: int | str | None = None,
|
|
1248
1248
|
undo: bool | None = None,
|
|
1249
1249
|
*,
|
|
@@ -1252,7 +1252,7 @@ def links_mute(
|
|
|
1252
1252
|
):
|
|
1253
1253
|
"""Use the mouse to mute links
|
|
1254
1254
|
|
|
1255
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1255
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1256
1256
|
:type execution_context: int | str | None
|
|
1257
1257
|
:type undo: bool | None
|
|
1258
1258
|
:param path: Path
|
|
@@ -1262,7 +1262,7 @@ def links_mute(
|
|
|
1262
1262
|
"""
|
|
1263
1263
|
|
|
1264
1264
|
def move_detach_links(
|
|
1265
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1265
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1266
1266
|
execution_context: int | str | None = None,
|
|
1267
1267
|
undo: bool | None = None,
|
|
1268
1268
|
*,
|
|
@@ -1271,7 +1271,7 @@ def move_detach_links(
|
|
|
1271
1271
|
):
|
|
1272
1272
|
"""Move a node to detach links
|
|
1273
1273
|
|
|
1274
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1274
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1275
1275
|
:type execution_context: int | str | None
|
|
1276
1276
|
:type undo: bool | None
|
|
1277
1277
|
:param NODE_OT_links_detach: Detach Links, Remove all links to selected nodes, and try to connect neighbor nodes together
|
|
@@ -1281,7 +1281,7 @@ def move_detach_links(
|
|
|
1281
1281
|
"""
|
|
1282
1282
|
|
|
1283
1283
|
def move_detach_links_release(
|
|
1284
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1284
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1285
1285
|
execution_context: int | str | None = None,
|
|
1286
1286
|
undo: bool | None = None,
|
|
1287
1287
|
*,
|
|
@@ -1290,7 +1290,7 @@ def move_detach_links_release(
|
|
|
1290
1290
|
):
|
|
1291
1291
|
"""Move a node to detach links
|
|
1292
1292
|
|
|
1293
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1293
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1294
1294
|
:type execution_context: int | str | None
|
|
1295
1295
|
:type undo: bool | None
|
|
1296
1296
|
:param NODE_OT_links_detach: Detach Links, Remove all links to selected nodes, and try to connect neighbor nodes together
|
|
@@ -1300,55 +1300,55 @@ def move_detach_links_release(
|
|
|
1300
1300
|
"""
|
|
1301
1301
|
|
|
1302
1302
|
def mute_toggle(
|
|
1303
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1303
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1304
1304
|
execution_context: int | str | None = None,
|
|
1305
1305
|
undo: bool | None = None,
|
|
1306
1306
|
):
|
|
1307
1307
|
"""Toggle muting of selected nodes
|
|
1308
1308
|
|
|
1309
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1309
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1310
1310
|
:type execution_context: int | str | None
|
|
1311
1311
|
:type undo: bool | None
|
|
1312
1312
|
"""
|
|
1313
1313
|
|
|
1314
1314
|
def new_geometry_node_group_assign(
|
|
1315
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1315
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1316
1316
|
execution_context: int | str | None = None,
|
|
1317
1317
|
undo: bool | None = None,
|
|
1318
1318
|
):
|
|
1319
1319
|
"""Create a new geometry node group and assign it to the active modifier
|
|
1320
1320
|
|
|
1321
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1321
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1322
1322
|
:type execution_context: int | str | None
|
|
1323
1323
|
:type undo: bool | None
|
|
1324
1324
|
"""
|
|
1325
1325
|
|
|
1326
1326
|
def new_geometry_node_group_tool(
|
|
1327
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1327
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1328
1328
|
execution_context: int | str | None = None,
|
|
1329
1329
|
undo: bool | None = None,
|
|
1330
1330
|
):
|
|
1331
1331
|
"""Create a new geometry node group for a tool
|
|
1332
1332
|
|
|
1333
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1333
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1334
1334
|
:type execution_context: int | str | None
|
|
1335
1335
|
:type undo: bool | None
|
|
1336
1336
|
"""
|
|
1337
1337
|
|
|
1338
1338
|
def new_geometry_nodes_modifier(
|
|
1339
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1339
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1340
1340
|
execution_context: int | str | None = None,
|
|
1341
1341
|
undo: bool | None = None,
|
|
1342
1342
|
):
|
|
1343
1343
|
"""Create a new modifier with a new geometry node group
|
|
1344
1344
|
|
|
1345
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1345
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1346
1346
|
:type execution_context: int | str | None
|
|
1347
1347
|
:type undo: bool | None
|
|
1348
1348
|
"""
|
|
1349
1349
|
|
|
1350
1350
|
def new_node_tree(
|
|
1351
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1351
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1352
1352
|
execution_context: int | str | None = None,
|
|
1353
1353
|
undo: bool | None = None,
|
|
1354
1354
|
*,
|
|
@@ -1357,7 +1357,7 @@ def new_node_tree(
|
|
|
1357
1357
|
):
|
|
1358
1358
|
"""Create a new node tree
|
|
1359
1359
|
|
|
1360
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1360
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1361
1361
|
:type execution_context: int | str | None
|
|
1362
1362
|
:type undo: bool | None
|
|
1363
1363
|
:param type: Tree Type
|
|
@@ -1367,7 +1367,7 @@ def new_node_tree(
|
|
|
1367
1367
|
"""
|
|
1368
1368
|
|
|
1369
1369
|
def node_color_preset_add(
|
|
1370
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1370
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1371
1371
|
execution_context: int | str | None = None,
|
|
1372
1372
|
undo: bool | None = None,
|
|
1373
1373
|
*,
|
|
@@ -1377,7 +1377,7 @@ def node_color_preset_add(
|
|
|
1377
1377
|
):
|
|
1378
1378
|
"""Add or remove a Node Color Preset
|
|
1379
1379
|
|
|
1380
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1380
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1381
1381
|
:type execution_context: int | str | None
|
|
1382
1382
|
:type undo: bool | None
|
|
1383
1383
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -1389,31 +1389,31 @@ def node_color_preset_add(
|
|
|
1389
1389
|
"""
|
|
1390
1390
|
|
|
1391
1391
|
def node_copy_color(
|
|
1392
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1392
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1393
1393
|
execution_context: int | str | None = None,
|
|
1394
1394
|
undo: bool | None = None,
|
|
1395
1395
|
):
|
|
1396
1396
|
"""Copy color to all selected nodes
|
|
1397
1397
|
|
|
1398
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1398
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1399
1399
|
:type execution_context: int | str | None
|
|
1400
1400
|
:type undo: bool | None
|
|
1401
1401
|
"""
|
|
1402
1402
|
|
|
1403
1403
|
def options_toggle(
|
|
1404
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1404
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1405
1405
|
execution_context: int | str | None = None,
|
|
1406
1406
|
undo: bool | None = None,
|
|
1407
1407
|
):
|
|
1408
1408
|
"""Toggle option buttons display for selected nodes
|
|
1409
1409
|
|
|
1410
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1410
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1411
1411
|
:type execution_context: int | str | None
|
|
1412
1412
|
:type undo: bool | None
|
|
1413
1413
|
"""
|
|
1414
1414
|
|
|
1415
1415
|
def output_file_add_socket(
|
|
1416
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1416
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1417
1417
|
execution_context: int | str | None = None,
|
|
1418
1418
|
undo: bool | None = None,
|
|
1419
1419
|
*,
|
|
@@ -1421,7 +1421,7 @@ def output_file_add_socket(
|
|
|
1421
1421
|
):
|
|
1422
1422
|
"""Add a new input to a file output node
|
|
1423
1423
|
|
|
1424
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1424
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1425
1425
|
:type execution_context: int | str | None
|
|
1426
1426
|
:type undo: bool | None
|
|
1427
1427
|
:param file_path: File Path, Subpath of the output file
|
|
@@ -1429,7 +1429,7 @@ def output_file_add_socket(
|
|
|
1429
1429
|
"""
|
|
1430
1430
|
|
|
1431
1431
|
def output_file_move_active_socket(
|
|
1432
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1432
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1433
1433
|
execution_context: int | str | None = None,
|
|
1434
1434
|
undo: bool | None = None,
|
|
1435
1435
|
*,
|
|
@@ -1437,7 +1437,7 @@ def output_file_move_active_socket(
|
|
|
1437
1437
|
):
|
|
1438
1438
|
"""Move the active input of a file output node up or down the list
|
|
1439
1439
|
|
|
1440
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1440
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1441
1441
|
:type execution_context: int | str | None
|
|
1442
1442
|
:type undo: bool | None
|
|
1443
1443
|
:param direction: Direction
|
|
@@ -1445,79 +1445,79 @@ def output_file_move_active_socket(
|
|
|
1445
1445
|
"""
|
|
1446
1446
|
|
|
1447
1447
|
def output_file_remove_active_socket(
|
|
1448
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1448
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1449
1449
|
execution_context: int | str | None = None,
|
|
1450
1450
|
undo: bool | None = None,
|
|
1451
1451
|
):
|
|
1452
1452
|
"""Remove the active input from a file output node
|
|
1453
1453
|
|
|
1454
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1454
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1455
1455
|
:type execution_context: int | str | None
|
|
1456
1456
|
:type undo: bool | None
|
|
1457
1457
|
"""
|
|
1458
1458
|
|
|
1459
1459
|
def parent_set(
|
|
1460
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1460
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1461
1461
|
execution_context: int | str | None = None,
|
|
1462
1462
|
undo: bool | None = None,
|
|
1463
1463
|
):
|
|
1464
1464
|
"""Attach selected nodes
|
|
1465
1465
|
|
|
1466
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1466
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1467
1467
|
:type execution_context: int | str | None
|
|
1468
1468
|
:type undo: bool | None
|
|
1469
1469
|
"""
|
|
1470
1470
|
|
|
1471
1471
|
def preview_toggle(
|
|
1472
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1472
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1473
1473
|
execution_context: int | str | None = None,
|
|
1474
1474
|
undo: bool | None = None,
|
|
1475
1475
|
):
|
|
1476
1476
|
"""Toggle preview display for selected nodes
|
|
1477
1477
|
|
|
1478
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1478
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1479
1479
|
:type execution_context: int | str | None
|
|
1480
1480
|
:type undo: bool | None
|
|
1481
1481
|
"""
|
|
1482
1482
|
|
|
1483
1483
|
def read_viewlayers(
|
|
1484
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1484
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1485
1485
|
execution_context: int | str | None = None,
|
|
1486
1486
|
undo: bool | None = None,
|
|
1487
1487
|
):
|
|
1488
1488
|
"""Read all render layers of all used scenes
|
|
1489
1489
|
|
|
1490
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1490
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1491
1491
|
:type execution_context: int | str | None
|
|
1492
1492
|
:type undo: bool | None
|
|
1493
1493
|
"""
|
|
1494
1494
|
|
|
1495
1495
|
def render_changed(
|
|
1496
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1496
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1497
1497
|
execution_context: int | str | None = None,
|
|
1498
1498
|
undo: bool | None = None,
|
|
1499
1499
|
):
|
|
1500
1500
|
"""Render current scene, when input node's layer has been changed
|
|
1501
1501
|
|
|
1502
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1502
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1503
1503
|
:type execution_context: int | str | None
|
|
1504
1504
|
:type undo: bool | None
|
|
1505
1505
|
"""
|
|
1506
1506
|
|
|
1507
1507
|
def repeat_zone_item_add(
|
|
1508
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1508
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1509
1509
|
execution_context: int | str | None = None,
|
|
1510
1510
|
undo: bool | None = None,
|
|
1511
1511
|
):
|
|
1512
1512
|
"""Add repeat zone item
|
|
1513
1513
|
|
|
1514
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1514
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1515
1515
|
:type execution_context: int | str | None
|
|
1516
1516
|
:type undo: bool | None
|
|
1517
1517
|
"""
|
|
1518
1518
|
|
|
1519
1519
|
def repeat_zone_item_move(
|
|
1520
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1520
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1521
1521
|
execution_context: int | str | None = None,
|
|
1522
1522
|
undo: bool | None = None,
|
|
1523
1523
|
*,
|
|
@@ -1525,7 +1525,7 @@ def repeat_zone_item_move(
|
|
|
1525
1525
|
):
|
|
1526
1526
|
"""Move active repeat zone item
|
|
1527
1527
|
|
|
1528
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1528
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1529
1529
|
:type execution_context: int | str | None
|
|
1530
1530
|
:type undo: bool | None
|
|
1531
1531
|
:param direction: Direction, Move direction
|
|
@@ -1533,31 +1533,31 @@ def repeat_zone_item_move(
|
|
|
1533
1533
|
"""
|
|
1534
1534
|
|
|
1535
1535
|
def repeat_zone_item_remove(
|
|
1536
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1536
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1537
1537
|
execution_context: int | str | None = None,
|
|
1538
1538
|
undo: bool | None = None,
|
|
1539
1539
|
):
|
|
1540
1540
|
"""Remove active repeat zone item
|
|
1541
1541
|
|
|
1542
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1542
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1543
1543
|
:type execution_context: int | str | None
|
|
1544
1544
|
:type undo: bool | None
|
|
1545
1545
|
"""
|
|
1546
1546
|
|
|
1547
1547
|
def resize(
|
|
1548
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1548
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1549
1549
|
execution_context: int | str | None = None,
|
|
1550
1550
|
undo: bool | None = None,
|
|
1551
1551
|
):
|
|
1552
1552
|
"""Resize a node
|
|
1553
1553
|
|
|
1554
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1554
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1555
1555
|
:type execution_context: int | str | None
|
|
1556
1556
|
:type undo: bool | None
|
|
1557
1557
|
"""
|
|
1558
1558
|
|
|
1559
1559
|
def select(
|
|
1560
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1560
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1561
1561
|
execution_context: int | str | None = None,
|
|
1562
1562
|
undo: bool | None = None,
|
|
1563
1563
|
*,
|
|
@@ -1572,7 +1572,7 @@ def select(
|
|
|
1572
1572
|
):
|
|
1573
1573
|
"""Select the node under the cursor
|
|
1574
1574
|
|
|
1575
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1575
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1576
1576
|
:type execution_context: int | str | None
|
|
1577
1577
|
:type undo: bool | None
|
|
1578
1578
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -1594,7 +1594,7 @@ def select(
|
|
|
1594
1594
|
"""
|
|
1595
1595
|
|
|
1596
1596
|
def select_all(
|
|
1597
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1597
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1598
1598
|
execution_context: int | str | None = None,
|
|
1599
1599
|
undo: bool | None = None,
|
|
1600
1600
|
*,
|
|
@@ -1602,7 +1602,7 @@ def select_all(
|
|
|
1602
1602
|
):
|
|
1603
1603
|
"""(De)select all nodes
|
|
1604
1604
|
|
|
1605
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1605
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1606
1606
|
:type execution_context: int | str | None
|
|
1607
1607
|
:type undo: bool | None
|
|
1608
1608
|
:param action: Action, Selection action to execute
|
|
@@ -1622,7 +1622,7 @@ def select_all(
|
|
|
1622
1622
|
"""
|
|
1623
1623
|
|
|
1624
1624
|
def select_box(
|
|
1625
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1625
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1626
1626
|
execution_context: int | str | None = None,
|
|
1627
1627
|
undo: bool | None = None,
|
|
1628
1628
|
*,
|
|
@@ -1636,7 +1636,7 @@ def select_box(
|
|
|
1636
1636
|
):
|
|
1637
1637
|
"""Use box selection to select nodes
|
|
1638
1638
|
|
|
1639
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1639
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1640
1640
|
:type execution_context: int | str | None
|
|
1641
1641
|
:type undo: bool | None
|
|
1642
1642
|
:param tweak: Tweak, Only activate when mouse is not over a node (useful for tweak gesture)
|
|
@@ -1665,7 +1665,7 @@ def select_box(
|
|
|
1665
1665
|
"""
|
|
1666
1666
|
|
|
1667
1667
|
def select_circle(
|
|
1668
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1668
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1669
1669
|
execution_context: int | str | None = None,
|
|
1670
1670
|
undo: bool | None = None,
|
|
1671
1671
|
*,
|
|
@@ -1677,7 +1677,7 @@ def select_circle(
|
|
|
1677
1677
|
):
|
|
1678
1678
|
"""Use circle selection to select nodes
|
|
1679
1679
|
|
|
1680
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1680
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1681
1681
|
:type execution_context: int | str | None
|
|
1682
1682
|
:type undo: bool | None
|
|
1683
1683
|
:param x: X
|
|
@@ -1702,7 +1702,7 @@ def select_circle(
|
|
|
1702
1702
|
"""
|
|
1703
1703
|
|
|
1704
1704
|
def select_grouped(
|
|
1705
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1705
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1706
1706
|
execution_context: int | str | None = None,
|
|
1707
1707
|
undo: bool | None = None,
|
|
1708
1708
|
*,
|
|
@@ -1711,7 +1711,7 @@ def select_grouped(
|
|
|
1711
1711
|
):
|
|
1712
1712
|
"""Select nodes with similar properties
|
|
1713
1713
|
|
|
1714
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1714
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1715
1715
|
:type execution_context: int | str | None
|
|
1716
1716
|
:type undo: bool | None
|
|
1717
1717
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -1721,7 +1721,7 @@ def select_grouped(
|
|
|
1721
1721
|
"""
|
|
1722
1722
|
|
|
1723
1723
|
def select_lasso(
|
|
1724
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1724
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1725
1725
|
execution_context: int | str | None = None,
|
|
1726
1726
|
undo: bool | None = None,
|
|
1727
1727
|
*,
|
|
@@ -1734,7 +1734,7 @@ def select_lasso(
|
|
|
1734
1734
|
):
|
|
1735
1735
|
"""Select nodes using lasso selection
|
|
1736
1736
|
|
|
1737
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1737
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1738
1738
|
:type execution_context: int | str | None
|
|
1739
1739
|
:type undo: bool | None
|
|
1740
1740
|
:param tweak: Tweak, Only activate when mouse is not over a node (useful for tweak gesture)
|
|
@@ -1761,7 +1761,7 @@ def select_lasso(
|
|
|
1761
1761
|
"""
|
|
1762
1762
|
|
|
1763
1763
|
def select_link_viewer(
|
|
1764
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1764
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1765
1765
|
execution_context: int | str | None = None,
|
|
1766
1766
|
undo: bool | None = None,
|
|
1767
1767
|
*,
|
|
@@ -1770,7 +1770,7 @@ def select_link_viewer(
|
|
|
1770
1770
|
):
|
|
1771
1771
|
"""Select node and link it to a viewer node
|
|
1772
1772
|
|
|
1773
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1773
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1774
1774
|
:type execution_context: int | str | None
|
|
1775
1775
|
:type undo: bool | None
|
|
1776
1776
|
:param NODE_OT_select: Select, Select the node under the cursor
|
|
@@ -1780,31 +1780,31 @@ def select_link_viewer(
|
|
|
1780
1780
|
"""
|
|
1781
1781
|
|
|
1782
1782
|
def select_linked_from(
|
|
1783
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1783
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1784
1784
|
execution_context: int | str | None = None,
|
|
1785
1785
|
undo: bool | None = None,
|
|
1786
1786
|
):
|
|
1787
1787
|
"""Select nodes linked from the selected ones
|
|
1788
1788
|
|
|
1789
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1789
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1790
1790
|
:type execution_context: int | str | None
|
|
1791
1791
|
:type undo: bool | None
|
|
1792
1792
|
"""
|
|
1793
1793
|
|
|
1794
1794
|
def select_linked_to(
|
|
1795
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1795
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1796
1796
|
execution_context: int | str | None = None,
|
|
1797
1797
|
undo: bool | None = None,
|
|
1798
1798
|
):
|
|
1799
1799
|
"""Select nodes linked to the selected ones
|
|
1800
1800
|
|
|
1801
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1801
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1802
1802
|
:type execution_context: int | str | None
|
|
1803
1803
|
:type undo: bool | None
|
|
1804
1804
|
"""
|
|
1805
1805
|
|
|
1806
1806
|
def select_same_type_step(
|
|
1807
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1807
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1808
1808
|
execution_context: int | str | None = None,
|
|
1809
1809
|
undo: bool | None = None,
|
|
1810
1810
|
*,
|
|
@@ -1812,7 +1812,7 @@ def select_same_type_step(
|
|
|
1812
1812
|
):
|
|
1813
1813
|
"""Activate and view same node type, step by step
|
|
1814
1814
|
|
|
1815
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1815
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1816
1816
|
:type execution_context: int | str | None
|
|
1817
1817
|
:type undo: bool | None
|
|
1818
1818
|
:param prev: Previous
|
|
@@ -1820,31 +1820,31 @@ def select_same_type_step(
|
|
|
1820
1820
|
"""
|
|
1821
1821
|
|
|
1822
1822
|
def shader_script_update(
|
|
1823
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1823
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1824
1824
|
execution_context: int | str | None = None,
|
|
1825
1825
|
undo: bool | None = None,
|
|
1826
1826
|
):
|
|
1827
1827
|
"""Update shader script node with new sockets and options from the script
|
|
1828
1828
|
|
|
1829
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1829
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1830
1830
|
:type execution_context: int | str | None
|
|
1831
1831
|
:type undo: bool | None
|
|
1832
1832
|
"""
|
|
1833
1833
|
|
|
1834
1834
|
def simulation_zone_item_add(
|
|
1835
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1835
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1836
1836
|
execution_context: int | str | None = None,
|
|
1837
1837
|
undo: bool | None = None,
|
|
1838
1838
|
):
|
|
1839
1839
|
"""Add simulation zone item
|
|
1840
1840
|
|
|
1841
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1841
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1842
1842
|
:type execution_context: int | str | None
|
|
1843
1843
|
:type undo: bool | None
|
|
1844
1844
|
"""
|
|
1845
1845
|
|
|
1846
1846
|
def simulation_zone_item_move(
|
|
1847
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1847
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1848
1848
|
execution_context: int | str | None = None,
|
|
1849
1849
|
undo: bool | None = None,
|
|
1850
1850
|
*,
|
|
@@ -1852,7 +1852,7 @@ def simulation_zone_item_move(
|
|
|
1852
1852
|
):
|
|
1853
1853
|
"""Move active simulation zone item
|
|
1854
1854
|
|
|
1855
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1855
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1856
1856
|
:type execution_context: int | str | None
|
|
1857
1857
|
:type undo: bool | None
|
|
1858
1858
|
:param direction: Direction, Move direction
|
|
@@ -1860,19 +1860,19 @@ def simulation_zone_item_move(
|
|
|
1860
1860
|
"""
|
|
1861
1861
|
|
|
1862
1862
|
def simulation_zone_item_remove(
|
|
1863
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1863
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1864
1864
|
execution_context: int | str | None = None,
|
|
1865
1865
|
undo: bool | None = None,
|
|
1866
1866
|
):
|
|
1867
1867
|
"""Remove active simulation zone item
|
|
1868
1868
|
|
|
1869
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1869
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1870
1870
|
:type execution_context: int | str | None
|
|
1871
1871
|
:type undo: bool | None
|
|
1872
1872
|
"""
|
|
1873
1873
|
|
|
1874
1874
|
def translate_attach(
|
|
1875
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1875
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1876
1876
|
execution_context: int | str | None = None,
|
|
1877
1877
|
undo: bool | None = None,
|
|
1878
1878
|
*,
|
|
@@ -1881,7 +1881,7 @@ def translate_attach(
|
|
|
1881
1881
|
):
|
|
1882
1882
|
"""Move nodes and attach to frame
|
|
1883
1883
|
|
|
1884
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1884
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1885
1885
|
:type execution_context: int | str | None
|
|
1886
1886
|
:type undo: bool | None
|
|
1887
1887
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
@@ -1891,7 +1891,7 @@ def translate_attach(
|
|
|
1891
1891
|
"""
|
|
1892
1892
|
|
|
1893
1893
|
def translate_attach_remove_on_cancel(
|
|
1894
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1894
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1895
1895
|
execution_context: int | str | None = None,
|
|
1896
1896
|
undo: bool | None = None,
|
|
1897
1897
|
*,
|
|
@@ -1900,7 +1900,7 @@ def translate_attach_remove_on_cancel(
|
|
|
1900
1900
|
):
|
|
1901
1901
|
"""Move nodes and attach to frame
|
|
1902
1902
|
|
|
1903
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1903
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1904
1904
|
:type execution_context: int | str | None
|
|
1905
1905
|
:type undo: bool | None
|
|
1906
1906
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
@@ -1910,43 +1910,43 @@ def translate_attach_remove_on_cancel(
|
|
|
1910
1910
|
"""
|
|
1911
1911
|
|
|
1912
1912
|
def tree_path_parent(
|
|
1913
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1913
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1914
1914
|
execution_context: int | str | None = None,
|
|
1915
1915
|
undo: bool | None = None,
|
|
1916
1916
|
):
|
|
1917
1917
|
"""Go to parent node tree
|
|
1918
1918
|
|
|
1919
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1919
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1920
1920
|
:type execution_context: int | str | None
|
|
1921
1921
|
:type undo: bool | None
|
|
1922
1922
|
"""
|
|
1923
1923
|
|
|
1924
1924
|
def view_all(
|
|
1925
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1925
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1926
1926
|
execution_context: int | str | None = None,
|
|
1927
1927
|
undo: bool | None = None,
|
|
1928
1928
|
):
|
|
1929
1929
|
"""Resize view so you can see all nodes
|
|
1930
1930
|
|
|
1931
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1931
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1932
1932
|
:type execution_context: int | str | None
|
|
1933
1933
|
:type undo: bool | None
|
|
1934
1934
|
"""
|
|
1935
1935
|
|
|
1936
1936
|
def view_selected(
|
|
1937
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1937
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1938
1938
|
execution_context: int | str | None = None,
|
|
1939
1939
|
undo: bool | None = None,
|
|
1940
1940
|
):
|
|
1941
1941
|
"""Resize view so you can see selected nodes
|
|
1942
1942
|
|
|
1943
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1943
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1944
1944
|
:type execution_context: int | str | None
|
|
1945
1945
|
:type undo: bool | None
|
|
1946
1946
|
"""
|
|
1947
1947
|
|
|
1948
1948
|
def viewer_border(
|
|
1949
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1949
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1950
1950
|
execution_context: int | str | None = None,
|
|
1951
1951
|
undo: bool | None = None,
|
|
1952
1952
|
*,
|
|
@@ -1958,7 +1958,7 @@ def viewer_border(
|
|
|
1958
1958
|
):
|
|
1959
1959
|
"""Set the boundaries for viewer operations
|
|
1960
1960
|
|
|
1961
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1961
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1962
1962
|
:type execution_context: int | str | None
|
|
1963
1963
|
:type undo: bool | None
|
|
1964
1964
|
:param xmin: X Min
|