fake-bge-module 20250104__py3-none-any.whl → 20250201__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- addon_utils/__init__.pyi +11 -6
- aud/__init__.pyi +4 -0
- bge/types/__init__.pyi +66 -27
- bgl/__init__.pyi +2 -2
- bgui/image/__init__.pyi +3 -1
- bgui/system/__init__.pyi +12 -4
- bl_console_utils/autocomplete/complete_calltip/__init__.pyi +5 -2
- bl_console_utils/autocomplete/complete_import/__init__.pyi +6 -3
- bl_console_utils/autocomplete/complete_namespace/__init__.pyi +2 -1
- bl_console_utils/autocomplete/intellisense/__init__.pyi +8 -2
- bl_operators/node/__init__.pyi +78 -0
- bl_ui/anim/__init__.pyi +6 -0
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/node_add_menu_shader/__init__.pyi +0 -1
- bl_ui/node_add_menu_texture/__init__.pyi +1 -0
- bl_ui/properties_data_camera/__init__.pyi +0 -2
- bl_ui/properties_mask_common/__init__.pyi +17 -0
- bl_ui/properties_material_gpencil/__init__.pyi +29 -0
- bl_ui/properties_scene/__init__.pyi +6 -0
- bl_ui/properties_view_layer/__init__.pyi +1 -0
- bl_ui/space_clip/__init__.pyi +53 -0
- bl_ui/space_graph/__init__.pyi +2 -0
- bl_ui/space_image/__init__.pyi +25 -0
- bl_ui/space_node/__init__.pyi +0 -1
- bl_ui/space_sequencer/__init__.pyi +2 -1
- blf/__init__.pyi +6 -3
- bmesh/ops/__init__.pyi +111 -54
- bmesh/types/__init__.pyi +134 -46
- bmesh/utils/__init__.pyi +17 -5
- bpy/__init__.pyi +1 -2
- bpy/_typing/__init__.pyi +4 -0
- bpy/{typing → _typing/rna_enums}/__init__.pyi +36 -36
- bpy/app/__init__.pyi +13 -5
- bpy/app/handlers/__init__.pyi +4 -2
- bpy/app/icons/__init__.pyi +6 -2
- bpy/app/translations/__init__.pyi +17 -8
- bpy/msgbus/__init__.pyi +14 -2
- bpy/ops/action/__init__.pyi +51 -151
- bpy/ops/anim/__init__.pyi +61 -179
- bpy/ops/armature/__init__.pyi +48 -147
- bpy/ops/asset/__init__.pyi +16 -71
- bpy/ops/boid/__init__.pyi +11 -44
- bpy/ops/brush/__init__.pyi +16 -42
- bpy/ops/buttons/__init__.pyi +6 -29
- bpy/ops/cachefile/__init__.pyi +5 -19
- bpy/ops/camera/__init__.pyi +2 -5
- bpy/ops/clip/__init__.pyi +95 -293
- bpy/ops/cloth/__init__.pyi +1 -3
- bpy/ops/collection/__init__.pyi +10 -26
- bpy/ops/console/__init__.pyi +21 -79
- bpy/ops/constraint/__init__.pyi +18 -45
- bpy/ops/curve/__init__.pyi +57 -186
- bpy/ops/curves/__init__.pyi +37 -109
- bpy/ops/cycles/__init__.pyi +3 -9
- bpy/ops/dpaint/__init__.pyi +8 -22
- bpy/ops/ed/__init__.pyi +20 -52
- bpy/ops/export_anim/__init__.pyi +1 -3
- bpy/ops/export_scene/__init__.pyi +55 -32
- bpy/ops/extensions/__init__.pyi +34 -110
- bpy/ops/file/__init__.pyi +40 -167
- bpy/ops/fluid/__init__.pyi +14 -77
- bpy/ops/font/__init__.pyi +23 -85
- bpy/ops/geometry/__init__.pyi +29 -46
- bpy/ops/gizmogroup/__init__.pyi +2 -9
- bpy/ops/gpencil/__init__.pyi +8 -32
- bpy/ops/graph/__init__.pyi +82 -201
- bpy/ops/grease_pencil/__init__.pyi +125 -324
- bpy/ops/image/__init__.pyi +61 -163
- bpy/ops/import_anim/__init__.pyi +1 -3
- bpy/ops/import_curve/__init__.pyi +1 -3
- bpy/ops/import_scene/__init__.pyi +4 -6
- bpy/ops/info/__init__.pyi +7 -29
- bpy/ops/lattice/__init__.pyi +11 -32
- bpy/ops/logic/__init__.pyi +26 -65
- bpy/ops/marker/__init__.pyi +11 -31
- bpy/ops/mask/__init__.pyi +39 -132
- bpy/ops/material/__init__.pyi +3 -19
- bpy/ops/mball/__init__.pyi +8 -19
- bpy/ops/mesh/__init__.pyi +223 -470
- bpy/ops/nla/__init__.pyi +42 -150
- bpy/ops/node/__init__.pyi +169 -393
- bpy/ops/object/__init__.pyi +320 -749
- bpy/ops/outliner/__init__.pyi +76 -268
- bpy/ops/paint/__init__.pyi +67 -147
- bpy/ops/paintcurve/__init__.pyi +8 -33
- bpy/ops/palette/__init__.pyi +7 -27
- bpy/ops/particle/__init__.pyi +39 -134
- bpy/ops/pose/__init__.pyi +64 -182
- bpy/ops/poselib/__init__.pyi +9 -33
- bpy/ops/preferences/__init__.pyi +35 -94
- bpy/ops/ptcache/__init__.pyi +7 -33
- bpy/ops/render/__init__.pyi +13 -37
- bpy/ops/rigidbody/__init__.pyi +22 -54
- bpy/ops/scene/__init__.pyi +47 -130
- bpy/ops/screen/__init__.pyi +46 -144
- bpy/ops/script/__init__.pyi +3 -11
- bpy/ops/sculpt/__init__.pyi +40 -94
- bpy/ops/sculpt_curves/__init__.pyi +4 -10
- bpy/ops/sequencer/__init__.pyi +104 -327
- bpy/ops/sound/__init__.pyi +17 -28
- bpy/ops/spreadsheet/__init__.pyi +4 -15
- bpy/ops/surface/__init__.pyi +6 -13
- bpy/ops/text/__init__.pyi +43 -175
- bpy/ops/text_editor/__init__.pyi +1 -3
- bpy/ops/texture/__init__.pyi +4 -21
- bpy/ops/transform/__init__.pyi +114 -134
- bpy/ops/ui/__init__.pyi +39 -120
- bpy/ops/uilist/__init__.pyi +3 -7
- bpy/ops/uv/__init__.pyi +58 -143
- bpy/ops/view2d/__init__.pyi +14 -39
- bpy/ops/view3d/__init__.pyi +68 -238
- bpy/ops/wm/__init__.pyi +178 -319
- bpy/ops/workspace/__init__.pyi +7 -33
- bpy/ops/world/__init__.pyi +2 -11
- bpy/path/__init__.pyi +16 -6
- bpy/props/__init__.pyi +157 -127
- bpy/types/__init__.pyi +35227 -34838
- bpy/utils/__init__.pyi +71 -25
- bpy/utils/previews/__init__.pyi +2 -1
- bpy/utils/units/__init__.pyi +2 -1
- bpy_extras/anim_utils/__init__.pyi +11 -3
- bpy_extras/bmesh_utils/__init__.pyi +2 -1
- bpy_extras/image_utils/__init__.pyi +5 -2
- bpy_extras/io_utils/__init__.pyi +12 -5
- bpy_extras/mesh_utils/__init__.pyi +27 -6
- bpy_extras/object_utils/__init__.pyi +6 -5
- bpy_extras/view3d_utils/__init__.pyi +9 -2
- {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/METADATA +3 -3
- {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/RECORD +153 -152
- {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/WHEEL +1 -1
- freestyle/chainingiterators/__init__.pyi +7 -2
- freestyle/functions/__init__.pyi +16 -4
- freestyle/shaders/__init__.pyi +5 -1
- freestyle/types/__init__.pyi +103 -30
- freestyle/utils/ContextFunctions/__init__.pyi +2 -2
- freestyle/utils/__init__.pyi +2 -1
- gpu/capabilities/__init__.pyi +2 -1
- gpu/matrix/__init__.pyi +4 -2
- gpu/state/__init__.pyi +2 -2
- gpu/types/__init__.pyi +40 -8
- gpu_extras/batch/__init__.pyi +13 -1
- gpu_extras/presets/__init__.pyi +10 -1
- idprop/types/__init__.pyi +4 -2
- imbuf/__init__.pyi +6 -3
- imbuf/types/__init__.pyi +5 -2
- mathutils/__init__.pyi +126 -35
- mathutils/bvhtree/__init__.pyi +21 -6
- mathutils/geometry/__init__.pyi +68 -22
- mathutils/interpolate/__init__.pyi +5 -1
- mathutils/kdtree/__init__.pyi +21 -8
- mathutils/noise/__init__.pyi +2 -1
- rna_info/__init__.pyi +2 -1
- {fake_bge_module-20250104.dist-info → fake_bge_module-20250201.dist-info}/top_level.txt +0 -0
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -2,21 +2,20 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bl_operators.node
|
|
5
|
+
import bpy._typing.rna_enums
|
|
5
6
|
import bpy.ops.transform
|
|
6
7
|
import bpy.types
|
|
7
|
-
import bpy.typing
|
|
8
8
|
|
|
9
9
|
def add_collection(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
11
10
|
execution_context: int | str | None = None,
|
|
12
11
|
undo: bool | None = None,
|
|
12
|
+
/,
|
|
13
13
|
*,
|
|
14
14
|
name: str = "",
|
|
15
15
|
session_uid: int | None = 0,
|
|
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] | None
|
|
20
19
|
:type execution_context: int | str | None
|
|
21
20
|
:type undo: bool | None
|
|
22
21
|
:param name: Name, Name of the data-block to use by the operator
|
|
@@ -25,10 +24,31 @@ def add_collection(
|
|
|
25
24
|
:type session_uid: int | None
|
|
26
25
|
"""
|
|
27
26
|
|
|
27
|
+
def add_color(
|
|
28
|
+
execution_context: int | str | None = None,
|
|
29
|
+
undo: bool | None = None,
|
|
30
|
+
/,
|
|
31
|
+
*,
|
|
32
|
+
color: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0, 0.0),
|
|
33
|
+
gamma: bool | None = False,
|
|
34
|
+
has_alpha: bool | None = False,
|
|
35
|
+
):
|
|
36
|
+
"""Add a color node to the current node editor
|
|
37
|
+
|
|
38
|
+
:type execution_context: int | str | None
|
|
39
|
+
:type undo: bool | None
|
|
40
|
+
:param color: Color, Source color
|
|
41
|
+
:type color: collections.abc.Iterable[float] | None
|
|
42
|
+
:param gamma: Gamma Corrected, The source color is gamma corrected
|
|
43
|
+
:type gamma: bool | None
|
|
44
|
+
:param has_alpha: Has Alpha, The source color contains an Alpha component
|
|
45
|
+
:type has_alpha: bool | None
|
|
46
|
+
"""
|
|
47
|
+
|
|
28
48
|
def add_file(
|
|
29
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
30
49
|
execution_context: int | str | None = None,
|
|
31
50
|
undo: bool | None = None,
|
|
51
|
+
/,
|
|
32
52
|
*,
|
|
33
53
|
filepath: str = "",
|
|
34
54
|
directory: str = "",
|
|
@@ -75,7 +95,6 @@ def add_file(
|
|
|
75
95
|
):
|
|
76
96
|
"""Add a file node to the current node editor
|
|
77
97
|
|
|
78
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
79
98
|
:type execution_context: int | str | None
|
|
80
99
|
:type undo: bool | None
|
|
81
100
|
:param filepath: File Path, Path to file
|
|
@@ -171,9 +190,9 @@ def add_file(
|
|
|
171
190
|
"""
|
|
172
191
|
|
|
173
192
|
def add_foreach_geometry_element_zone(
|
|
174
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
175
193
|
execution_context: int | str | None = None,
|
|
176
194
|
undo: bool | None = None,
|
|
195
|
+
/,
|
|
177
196
|
*,
|
|
178
197
|
use_transform: bool | None = False,
|
|
179
198
|
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
@@ -182,7 +201,6 @@ def add_foreach_geometry_element_zone(
|
|
|
182
201
|
):
|
|
183
202
|
"""Add a For Each Geometry Element zone that allows executing nodes e.g. for each vertex separately
|
|
184
203
|
|
|
185
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
186
204
|
:type execution_context: int | str | None
|
|
187
205
|
:type undo: bool | None
|
|
188
206
|
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
@@ -194,9 +212,9 @@ def add_foreach_geometry_element_zone(
|
|
|
194
212
|
"""
|
|
195
213
|
|
|
196
214
|
def add_group(
|
|
197
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
198
215
|
execution_context: int | str | None = None,
|
|
199
216
|
undo: bool | None = None,
|
|
217
|
+
/,
|
|
200
218
|
*,
|
|
201
219
|
name: str = "",
|
|
202
220
|
session_uid: int | None = 0,
|
|
@@ -204,7 +222,6 @@ def add_group(
|
|
|
204
222
|
):
|
|
205
223
|
"""Add an existing node group to the current node editor
|
|
206
224
|
|
|
207
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
208
225
|
:type execution_context: int | str | None
|
|
209
226
|
:type undo: bool | None
|
|
210
227
|
:param name: Name, Name of the data-block to use by the operator
|
|
@@ -216,21 +233,20 @@ def add_group(
|
|
|
216
233
|
"""
|
|
217
234
|
|
|
218
235
|
def add_group_asset(
|
|
219
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
220
236
|
execution_context: int | str | None = None,
|
|
221
237
|
undo: bool | None = None,
|
|
238
|
+
/,
|
|
222
239
|
*,
|
|
223
|
-
asset_library_type: bpy.
|
|
240
|
+
asset_library_type: bpy._typing.rna_enums.AssetLibraryTypeItems | None = "LOCAL",
|
|
224
241
|
asset_library_identifier: str = "",
|
|
225
242
|
relative_asset_identifier: str = "",
|
|
226
243
|
):
|
|
227
244
|
"""Add a node group asset to the active node tree
|
|
228
245
|
|
|
229
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
230
246
|
:type execution_context: int | str | None
|
|
231
247
|
:type undo: bool | None
|
|
232
248
|
:param asset_library_type: Asset Library Type
|
|
233
|
-
:type asset_library_type: bpy.
|
|
249
|
+
:type asset_library_type: bpy._typing.rna_enums.AssetLibraryTypeItems | None
|
|
234
250
|
:param asset_library_identifier: Asset Library Identifier
|
|
235
251
|
:type asset_library_identifier: str
|
|
236
252
|
:param relative_asset_identifier: Relative Asset Identifier
|
|
@@ -238,16 +254,15 @@ def add_group_asset(
|
|
|
238
254
|
"""
|
|
239
255
|
|
|
240
256
|
def add_mask(
|
|
241
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
242
257
|
execution_context: int | str | None = None,
|
|
243
258
|
undo: bool | None = None,
|
|
259
|
+
/,
|
|
244
260
|
*,
|
|
245
261
|
name: str = "",
|
|
246
262
|
session_uid: int | None = 0,
|
|
247
263
|
):
|
|
248
264
|
"""Add a mask node to the current node editor
|
|
249
265
|
|
|
250
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
251
266
|
:type execution_context: int | str | None
|
|
252
267
|
:type undo: bool | None
|
|
253
268
|
:param name: Name, Name of the data-block to use by the operator
|
|
@@ -257,16 +272,15 @@ def add_mask(
|
|
|
257
272
|
"""
|
|
258
273
|
|
|
259
274
|
def add_material(
|
|
260
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
261
275
|
execution_context: int | str | None = None,
|
|
262
276
|
undo: bool | None = None,
|
|
277
|
+
/,
|
|
263
278
|
*,
|
|
264
279
|
name: str = "",
|
|
265
280
|
session_uid: int | None = 0,
|
|
266
281
|
):
|
|
267
282
|
"""Add a material node to the current node editor
|
|
268
283
|
|
|
269
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
270
284
|
:type execution_context: int | str | None
|
|
271
285
|
:type undo: bool | None
|
|
272
286
|
:param name: Name, Name of the data-block to use by the operator
|
|
@@ -276,9 +290,9 @@ def add_material(
|
|
|
276
290
|
"""
|
|
277
291
|
|
|
278
292
|
def add_node(
|
|
279
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
280
293
|
execution_context: int | str | None = None,
|
|
281
294
|
undo: bool | None = None,
|
|
295
|
+
/,
|
|
282
296
|
*,
|
|
283
297
|
use_transform: bool | None = False,
|
|
284
298
|
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
@@ -287,7 +301,6 @@ def add_node(
|
|
|
287
301
|
):
|
|
288
302
|
"""Add a node to the active tree
|
|
289
303
|
|
|
290
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
291
304
|
:type execution_context: int | str | None
|
|
292
305
|
:type undo: bool | None
|
|
293
306
|
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
@@ -299,16 +312,15 @@ def add_node(
|
|
|
299
312
|
"""
|
|
300
313
|
|
|
301
314
|
def add_object(
|
|
302
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
303
315
|
execution_context: int | str | None = None,
|
|
304
316
|
undo: bool | None = None,
|
|
317
|
+
/,
|
|
305
318
|
*,
|
|
306
319
|
name: str = "",
|
|
307
320
|
session_uid: int | None = 0,
|
|
308
321
|
):
|
|
309
322
|
"""Add an object info node to the current node editor
|
|
310
323
|
|
|
311
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
312
324
|
:type execution_context: int | str | None
|
|
313
325
|
:type undo: bool | None
|
|
314
326
|
:param name: Name, Name of the data-block to use by the operator
|
|
@@ -318,9 +330,9 @@ def add_object(
|
|
|
318
330
|
"""
|
|
319
331
|
|
|
320
332
|
def add_repeat_zone(
|
|
321
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
322
333
|
execution_context: int | str | None = None,
|
|
323
334
|
undo: bool | None = None,
|
|
335
|
+
/,
|
|
324
336
|
*,
|
|
325
337
|
use_transform: bool | None = False,
|
|
326
338
|
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
@@ -329,7 +341,6 @@ def add_repeat_zone(
|
|
|
329
341
|
):
|
|
330
342
|
"""Add a repeat zone that allows executing nodes a dynamic number of times
|
|
331
343
|
|
|
332
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
333
344
|
:type execution_context: int | str | None
|
|
334
345
|
:type undo: bool | None
|
|
335
346
|
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
@@ -341,16 +352,15 @@ def add_repeat_zone(
|
|
|
341
352
|
"""
|
|
342
353
|
|
|
343
354
|
def add_reroute(
|
|
344
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
345
355
|
execution_context: int | str | None = None,
|
|
346
356
|
undo: bool | None = None,
|
|
357
|
+
/,
|
|
347
358
|
*,
|
|
348
359
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
349
360
|
cursor: int | None = 11,
|
|
350
361
|
):
|
|
351
362
|
"""Add a reroute node
|
|
352
363
|
|
|
353
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
354
364
|
:type execution_context: int | str | None
|
|
355
365
|
:type undo: bool | None
|
|
356
366
|
:param path: Path
|
|
@@ -360,9 +370,9 @@ def add_reroute(
|
|
|
360
370
|
"""
|
|
361
371
|
|
|
362
372
|
def add_simulation_zone(
|
|
363
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
364
373
|
execution_context: int | str | None = None,
|
|
365
374
|
undo: bool | None = None,
|
|
375
|
+
/,
|
|
366
376
|
*,
|
|
367
377
|
use_transform: bool | None = False,
|
|
368
378
|
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
@@ -371,7 +381,6 @@ def add_simulation_zone(
|
|
|
371
381
|
):
|
|
372
382
|
"""Add simulation zone input and output nodes to the active tree
|
|
373
383
|
|
|
374
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
375
384
|
:type execution_context: int | str | None
|
|
376
385
|
:type undo: bool | None
|
|
377
386
|
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
@@ -382,64 +391,47 @@ def add_simulation_zone(
|
|
|
382
391
|
:type offset: collections.abc.Iterable[float] | None
|
|
383
392
|
"""
|
|
384
393
|
|
|
385
|
-
def attach(
|
|
386
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
387
|
-
execution_context: int | str | None = None,
|
|
388
|
-
undo: bool | None = None,
|
|
389
|
-
):
|
|
394
|
+
def attach(execution_context: int | str | None = None, undo: bool | None = None):
|
|
390
395
|
"""Attach active node to a frame
|
|
391
396
|
|
|
392
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
393
397
|
:type execution_context: int | str | None
|
|
394
398
|
:type undo: bool | None
|
|
395
399
|
"""
|
|
396
400
|
|
|
397
|
-
def backimage_fit(
|
|
398
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
399
|
-
execution_context: int | str | None = None,
|
|
400
|
-
undo: bool | None = None,
|
|
401
|
-
):
|
|
401
|
+
def backimage_fit(execution_context: int | str | None = None, undo: bool | None = None):
|
|
402
402
|
"""Fit the background image to the view
|
|
403
403
|
|
|
404
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
405
404
|
:type execution_context: int | str | None
|
|
406
405
|
:type undo: bool | None
|
|
407
406
|
"""
|
|
408
407
|
|
|
409
408
|
def backimage_move(
|
|
410
|
-
|
|
411
|
-
execution_context: int | str | None = None,
|
|
412
|
-
undo: bool | None = None,
|
|
409
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
413
410
|
):
|
|
414
411
|
"""Move node backdrop
|
|
415
412
|
|
|
416
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
417
413
|
:type execution_context: int | str | None
|
|
418
414
|
:type undo: bool | None
|
|
419
415
|
"""
|
|
420
416
|
|
|
421
417
|
def backimage_sample(
|
|
422
|
-
|
|
423
|
-
execution_context: int | str | None = None,
|
|
424
|
-
undo: bool | None = None,
|
|
418
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
425
419
|
):
|
|
426
420
|
"""Use mouse to sample background image
|
|
427
421
|
|
|
428
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
429
422
|
:type execution_context: int | str | None
|
|
430
423
|
:type undo: bool | None
|
|
431
424
|
"""
|
|
432
425
|
|
|
433
426
|
def backimage_zoom(
|
|
434
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
435
427
|
execution_context: int | str | None = None,
|
|
436
428
|
undo: bool | None = None,
|
|
429
|
+
/,
|
|
437
430
|
*,
|
|
438
431
|
factor: float | None = 1.2,
|
|
439
432
|
):
|
|
440
433
|
"""Zoom in/out the background image
|
|
441
434
|
|
|
442
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
443
435
|
:type execution_context: int | str | None
|
|
444
436
|
:type undo: bool | None
|
|
445
437
|
:param factor: Factor
|
|
@@ -447,27 +439,23 @@ def backimage_zoom(
|
|
|
447
439
|
"""
|
|
448
440
|
|
|
449
441
|
def bake_node_item_add(
|
|
450
|
-
|
|
451
|
-
execution_context: int | str | None = None,
|
|
452
|
-
undo: bool | None = None,
|
|
442
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
453
443
|
):
|
|
454
444
|
"""Add item below active item
|
|
455
445
|
|
|
456
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
457
446
|
:type execution_context: int | str | None
|
|
458
447
|
:type undo: bool | None
|
|
459
448
|
"""
|
|
460
449
|
|
|
461
450
|
def bake_node_item_move(
|
|
462
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
463
451
|
execution_context: int | str | None = None,
|
|
464
452
|
undo: bool | None = None,
|
|
453
|
+
/,
|
|
465
454
|
*,
|
|
466
455
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
467
456
|
):
|
|
468
457
|
"""Move active item
|
|
469
458
|
|
|
470
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
471
459
|
:type execution_context: int | str | None
|
|
472
460
|
:type undo: bool | None
|
|
473
461
|
:param direction: Direction, Move direction
|
|
@@ -475,39 +463,32 @@ def bake_node_item_move(
|
|
|
475
463
|
"""
|
|
476
464
|
|
|
477
465
|
def bake_node_item_remove(
|
|
478
|
-
|
|
479
|
-
execution_context: int | str | None = None,
|
|
480
|
-
undo: bool | None = None,
|
|
466
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
481
467
|
):
|
|
482
468
|
"""Remove active item
|
|
483
469
|
|
|
484
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
485
470
|
:type execution_context: int | str | None
|
|
486
471
|
:type undo: bool | None
|
|
487
472
|
"""
|
|
488
473
|
|
|
489
474
|
def capture_attribute_item_add(
|
|
490
|
-
|
|
491
|
-
execution_context: int | str | None = None,
|
|
492
|
-
undo: bool | None = None,
|
|
475
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
493
476
|
):
|
|
494
477
|
"""Add item below active item
|
|
495
478
|
|
|
496
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
497
479
|
:type execution_context: int | str | None
|
|
498
480
|
:type undo: bool | None
|
|
499
481
|
"""
|
|
500
482
|
|
|
501
483
|
def capture_attribute_item_move(
|
|
502
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
503
484
|
execution_context: int | str | None = None,
|
|
504
485
|
undo: bool | None = None,
|
|
486
|
+
/,
|
|
505
487
|
*,
|
|
506
488
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
507
489
|
):
|
|
508
490
|
"""Move active item
|
|
509
491
|
|
|
510
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
511
492
|
:type execution_context: int | str | None
|
|
512
493
|
:type undo: bool | None
|
|
513
494
|
:param direction: Direction, Move direction
|
|
@@ -515,51 +496,41 @@ def capture_attribute_item_move(
|
|
|
515
496
|
"""
|
|
516
497
|
|
|
517
498
|
def capture_attribute_item_remove(
|
|
518
|
-
|
|
519
|
-
execution_context: int | str | None = None,
|
|
520
|
-
undo: bool | None = None,
|
|
499
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
521
500
|
):
|
|
522
501
|
"""Remove active item
|
|
523
502
|
|
|
524
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
525
503
|
:type execution_context: int | str | None
|
|
526
504
|
:type undo: bool | None
|
|
527
505
|
"""
|
|
528
506
|
|
|
529
507
|
def clear_viewer_border(
|
|
530
|
-
|
|
531
|
-
execution_context: int | str | None = None,
|
|
532
|
-
undo: bool | None = None,
|
|
508
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
533
509
|
):
|
|
534
510
|
"""Clear the boundaries for viewer operations
|
|
535
511
|
|
|
536
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
537
512
|
:type execution_context: int | str | None
|
|
538
513
|
:type undo: bool | None
|
|
539
514
|
"""
|
|
540
515
|
|
|
541
516
|
def clipboard_copy(
|
|
542
|
-
|
|
543
|
-
execution_context: int | str | None = None,
|
|
544
|
-
undo: bool | None = None,
|
|
517
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
545
518
|
):
|
|
546
519
|
"""Copy the selected nodes to the internal clipboard
|
|
547
520
|
|
|
548
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
549
521
|
:type execution_context: int | str | None
|
|
550
522
|
:type undo: bool | None
|
|
551
523
|
"""
|
|
552
524
|
|
|
553
525
|
def clipboard_paste(
|
|
554
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
555
526
|
execution_context: int | str | None = None,
|
|
556
527
|
undo: bool | None = None,
|
|
528
|
+
/,
|
|
557
529
|
*,
|
|
558
530
|
offset: collections.abc.Iterable[float] | None = (0.0, 0.0),
|
|
559
531
|
):
|
|
560
532
|
"""Paste nodes from the internal clipboard to the active node tree
|
|
561
533
|
|
|
562
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
563
534
|
:type execution_context: int | str | None
|
|
564
535
|
:type undo: bool | None
|
|
565
536
|
:param offset: Location, The 2D view location for the center of the new nodes, or unchanged if not set
|
|
@@ -567,27 +538,23 @@ def clipboard_paste(
|
|
|
567
538
|
"""
|
|
568
539
|
|
|
569
540
|
def collapse_hide_unused_toggle(
|
|
570
|
-
|
|
571
|
-
execution_context: int | str | None = None,
|
|
572
|
-
undo: bool | None = None,
|
|
541
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
573
542
|
):
|
|
574
543
|
"""Toggle collapsed nodes and hide unused sockets
|
|
575
544
|
|
|
576
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
577
545
|
:type execution_context: int | str | None
|
|
578
546
|
:type undo: bool | None
|
|
579
547
|
"""
|
|
580
548
|
|
|
581
549
|
def connect_to_output(
|
|
582
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
583
550
|
execution_context: int | str | None = None,
|
|
584
551
|
undo: bool | None = None,
|
|
552
|
+
/,
|
|
585
553
|
*,
|
|
586
554
|
run_in_geometry_nodes: bool | None = True,
|
|
587
555
|
):
|
|
588
556
|
"""Connect active node to the active output node of the node tree
|
|
589
557
|
|
|
590
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
591
558
|
:type execution_context: int | str | None
|
|
592
559
|
:type undo: bool | None
|
|
593
560
|
:param run_in_geometry_nodes: Run in Geometry Nodes Editor
|
|
@@ -595,93 +562,68 @@ def connect_to_output(
|
|
|
595
562
|
"""
|
|
596
563
|
|
|
597
564
|
def cryptomatte_layer_add(
|
|
598
|
-
|
|
599
|
-
execution_context: int | str | None = None,
|
|
600
|
-
undo: bool | None = None,
|
|
565
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
601
566
|
):
|
|
602
567
|
"""Add a new input layer to a Cryptomatte node
|
|
603
568
|
|
|
604
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
605
569
|
:type execution_context: int | str | None
|
|
606
570
|
:type undo: bool | None
|
|
607
571
|
"""
|
|
608
572
|
|
|
609
573
|
def cryptomatte_layer_remove(
|
|
610
|
-
|
|
611
|
-
execution_context: int | str | None = None,
|
|
612
|
-
undo: bool | None = None,
|
|
574
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
613
575
|
):
|
|
614
576
|
"""Remove layer from a Cryptomatte node
|
|
615
577
|
|
|
616
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
617
578
|
:type execution_context: int | str | None
|
|
618
579
|
:type undo: bool | None
|
|
619
580
|
"""
|
|
620
581
|
|
|
621
582
|
def deactivate_viewer(
|
|
622
|
-
|
|
623
|
-
execution_context: int | str | None = None,
|
|
624
|
-
undo: bool | None = None,
|
|
583
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
625
584
|
):
|
|
626
585
|
"""Deactivate selected viewer node in geometry nodes
|
|
627
586
|
|
|
628
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
629
587
|
:type execution_context: int | str | None
|
|
630
588
|
:type undo: bool | None
|
|
631
589
|
"""
|
|
632
590
|
|
|
633
591
|
def default_group_width_set(
|
|
634
|
-
|
|
635
|
-
execution_context: int | str | None = None,
|
|
636
|
-
undo: bool | None = None,
|
|
592
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
637
593
|
):
|
|
638
594
|
"""Set the width based on the parent group node in the current context
|
|
639
595
|
|
|
640
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
641
596
|
:type execution_context: int | str | None
|
|
642
597
|
:type undo: bool | None
|
|
643
598
|
"""
|
|
644
599
|
|
|
645
|
-
def delete(
|
|
646
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
647
|
-
execution_context: int | str | None = None,
|
|
648
|
-
undo: bool | None = None,
|
|
649
|
-
):
|
|
600
|
+
def delete(execution_context: int | str | None = None, undo: bool | None = None):
|
|
650
601
|
"""Remove selected nodes
|
|
651
602
|
|
|
652
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
653
603
|
:type execution_context: int | str | None
|
|
654
604
|
:type undo: bool | None
|
|
655
605
|
"""
|
|
656
606
|
|
|
657
607
|
def delete_reconnect(
|
|
658
|
-
|
|
659
|
-
execution_context: int | str | None = None,
|
|
660
|
-
undo: bool | None = None,
|
|
608
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
661
609
|
):
|
|
662
610
|
"""Remove nodes and reconnect nodes as if deletion was muted
|
|
663
611
|
|
|
664
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
665
612
|
:type execution_context: int | str | None
|
|
666
613
|
:type undo: bool | None
|
|
667
614
|
"""
|
|
668
615
|
|
|
669
|
-
def detach(
|
|
670
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
671
|
-
execution_context: int | str | None = None,
|
|
672
|
-
undo: bool | None = None,
|
|
673
|
-
):
|
|
616
|
+
def detach(execution_context: int | str | None = None, undo: bool | None = None):
|
|
674
617
|
"""Detach selected nodes from parents
|
|
675
618
|
|
|
676
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
677
619
|
:type execution_context: int | str | None
|
|
678
620
|
:type undo: bool | None
|
|
679
621
|
"""
|
|
680
622
|
|
|
681
623
|
def detach_translate_attach(
|
|
682
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
683
624
|
execution_context: int | str | None = None,
|
|
684
625
|
undo: bool | None = None,
|
|
626
|
+
/,
|
|
685
627
|
*,
|
|
686
628
|
NODE_OT_detach: detach | None = None,
|
|
687
629
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
@@ -689,7 +631,6 @@ def detach_translate_attach(
|
|
|
689
631
|
):
|
|
690
632
|
"""Detach nodes, move and attach to frame
|
|
691
633
|
|
|
692
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
693
634
|
:type execution_context: int | str | None
|
|
694
635
|
:type undo: bool | None
|
|
695
636
|
:param NODE_OT_detach: Detach Nodes, Detach selected nodes from parents
|
|
@@ -701,16 +642,15 @@ def detach_translate_attach(
|
|
|
701
642
|
"""
|
|
702
643
|
|
|
703
644
|
def duplicate(
|
|
704
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
705
645
|
execution_context: int | str | None = None,
|
|
706
646
|
undo: bool | None = None,
|
|
647
|
+
/,
|
|
707
648
|
*,
|
|
708
649
|
keep_inputs: bool | None = False,
|
|
709
650
|
linked: bool | None = True,
|
|
710
651
|
):
|
|
711
652
|
"""Duplicate selected nodes
|
|
712
653
|
|
|
713
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
714
654
|
:type execution_context: int | str | None
|
|
715
655
|
:type undo: bool | None
|
|
716
656
|
:param keep_inputs: Keep Inputs, Keep the input links to duplicated nodes
|
|
@@ -720,16 +660,15 @@ def duplicate(
|
|
|
720
660
|
"""
|
|
721
661
|
|
|
722
662
|
def duplicate_move(
|
|
723
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
724
663
|
execution_context: int | str | None = None,
|
|
725
664
|
undo: bool | None = None,
|
|
665
|
+
/,
|
|
726
666
|
*,
|
|
727
667
|
NODE_OT_duplicate: duplicate | None = None,
|
|
728
668
|
NODE_OT_translate_attach: translate_attach | None = None,
|
|
729
669
|
):
|
|
730
670
|
"""Duplicate selected nodes and move them
|
|
731
671
|
|
|
732
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
733
672
|
:type execution_context: int | str | None
|
|
734
673
|
:type undo: bool | None
|
|
735
674
|
:param NODE_OT_duplicate: Duplicate Nodes, Duplicate selected nodes
|
|
@@ -739,16 +678,15 @@ def duplicate_move(
|
|
|
739
678
|
"""
|
|
740
679
|
|
|
741
680
|
def duplicate_move_keep_inputs(
|
|
742
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
743
681
|
execution_context: int | str | None = None,
|
|
744
682
|
undo: bool | None = None,
|
|
683
|
+
/,
|
|
745
684
|
*,
|
|
746
685
|
NODE_OT_duplicate: duplicate | None = None,
|
|
747
686
|
NODE_OT_translate_attach: translate_attach | None = None,
|
|
748
687
|
):
|
|
749
688
|
"""Duplicate selected nodes keeping input links and move them
|
|
750
689
|
|
|
751
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
752
690
|
:type execution_context: int | str | None
|
|
753
691
|
:type undo: bool | None
|
|
754
692
|
:param NODE_OT_duplicate: Duplicate Nodes, Duplicate selected nodes
|
|
@@ -758,16 +696,15 @@ def duplicate_move_keep_inputs(
|
|
|
758
696
|
"""
|
|
759
697
|
|
|
760
698
|
def duplicate_move_linked(
|
|
761
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
762
699
|
execution_context: int | str | None = None,
|
|
763
700
|
undo: bool | None = None,
|
|
701
|
+
/,
|
|
764
702
|
*,
|
|
765
703
|
NODE_OT_duplicate: duplicate | None = None,
|
|
766
704
|
NODE_OT_translate_attach: translate_attach | None = None,
|
|
767
705
|
):
|
|
768
706
|
"""Duplicate selected nodes, but not their node trees, and move them
|
|
769
707
|
|
|
770
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
771
708
|
:type execution_context: int | str | None
|
|
772
709
|
:type undo: bool | None
|
|
773
710
|
:param NODE_OT_duplicate: Duplicate Nodes, Duplicate selected nodes
|
|
@@ -777,27 +714,23 @@ def duplicate_move_linked(
|
|
|
777
714
|
"""
|
|
778
715
|
|
|
779
716
|
def enum_definition_item_add(
|
|
780
|
-
|
|
781
|
-
execution_context: int | str | None = None,
|
|
782
|
-
undo: bool | None = None,
|
|
717
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
783
718
|
):
|
|
784
719
|
"""Add item below active item
|
|
785
720
|
|
|
786
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
787
721
|
:type execution_context: int | str | None
|
|
788
722
|
:type undo: bool | None
|
|
789
723
|
"""
|
|
790
724
|
|
|
791
725
|
def enum_definition_item_move(
|
|
792
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
793
726
|
execution_context: int | str | None = None,
|
|
794
727
|
undo: bool | None = None,
|
|
728
|
+
/,
|
|
795
729
|
*,
|
|
796
730
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
797
731
|
):
|
|
798
732
|
"""Move active item
|
|
799
733
|
|
|
800
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
801
734
|
:type execution_context: int | str | None
|
|
802
735
|
:type undo: bool | None
|
|
803
736
|
:param direction: Direction, Move direction
|
|
@@ -805,51 +738,39 @@ def enum_definition_item_move(
|
|
|
805
738
|
"""
|
|
806
739
|
|
|
807
740
|
def enum_definition_item_remove(
|
|
808
|
-
|
|
809
|
-
execution_context: int | str | None = None,
|
|
810
|
-
undo: bool | None = None,
|
|
741
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
811
742
|
):
|
|
812
743
|
"""Remove active item
|
|
813
744
|
|
|
814
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
815
745
|
:type execution_context: int | str | None
|
|
816
746
|
:type undo: bool | None
|
|
817
747
|
"""
|
|
818
748
|
|
|
819
|
-
def find_node(
|
|
820
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
821
|
-
execution_context: int | str | None = None,
|
|
822
|
-
undo: bool | None = None,
|
|
823
|
-
):
|
|
749
|
+
def find_node(execution_context: int | str | None = None, undo: bool | None = None):
|
|
824
750
|
"""Search for a node by name and focus and select it
|
|
825
751
|
|
|
826
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
827
752
|
:type execution_context: int | str | None
|
|
828
753
|
:type undo: bool | None
|
|
829
754
|
"""
|
|
830
755
|
|
|
831
756
|
def foreach_geometry_element_zone_generation_item_add(
|
|
832
|
-
|
|
833
|
-
execution_context: int | str | None = None,
|
|
834
|
-
undo: bool | None = None,
|
|
757
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
835
758
|
):
|
|
836
759
|
"""Add item below active item
|
|
837
760
|
|
|
838
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
839
761
|
:type execution_context: int | str | None
|
|
840
762
|
:type undo: bool | None
|
|
841
763
|
"""
|
|
842
764
|
|
|
843
765
|
def foreach_geometry_element_zone_generation_item_move(
|
|
844
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
845
766
|
execution_context: int | str | None = None,
|
|
846
767
|
undo: bool | None = None,
|
|
768
|
+
/,
|
|
847
769
|
*,
|
|
848
770
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
849
771
|
):
|
|
850
772
|
"""Move active item
|
|
851
773
|
|
|
852
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
853
774
|
:type execution_context: int | str | None
|
|
854
775
|
:type undo: bool | None
|
|
855
776
|
:param direction: Direction, Move direction
|
|
@@ -857,39 +778,32 @@ def foreach_geometry_element_zone_generation_item_move(
|
|
|
857
778
|
"""
|
|
858
779
|
|
|
859
780
|
def foreach_geometry_element_zone_generation_item_remove(
|
|
860
|
-
|
|
861
|
-
execution_context: int | str | None = None,
|
|
862
|
-
undo: bool | None = None,
|
|
781
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
863
782
|
):
|
|
864
783
|
"""Remove active item
|
|
865
784
|
|
|
866
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
867
785
|
:type execution_context: int | str | None
|
|
868
786
|
:type undo: bool | None
|
|
869
787
|
"""
|
|
870
788
|
|
|
871
789
|
def foreach_geometry_element_zone_input_item_add(
|
|
872
|
-
|
|
873
|
-
execution_context: int | str | None = None,
|
|
874
|
-
undo: bool | None = None,
|
|
790
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
875
791
|
):
|
|
876
792
|
"""Add item below active item
|
|
877
793
|
|
|
878
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
879
794
|
:type execution_context: int | str | None
|
|
880
795
|
:type undo: bool | None
|
|
881
796
|
"""
|
|
882
797
|
|
|
883
798
|
def foreach_geometry_element_zone_input_item_move(
|
|
884
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
885
799
|
execution_context: int | str | None = None,
|
|
886
800
|
undo: bool | None = None,
|
|
801
|
+
/,
|
|
887
802
|
*,
|
|
888
803
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
889
804
|
):
|
|
890
805
|
"""Move active item
|
|
891
806
|
|
|
892
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
893
807
|
:type execution_context: int | str | None
|
|
894
808
|
:type undo: bool | None
|
|
895
809
|
:param direction: Direction, Move direction
|
|
@@ -897,39 +811,32 @@ def foreach_geometry_element_zone_input_item_move(
|
|
|
897
811
|
"""
|
|
898
812
|
|
|
899
813
|
def foreach_geometry_element_zone_input_item_remove(
|
|
900
|
-
|
|
901
|
-
execution_context: int | str | None = None,
|
|
902
|
-
undo: bool | None = None,
|
|
814
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
903
815
|
):
|
|
904
816
|
"""Remove active item
|
|
905
817
|
|
|
906
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
907
818
|
:type execution_context: int | str | None
|
|
908
819
|
:type undo: bool | None
|
|
909
820
|
"""
|
|
910
821
|
|
|
911
822
|
def foreach_geometry_element_zone_main_item_add(
|
|
912
|
-
|
|
913
|
-
execution_context: int | str | None = None,
|
|
914
|
-
undo: bool | None = None,
|
|
823
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
915
824
|
):
|
|
916
825
|
"""Add item below active item
|
|
917
826
|
|
|
918
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
919
827
|
:type execution_context: int | str | None
|
|
920
828
|
:type undo: bool | None
|
|
921
829
|
"""
|
|
922
830
|
|
|
923
831
|
def foreach_geometry_element_zone_main_item_move(
|
|
924
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
925
832
|
execution_context: int | str | None = None,
|
|
926
833
|
undo: bool | None = None,
|
|
834
|
+
/,
|
|
927
835
|
*,
|
|
928
836
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
929
837
|
):
|
|
930
838
|
"""Move active item
|
|
931
839
|
|
|
932
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
933
840
|
:type execution_context: int | str | None
|
|
934
841
|
:type undo: bool | None
|
|
935
842
|
:param direction: Direction, Move direction
|
|
@@ -937,79 +844,61 @@ def foreach_geometry_element_zone_main_item_move(
|
|
|
937
844
|
"""
|
|
938
845
|
|
|
939
846
|
def foreach_geometry_element_zone_main_item_remove(
|
|
940
|
-
|
|
941
|
-
execution_context: int | str | None = None,
|
|
942
|
-
undo: bool | None = None,
|
|
847
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
943
848
|
):
|
|
944
849
|
"""Remove active item
|
|
945
850
|
|
|
946
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
947
851
|
:type execution_context: int | str | None
|
|
948
852
|
:type undo: bool | None
|
|
949
853
|
"""
|
|
950
854
|
|
|
951
855
|
def gltf_settings_node_operator(
|
|
952
|
-
|
|
953
|
-
execution_context: int | str | None = None,
|
|
954
|
-
undo: bool | None = None,
|
|
856
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
955
857
|
):
|
|
956
858
|
"""Add a node to the active tree for glTF export
|
|
957
859
|
|
|
958
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
959
860
|
:type execution_context: int | str | None
|
|
960
861
|
:type undo: bool | None
|
|
961
862
|
"""
|
|
962
863
|
|
|
963
864
|
def group_edit(
|
|
964
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
965
865
|
execution_context: int | str | None = None,
|
|
966
866
|
undo: bool | None = None,
|
|
867
|
+
/,
|
|
967
868
|
*,
|
|
968
869
|
exit: bool | None = False,
|
|
969
870
|
):
|
|
970
871
|
"""Edit node group
|
|
971
872
|
|
|
972
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
973
873
|
:type execution_context: int | str | None
|
|
974
874
|
:type undo: bool | None
|
|
975
875
|
:param exit: Exit
|
|
976
876
|
:type exit: bool | None
|
|
977
877
|
"""
|
|
978
878
|
|
|
979
|
-
def group_insert(
|
|
980
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
981
|
-
execution_context: int | str | None = None,
|
|
982
|
-
undo: bool | None = None,
|
|
983
|
-
):
|
|
879
|
+
def group_insert(execution_context: int | str | None = None, undo: bool | None = None):
|
|
984
880
|
"""Insert selected nodes into a node group
|
|
985
881
|
|
|
986
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
987
882
|
:type execution_context: int | str | None
|
|
988
883
|
:type undo: bool | None
|
|
989
884
|
"""
|
|
990
885
|
|
|
991
|
-
def group_make(
|
|
992
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
993
|
-
execution_context: int | str | None = None,
|
|
994
|
-
undo: bool | None = None,
|
|
995
|
-
):
|
|
886
|
+
def group_make(execution_context: int | str | None = None, undo: bool | None = None):
|
|
996
887
|
"""Make group from selected nodes
|
|
997
888
|
|
|
998
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
999
889
|
:type execution_context: int | str | None
|
|
1000
890
|
:type undo: bool | None
|
|
1001
891
|
"""
|
|
1002
892
|
|
|
1003
893
|
def group_separate(
|
|
1004
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1005
894
|
execution_context: int | str | None = None,
|
|
1006
895
|
undo: bool | None = None,
|
|
896
|
+
/,
|
|
1007
897
|
*,
|
|
1008
898
|
type: typing.Literal["COPY", "MOVE"] | None = "COPY",
|
|
1009
899
|
):
|
|
1010
900
|
"""Separate selected nodes from the node group
|
|
1011
901
|
|
|
1012
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1013
902
|
:type execution_context: int | str | None
|
|
1014
903
|
:type undo: bool | None
|
|
1015
904
|
:param type: Type
|
|
@@ -1022,104 +911,78 @@ def group_separate(
|
|
|
1022
911
|
:type type: typing.Literal['COPY','MOVE'] | None
|
|
1023
912
|
"""
|
|
1024
913
|
|
|
1025
|
-
def group_ungroup(
|
|
1026
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1027
|
-
execution_context: int | str | None = None,
|
|
1028
|
-
undo: bool | None = None,
|
|
1029
|
-
):
|
|
914
|
+
def group_ungroup(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1030
915
|
"""Ungroup selected nodes
|
|
1031
916
|
|
|
1032
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1033
917
|
:type execution_context: int | str | None
|
|
1034
918
|
:type undo: bool | None
|
|
1035
919
|
"""
|
|
1036
920
|
|
|
1037
921
|
def hide_socket_toggle(
|
|
1038
|
-
|
|
1039
|
-
execution_context: int | str | None = None,
|
|
1040
|
-
undo: bool | None = None,
|
|
922
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1041
923
|
):
|
|
1042
924
|
"""Toggle unused node socket display
|
|
1043
925
|
|
|
1044
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1045
926
|
:type execution_context: int | str | None
|
|
1046
927
|
:type undo: bool | None
|
|
1047
928
|
"""
|
|
1048
929
|
|
|
1049
|
-
def hide_toggle(
|
|
1050
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1051
|
-
execution_context: int | str | None = None,
|
|
1052
|
-
undo: bool | None = None,
|
|
1053
|
-
):
|
|
930
|
+
def hide_toggle(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1054
931
|
"""Toggle hiding of selected nodes
|
|
1055
932
|
|
|
1056
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1057
933
|
:type execution_context: int | str | None
|
|
1058
934
|
:type undo: bool | None
|
|
1059
935
|
"""
|
|
1060
936
|
|
|
1061
937
|
def index_switch_item_add(
|
|
1062
|
-
|
|
1063
|
-
execution_context: int | str | None = None,
|
|
1064
|
-
undo: bool | None = None,
|
|
938
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1065
939
|
):
|
|
1066
940
|
"""Add bake item
|
|
1067
941
|
|
|
1068
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1069
942
|
:type execution_context: int | str | None
|
|
1070
943
|
:type undo: bool | None
|
|
1071
944
|
"""
|
|
1072
945
|
|
|
1073
946
|
def index_switch_item_remove(
|
|
1074
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1075
947
|
execution_context: int | str | None = None,
|
|
1076
948
|
undo: bool | None = None,
|
|
949
|
+
/,
|
|
1077
950
|
*,
|
|
1078
951
|
index: int | None = 0,
|
|
1079
952
|
):
|
|
1080
953
|
"""Remove an item from the index switch
|
|
1081
954
|
|
|
1082
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1083
955
|
:type execution_context: int | str | None
|
|
1084
956
|
:type undo: bool | None
|
|
1085
957
|
:param index: Index, Index to remove
|
|
1086
958
|
:type index: int | None
|
|
1087
959
|
"""
|
|
1088
960
|
|
|
1089
|
-
def insert_offset(
|
|
1090
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1091
|
-
execution_context: int | str | None = None,
|
|
1092
|
-
undo: bool | None = None,
|
|
1093
|
-
):
|
|
961
|
+
def insert_offset(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1094
962
|
"""Automatically offset nodes on insertion
|
|
1095
963
|
|
|
1096
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1097
964
|
:type execution_context: int | str | None
|
|
1098
965
|
:type undo: bool | None
|
|
1099
966
|
"""
|
|
1100
967
|
|
|
1101
968
|
def interface_item_duplicate(
|
|
1102
|
-
|
|
1103
|
-
execution_context: int | str | None = None,
|
|
1104
|
-
undo: bool | None = None,
|
|
969
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1105
970
|
):
|
|
1106
971
|
"""Add a copy of the active item to the interface
|
|
1107
972
|
|
|
1108
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1109
973
|
:type execution_context: int | str | None
|
|
1110
974
|
:type undo: bool | None
|
|
1111
975
|
"""
|
|
1112
976
|
|
|
1113
977
|
def interface_item_new(
|
|
1114
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1115
978
|
execution_context: int | str | None = None,
|
|
1116
979
|
undo: bool | None = None,
|
|
980
|
+
/,
|
|
1117
981
|
*,
|
|
1118
982
|
item_type: typing.Literal["INPUT", "OUTPUT", "PANEL"] | None = "INPUT",
|
|
1119
983
|
):
|
|
1120
984
|
"""Add a new item to the interface
|
|
1121
985
|
|
|
1122
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1123
986
|
:type execution_context: int | str | None
|
|
1124
987
|
:type undo: bool | None
|
|
1125
988
|
:param item_type: Item Type, Type of the item to create
|
|
@@ -1127,33 +990,25 @@ def interface_item_new(
|
|
|
1127
990
|
"""
|
|
1128
991
|
|
|
1129
992
|
def interface_item_remove(
|
|
1130
|
-
|
|
1131
|
-
execution_context: int | str | None = None,
|
|
1132
|
-
undo: bool | None = None,
|
|
993
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1133
994
|
):
|
|
1134
995
|
"""Remove active item from the interface
|
|
1135
996
|
|
|
1136
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1137
997
|
:type execution_context: int | str | None
|
|
1138
998
|
:type undo: bool | None
|
|
1139
999
|
"""
|
|
1140
1000
|
|
|
1141
|
-
def join(
|
|
1142
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1143
|
-
execution_context: int | str | None = None,
|
|
1144
|
-
undo: bool | None = None,
|
|
1145
|
-
):
|
|
1001
|
+
def join(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1146
1002
|
"""Attach selected nodes to a new common frame
|
|
1147
1003
|
|
|
1148
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1149
1004
|
:type execution_context: int | str | None
|
|
1150
1005
|
:type undo: bool | None
|
|
1151
1006
|
"""
|
|
1152
1007
|
|
|
1153
1008
|
def link(
|
|
1154
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1155
1009
|
execution_context: int | str | None = None,
|
|
1156
1010
|
undo: bool | None = None,
|
|
1011
|
+
/,
|
|
1157
1012
|
*,
|
|
1158
1013
|
detach: bool | None = False,
|
|
1159
1014
|
drag_start: collections.abc.Iterable[float] | None = (0.0, 0.0),
|
|
@@ -1166,7 +1021,6 @@ def link(
|
|
|
1166
1021
|
):
|
|
1167
1022
|
"""Use the mouse to create a link between two nodes
|
|
1168
1023
|
|
|
1169
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1170
1024
|
:type execution_context: int | str | None
|
|
1171
1025
|
:type undo: bool | None
|
|
1172
1026
|
:param detach: Detach, Detach and redirect existing links
|
|
@@ -1188,44 +1042,37 @@ def link(
|
|
|
1188
1042
|
"""
|
|
1189
1043
|
|
|
1190
1044
|
def link_make(
|
|
1191
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1192
1045
|
execution_context: int | str | None = None,
|
|
1193
1046
|
undo: bool | None = None,
|
|
1047
|
+
/,
|
|
1194
1048
|
*,
|
|
1195
1049
|
replace: bool | None = False,
|
|
1196
1050
|
):
|
|
1197
1051
|
"""Make a link between selected output and input sockets
|
|
1198
1052
|
|
|
1199
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1200
1053
|
:type execution_context: int | str | None
|
|
1201
1054
|
:type undo: bool | None
|
|
1202
1055
|
:param replace: Replace, Replace socket connections with the new links
|
|
1203
1056
|
:type replace: bool | None
|
|
1204
1057
|
"""
|
|
1205
1058
|
|
|
1206
|
-
def link_viewer(
|
|
1207
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1208
|
-
execution_context: int | str | None = None,
|
|
1209
|
-
undo: bool | None = None,
|
|
1210
|
-
):
|
|
1059
|
+
def link_viewer(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1211
1060
|
"""Link to viewer node
|
|
1212
1061
|
|
|
1213
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1214
1062
|
:type execution_context: int | str | None
|
|
1215
1063
|
:type undo: bool | None
|
|
1216
1064
|
"""
|
|
1217
1065
|
|
|
1218
1066
|
def links_cut(
|
|
1219
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1220
1067
|
execution_context: int | str | None = None,
|
|
1221
1068
|
undo: bool | None = None,
|
|
1069
|
+
/,
|
|
1222
1070
|
*,
|
|
1223
1071
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
1224
1072
|
cursor: int | None = 15,
|
|
1225
1073
|
):
|
|
1226
1074
|
"""Use the mouse to cut (remove) some links
|
|
1227
1075
|
|
|
1228
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1229
1076
|
:type execution_context: int | str | None
|
|
1230
1077
|
:type undo: bool | None
|
|
1231
1078
|
:param path: Path
|
|
@@ -1234,29 +1081,23 @@ def links_cut(
|
|
|
1234
1081
|
:type cursor: int | None
|
|
1235
1082
|
"""
|
|
1236
1083
|
|
|
1237
|
-
def links_detach(
|
|
1238
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1239
|
-
execution_context: int | str | None = None,
|
|
1240
|
-
undo: bool | None = None,
|
|
1241
|
-
):
|
|
1084
|
+
def links_detach(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1242
1085
|
"""Remove all links to selected nodes, and try to connect neighbor nodes together
|
|
1243
1086
|
|
|
1244
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1245
1087
|
:type execution_context: int | str | None
|
|
1246
1088
|
:type undo: bool | None
|
|
1247
1089
|
"""
|
|
1248
1090
|
|
|
1249
1091
|
def links_mute(
|
|
1250
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1251
1092
|
execution_context: int | str | None = None,
|
|
1252
1093
|
undo: bool | None = None,
|
|
1094
|
+
/,
|
|
1253
1095
|
*,
|
|
1254
1096
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
1255
1097
|
cursor: int | None = 38,
|
|
1256
1098
|
):
|
|
1257
1099
|
"""Use the mouse to mute links
|
|
1258
1100
|
|
|
1259
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1260
1101
|
:type execution_context: int | str | None
|
|
1261
1102
|
:type undo: bool | None
|
|
1262
1103
|
:param path: Path
|
|
@@ -1266,16 +1107,15 @@ def links_mute(
|
|
|
1266
1107
|
"""
|
|
1267
1108
|
|
|
1268
1109
|
def move_detach_links(
|
|
1269
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1270
1110
|
execution_context: int | str | None = None,
|
|
1271
1111
|
undo: bool | None = None,
|
|
1112
|
+
/,
|
|
1272
1113
|
*,
|
|
1273
1114
|
NODE_OT_links_detach: links_detach | None = None,
|
|
1274
1115
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
1275
1116
|
):
|
|
1276
1117
|
"""Move a node to detach links
|
|
1277
1118
|
|
|
1278
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1279
1119
|
:type execution_context: int | str | None
|
|
1280
1120
|
:type undo: bool | None
|
|
1281
1121
|
:param NODE_OT_links_detach: Detach Links, Remove all links to selected nodes, and try to connect neighbor nodes together
|
|
@@ -1285,16 +1125,15 @@ def move_detach_links(
|
|
|
1285
1125
|
"""
|
|
1286
1126
|
|
|
1287
1127
|
def move_detach_links_release(
|
|
1288
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1289
1128
|
execution_context: int | str | None = None,
|
|
1290
1129
|
undo: bool | None = None,
|
|
1130
|
+
/,
|
|
1291
1131
|
*,
|
|
1292
1132
|
NODE_OT_links_detach: links_detach | None = None,
|
|
1293
1133
|
NODE_OT_translate_attach: translate_attach | None = None,
|
|
1294
1134
|
):
|
|
1295
1135
|
"""Move a node to detach links
|
|
1296
1136
|
|
|
1297
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1298
1137
|
:type execution_context: int | str | None
|
|
1299
1138
|
:type undo: bool | None
|
|
1300
1139
|
:param NODE_OT_links_detach: Detach Links, Remove all links to selected nodes, and try to connect neighbor nodes together
|
|
@@ -1303,65 +1142,50 @@ def move_detach_links_release(
|
|
|
1303
1142
|
:type NODE_OT_translate_attach: translate_attach | None
|
|
1304
1143
|
"""
|
|
1305
1144
|
|
|
1306
|
-
def mute_toggle(
|
|
1307
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1308
|
-
execution_context: int | str | None = None,
|
|
1309
|
-
undo: bool | None = None,
|
|
1310
|
-
):
|
|
1145
|
+
def mute_toggle(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1311
1146
|
"""Toggle muting of selected nodes
|
|
1312
1147
|
|
|
1313
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1314
1148
|
:type execution_context: int | str | None
|
|
1315
1149
|
:type undo: bool | None
|
|
1316
1150
|
"""
|
|
1317
1151
|
|
|
1318
1152
|
def new_geometry_node_group_assign(
|
|
1319
|
-
|
|
1320
|
-
execution_context: int | str | None = None,
|
|
1321
|
-
undo: bool | None = None,
|
|
1153
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1322
1154
|
):
|
|
1323
1155
|
"""Create a new geometry node group and assign it to the active modifier
|
|
1324
1156
|
|
|
1325
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1326
1157
|
:type execution_context: int | str | None
|
|
1327
1158
|
:type undo: bool | None
|
|
1328
1159
|
"""
|
|
1329
1160
|
|
|
1330
1161
|
def new_geometry_node_group_tool(
|
|
1331
|
-
|
|
1332
|
-
execution_context: int | str | None = None,
|
|
1333
|
-
undo: bool | None = None,
|
|
1162
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1334
1163
|
):
|
|
1335
1164
|
"""Create a new geometry node group for a tool
|
|
1336
1165
|
|
|
1337
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1338
1166
|
:type execution_context: int | str | None
|
|
1339
1167
|
:type undo: bool | None
|
|
1340
1168
|
"""
|
|
1341
1169
|
|
|
1342
1170
|
def new_geometry_nodes_modifier(
|
|
1343
|
-
|
|
1344
|
-
execution_context: int | str | None = None,
|
|
1345
|
-
undo: bool | None = None,
|
|
1171
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1346
1172
|
):
|
|
1347
1173
|
"""Create a new modifier with a new geometry node group
|
|
1348
1174
|
|
|
1349
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1350
1175
|
:type execution_context: int | str | None
|
|
1351
1176
|
:type undo: bool | None
|
|
1352
1177
|
"""
|
|
1353
1178
|
|
|
1354
1179
|
def new_node_tree(
|
|
1355
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1356
1180
|
execution_context: int | str | None = None,
|
|
1357
1181
|
undo: bool | None = None,
|
|
1182
|
+
/,
|
|
1358
1183
|
*,
|
|
1359
1184
|
type: str | None = "",
|
|
1360
1185
|
name: str = "NodeTree",
|
|
1361
1186
|
):
|
|
1362
1187
|
"""Create a new node tree
|
|
1363
1188
|
|
|
1364
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1365
1189
|
:type execution_context: int | str | None
|
|
1366
1190
|
:type undo: bool | None
|
|
1367
1191
|
:param type: Tree Type
|
|
@@ -1371,9 +1195,9 @@ def new_node_tree(
|
|
|
1371
1195
|
"""
|
|
1372
1196
|
|
|
1373
1197
|
def node_color_preset_add(
|
|
1374
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1375
1198
|
execution_context: int | str | None = None,
|
|
1376
1199
|
undo: bool | None = None,
|
|
1200
|
+
/,
|
|
1377
1201
|
*,
|
|
1378
1202
|
name: str = "",
|
|
1379
1203
|
remove_name: bool | None = False,
|
|
@@ -1381,7 +1205,6 @@ def node_color_preset_add(
|
|
|
1381
1205
|
):
|
|
1382
1206
|
"""Add or remove a Node Color Preset
|
|
1383
1207
|
|
|
1384
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1385
1208
|
:type execution_context: int | str | None
|
|
1386
1209
|
:type undo: bool | None
|
|
1387
1210
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -1393,39 +1216,32 @@ def node_color_preset_add(
|
|
|
1393
1216
|
"""
|
|
1394
1217
|
|
|
1395
1218
|
def node_copy_color(
|
|
1396
|
-
|
|
1397
|
-
execution_context: int | str | None = None,
|
|
1398
|
-
undo: bool | None = None,
|
|
1219
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1399
1220
|
):
|
|
1400
1221
|
"""Copy color to all selected nodes
|
|
1401
1222
|
|
|
1402
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1403
1223
|
:type execution_context: int | str | None
|
|
1404
1224
|
:type undo: bool | None
|
|
1405
1225
|
"""
|
|
1406
1226
|
|
|
1407
1227
|
def options_toggle(
|
|
1408
|
-
|
|
1409
|
-
execution_context: int | str | None = None,
|
|
1410
|
-
undo: bool | None = None,
|
|
1228
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1411
1229
|
):
|
|
1412
1230
|
"""Toggle option buttons display for selected nodes
|
|
1413
1231
|
|
|
1414
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1415
1232
|
:type execution_context: int | str | None
|
|
1416
1233
|
:type undo: bool | None
|
|
1417
1234
|
"""
|
|
1418
1235
|
|
|
1419
1236
|
def output_file_add_socket(
|
|
1420
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1421
1237
|
execution_context: int | str | None = None,
|
|
1422
1238
|
undo: bool | None = None,
|
|
1239
|
+
/,
|
|
1423
1240
|
*,
|
|
1424
1241
|
file_path: str = "Image",
|
|
1425
1242
|
):
|
|
1426
1243
|
"""Add a new input to a file output node
|
|
1427
1244
|
|
|
1428
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1429
1245
|
:type execution_context: int | str | None
|
|
1430
1246
|
:type undo: bool | None
|
|
1431
1247
|
:param file_path: File Path, Subpath of the output file
|
|
@@ -1433,15 +1249,14 @@ def output_file_add_socket(
|
|
|
1433
1249
|
"""
|
|
1434
1250
|
|
|
1435
1251
|
def output_file_move_active_socket(
|
|
1436
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1437
1252
|
execution_context: int | str | None = None,
|
|
1438
1253
|
undo: bool | None = None,
|
|
1254
|
+
/,
|
|
1439
1255
|
*,
|
|
1440
1256
|
direction: typing.Literal["UP", "DOWN"] | None = "DOWN",
|
|
1441
1257
|
):
|
|
1442
1258
|
"""Move the active input of a file output node up or down the list
|
|
1443
1259
|
|
|
1444
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1445
1260
|
:type execution_context: int | str | None
|
|
1446
1261
|
:type undo: bool | None
|
|
1447
1262
|
:param direction: Direction
|
|
@@ -1449,87 +1264,66 @@ def output_file_move_active_socket(
|
|
|
1449
1264
|
"""
|
|
1450
1265
|
|
|
1451
1266
|
def output_file_remove_active_socket(
|
|
1452
|
-
|
|
1453
|
-
execution_context: int | str | None = None,
|
|
1454
|
-
undo: bool | None = None,
|
|
1267
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1455
1268
|
):
|
|
1456
1269
|
"""Remove the active input from a file output node
|
|
1457
1270
|
|
|
1458
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1459
1271
|
:type execution_context: int | str | None
|
|
1460
1272
|
:type undo: bool | None
|
|
1461
1273
|
"""
|
|
1462
1274
|
|
|
1463
|
-
def parent_set(
|
|
1464
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1465
|
-
execution_context: int | str | None = None,
|
|
1466
|
-
undo: bool | None = None,
|
|
1467
|
-
):
|
|
1275
|
+
def parent_set(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1468
1276
|
"""Attach selected nodes
|
|
1469
1277
|
|
|
1470
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1471
1278
|
:type execution_context: int | str | None
|
|
1472
1279
|
:type undo: bool | None
|
|
1473
1280
|
"""
|
|
1474
1281
|
|
|
1475
1282
|
def preview_toggle(
|
|
1476
|
-
|
|
1477
|
-
execution_context: int | str | None = None,
|
|
1478
|
-
undo: bool | None = None,
|
|
1283
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1479
1284
|
):
|
|
1480
1285
|
"""Toggle preview display for selected nodes
|
|
1481
1286
|
|
|
1482
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1483
1287
|
:type execution_context: int | str | None
|
|
1484
1288
|
:type undo: bool | None
|
|
1485
1289
|
"""
|
|
1486
1290
|
|
|
1487
1291
|
def read_viewlayers(
|
|
1488
|
-
|
|
1489
|
-
execution_context: int | str | None = None,
|
|
1490
|
-
undo: bool | None = None,
|
|
1292
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1491
1293
|
):
|
|
1492
1294
|
"""Read all render layers of all used scenes
|
|
1493
1295
|
|
|
1494
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1495
1296
|
:type execution_context: int | str | None
|
|
1496
1297
|
:type undo: bool | None
|
|
1497
1298
|
"""
|
|
1498
1299
|
|
|
1499
1300
|
def render_changed(
|
|
1500
|
-
|
|
1501
|
-
execution_context: int | str | None = None,
|
|
1502
|
-
undo: bool | None = None,
|
|
1301
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1503
1302
|
):
|
|
1504
1303
|
"""Render current scene, when input node's layer has been changed
|
|
1505
1304
|
|
|
1506
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1507
1305
|
:type execution_context: int | str | None
|
|
1508
1306
|
:type undo: bool | None
|
|
1509
1307
|
"""
|
|
1510
1308
|
|
|
1511
1309
|
def repeat_zone_item_add(
|
|
1512
|
-
|
|
1513
|
-
execution_context: int | str | None = None,
|
|
1514
|
-
undo: bool | None = None,
|
|
1310
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1515
1311
|
):
|
|
1516
1312
|
"""Add item below active item
|
|
1517
1313
|
|
|
1518
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1519
1314
|
:type execution_context: int | str | None
|
|
1520
1315
|
:type undo: bool | None
|
|
1521
1316
|
"""
|
|
1522
1317
|
|
|
1523
1318
|
def repeat_zone_item_move(
|
|
1524
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1525
1319
|
execution_context: int | str | None = None,
|
|
1526
1320
|
undo: bool | None = None,
|
|
1321
|
+
/,
|
|
1527
1322
|
*,
|
|
1528
1323
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1529
1324
|
):
|
|
1530
1325
|
"""Move active item
|
|
1531
1326
|
|
|
1532
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1533
1327
|
:type execution_context: int | str | None
|
|
1534
1328
|
:type undo: bool | None
|
|
1535
1329
|
:param direction: Direction, Move direction
|
|
@@ -1537,33 +1331,25 @@ def repeat_zone_item_move(
|
|
|
1537
1331
|
"""
|
|
1538
1332
|
|
|
1539
1333
|
def repeat_zone_item_remove(
|
|
1540
|
-
|
|
1541
|
-
execution_context: int | str | None = None,
|
|
1542
|
-
undo: bool | None = None,
|
|
1334
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1543
1335
|
):
|
|
1544
1336
|
"""Remove active item
|
|
1545
1337
|
|
|
1546
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1547
1338
|
:type execution_context: int | str | None
|
|
1548
1339
|
:type undo: bool | None
|
|
1549
1340
|
"""
|
|
1550
1341
|
|
|
1551
|
-
def resize(
|
|
1552
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1553
|
-
execution_context: int | str | None = None,
|
|
1554
|
-
undo: bool | None = None,
|
|
1555
|
-
):
|
|
1342
|
+
def resize(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1556
1343
|
"""Resize a node
|
|
1557
1344
|
|
|
1558
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1559
1345
|
:type execution_context: int | str | None
|
|
1560
1346
|
:type undo: bool | None
|
|
1561
1347
|
"""
|
|
1562
1348
|
|
|
1563
1349
|
def select(
|
|
1564
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1565
1350
|
execution_context: int | str | None = None,
|
|
1566
1351
|
undo: bool | None = None,
|
|
1352
|
+
/,
|
|
1567
1353
|
*,
|
|
1568
1354
|
extend: bool | None = False,
|
|
1569
1355
|
deselect: bool | None = False,
|
|
@@ -1576,7 +1362,6 @@ def select(
|
|
|
1576
1362
|
):
|
|
1577
1363
|
"""Select the node under the cursor
|
|
1578
1364
|
|
|
1579
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1580
1365
|
:type execution_context: int | str | None
|
|
1581
1366
|
:type undo: bool | None
|
|
1582
1367
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -1598,15 +1383,14 @@ def select(
|
|
|
1598
1383
|
"""
|
|
1599
1384
|
|
|
1600
1385
|
def select_all(
|
|
1601
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1602
1386
|
execution_context: int | str | None = None,
|
|
1603
1387
|
undo: bool | None = None,
|
|
1388
|
+
/,
|
|
1604
1389
|
*,
|
|
1605
1390
|
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
|
|
1606
1391
|
):
|
|
1607
1392
|
"""(De)select all nodes
|
|
1608
1393
|
|
|
1609
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1610
1394
|
:type execution_context: int | str | None
|
|
1611
1395
|
:type undo: bool | None
|
|
1612
1396
|
:param action: Action, Selection action to execute
|
|
@@ -1626,9 +1410,9 @@ def select_all(
|
|
|
1626
1410
|
"""
|
|
1627
1411
|
|
|
1628
1412
|
def select_box(
|
|
1629
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1630
1413
|
execution_context: int | str | None = None,
|
|
1631
1414
|
undo: bool | None = None,
|
|
1415
|
+
/,
|
|
1632
1416
|
*,
|
|
1633
1417
|
tweak: bool | None = False,
|
|
1634
1418
|
xmin: int | None = 0,
|
|
@@ -1640,7 +1424,6 @@ def select_box(
|
|
|
1640
1424
|
):
|
|
1641
1425
|
"""Use box selection to select nodes
|
|
1642
1426
|
|
|
1643
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1644
1427
|
:type execution_context: int | str | None
|
|
1645
1428
|
:type undo: bool | None
|
|
1646
1429
|
:param tweak: Tweak, Only activate when mouse is not over a node (useful for tweak gesture)
|
|
@@ -1669,9 +1452,9 @@ def select_box(
|
|
|
1669
1452
|
"""
|
|
1670
1453
|
|
|
1671
1454
|
def select_circle(
|
|
1672
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1673
1455
|
execution_context: int | str | None = None,
|
|
1674
1456
|
undo: bool | None = None,
|
|
1457
|
+
/,
|
|
1675
1458
|
*,
|
|
1676
1459
|
x: int | None = 0,
|
|
1677
1460
|
y: int | None = 0,
|
|
@@ -1681,7 +1464,6 @@ def select_circle(
|
|
|
1681
1464
|
):
|
|
1682
1465
|
"""Use circle selection to select nodes
|
|
1683
1466
|
|
|
1684
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1685
1467
|
:type execution_context: int | str | None
|
|
1686
1468
|
:type undo: bool | None
|
|
1687
1469
|
:param x: X
|
|
@@ -1706,16 +1488,15 @@ def select_circle(
|
|
|
1706
1488
|
"""
|
|
1707
1489
|
|
|
1708
1490
|
def select_grouped(
|
|
1709
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1710
1491
|
execution_context: int | str | None = None,
|
|
1711
1492
|
undo: bool | None = None,
|
|
1493
|
+
/,
|
|
1712
1494
|
*,
|
|
1713
1495
|
extend: bool | None = False,
|
|
1714
1496
|
type: typing.Literal["TYPE", "COLOR", "PREFIX", "SUFFIX"] | None = "TYPE",
|
|
1715
1497
|
):
|
|
1716
1498
|
"""Select nodes with similar properties
|
|
1717
1499
|
|
|
1718
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1719
1500
|
:type execution_context: int | str | None
|
|
1720
1501
|
:type undo: bool | None
|
|
1721
1502
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -1725,9 +1506,9 @@ def select_grouped(
|
|
|
1725
1506
|
"""
|
|
1726
1507
|
|
|
1727
1508
|
def select_lasso(
|
|
1728
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1729
1509
|
execution_context: int | str | None = None,
|
|
1730
1510
|
undo: bool | None = None,
|
|
1511
|
+
/,
|
|
1731
1512
|
*,
|
|
1732
1513
|
tweak: bool | None = False,
|
|
1733
1514
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
@@ -1738,7 +1519,6 @@ def select_lasso(
|
|
|
1738
1519
|
):
|
|
1739
1520
|
"""Select nodes using lasso selection
|
|
1740
1521
|
|
|
1741
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1742
1522
|
:type execution_context: int | str | None
|
|
1743
1523
|
:type undo: bool | None
|
|
1744
1524
|
:param tweak: Tweak, Only activate when mouse is not over a node (useful for tweak gesture)
|
|
@@ -1765,16 +1545,15 @@ def select_lasso(
|
|
|
1765
1545
|
"""
|
|
1766
1546
|
|
|
1767
1547
|
def select_link_viewer(
|
|
1768
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1769
1548
|
execution_context: int | str | None = None,
|
|
1770
1549
|
undo: bool | None = None,
|
|
1550
|
+
/,
|
|
1771
1551
|
*,
|
|
1772
1552
|
NODE_OT_select: select | None = None,
|
|
1773
1553
|
NODE_OT_link_viewer: link_viewer | None = None,
|
|
1774
1554
|
):
|
|
1775
1555
|
"""Select node and link it to a viewer node
|
|
1776
1556
|
|
|
1777
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1778
1557
|
:type execution_context: int | str | None
|
|
1779
1558
|
:type undo: bool | None
|
|
1780
1559
|
:param NODE_OT_select: Select, Select the node under the cursor
|
|
@@ -1784,39 +1563,32 @@ def select_link_viewer(
|
|
|
1784
1563
|
"""
|
|
1785
1564
|
|
|
1786
1565
|
def select_linked_from(
|
|
1787
|
-
|
|
1788
|
-
execution_context: int | str | None = None,
|
|
1789
|
-
undo: bool | None = None,
|
|
1566
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1790
1567
|
):
|
|
1791
1568
|
"""Select nodes linked from the selected ones
|
|
1792
1569
|
|
|
1793
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1794
1570
|
:type execution_context: int | str | None
|
|
1795
1571
|
:type undo: bool | None
|
|
1796
1572
|
"""
|
|
1797
1573
|
|
|
1798
1574
|
def select_linked_to(
|
|
1799
|
-
|
|
1800
|
-
execution_context: int | str | None = None,
|
|
1801
|
-
undo: bool | None = None,
|
|
1575
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1802
1576
|
):
|
|
1803
1577
|
"""Select nodes linked to the selected ones
|
|
1804
1578
|
|
|
1805
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1806
1579
|
:type execution_context: int | str | None
|
|
1807
1580
|
:type undo: bool | None
|
|
1808
1581
|
"""
|
|
1809
1582
|
|
|
1810
1583
|
def select_same_type_step(
|
|
1811
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1812
1584
|
execution_context: int | str | None = None,
|
|
1813
1585
|
undo: bool | None = None,
|
|
1586
|
+
/,
|
|
1814
1587
|
*,
|
|
1815
1588
|
prev: bool | None = False,
|
|
1816
1589
|
):
|
|
1817
1590
|
"""Activate and view same node type, step by step
|
|
1818
1591
|
|
|
1819
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1820
1592
|
:type execution_context: int | str | None
|
|
1821
1593
|
:type undo: bool | None
|
|
1822
1594
|
:param prev: Previous
|
|
@@ -1824,39 +1596,32 @@ def select_same_type_step(
|
|
|
1824
1596
|
"""
|
|
1825
1597
|
|
|
1826
1598
|
def shader_script_update(
|
|
1827
|
-
|
|
1828
|
-
execution_context: int | str | None = None,
|
|
1829
|
-
undo: bool | None = None,
|
|
1599
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1830
1600
|
):
|
|
1831
1601
|
"""Update shader script node with new sockets and options from the script
|
|
1832
1602
|
|
|
1833
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1834
1603
|
:type execution_context: int | str | None
|
|
1835
1604
|
:type undo: bool | None
|
|
1836
1605
|
"""
|
|
1837
1606
|
|
|
1838
1607
|
def simulation_zone_item_add(
|
|
1839
|
-
|
|
1840
|
-
execution_context: int | str | None = None,
|
|
1841
|
-
undo: bool | None = None,
|
|
1608
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1842
1609
|
):
|
|
1843
1610
|
"""Add item below active item
|
|
1844
1611
|
|
|
1845
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1846
1612
|
:type execution_context: int | str | None
|
|
1847
1613
|
:type undo: bool | None
|
|
1848
1614
|
"""
|
|
1849
1615
|
|
|
1850
1616
|
def simulation_zone_item_move(
|
|
1851
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1852
1617
|
execution_context: int | str | None = None,
|
|
1853
1618
|
undo: bool | None = None,
|
|
1619
|
+
/,
|
|
1854
1620
|
*,
|
|
1855
1621
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1856
1622
|
):
|
|
1857
1623
|
"""Move active item
|
|
1858
1624
|
|
|
1859
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1860
1625
|
:type execution_context: int | str | None
|
|
1861
1626
|
:type undo: bool | None
|
|
1862
1627
|
:param direction: Direction, Move direction
|
|
@@ -1864,28 +1629,24 @@ def simulation_zone_item_move(
|
|
|
1864
1629
|
"""
|
|
1865
1630
|
|
|
1866
1631
|
def simulation_zone_item_remove(
|
|
1867
|
-
|
|
1868
|
-
execution_context: int | str | None = None,
|
|
1869
|
-
undo: bool | None = None,
|
|
1632
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1870
1633
|
):
|
|
1871
1634
|
"""Remove active item
|
|
1872
1635
|
|
|
1873
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1874
1636
|
:type execution_context: int | str | None
|
|
1875
1637
|
:type undo: bool | None
|
|
1876
1638
|
"""
|
|
1877
1639
|
|
|
1878
1640
|
def translate_attach(
|
|
1879
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1880
1641
|
execution_context: int | str | None = None,
|
|
1881
1642
|
undo: bool | None = None,
|
|
1643
|
+
/,
|
|
1882
1644
|
*,
|
|
1883
1645
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
1884
1646
|
NODE_OT_attach: attach | None = None,
|
|
1885
1647
|
):
|
|
1886
1648
|
"""Move nodes and attach to frame
|
|
1887
1649
|
|
|
1888
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1889
1650
|
:type execution_context: int | str | None
|
|
1890
1651
|
:type undo: bool | None
|
|
1891
1652
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
@@ -1895,16 +1656,15 @@ def translate_attach(
|
|
|
1895
1656
|
"""
|
|
1896
1657
|
|
|
1897
1658
|
def translate_attach_remove_on_cancel(
|
|
1898
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1899
1659
|
execution_context: int | str | None = None,
|
|
1900
1660
|
undo: bool | None = None,
|
|
1661
|
+
/,
|
|
1901
1662
|
*,
|
|
1902
1663
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
1903
1664
|
NODE_OT_attach: attach | None = None,
|
|
1904
1665
|
):
|
|
1905
1666
|
"""Move nodes and attach to frame
|
|
1906
1667
|
|
|
1907
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1908
1668
|
:type execution_context: int | str | None
|
|
1909
1669
|
:type undo: bool | None
|
|
1910
1670
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
@@ -1914,45 +1674,32 @@ def translate_attach_remove_on_cancel(
|
|
|
1914
1674
|
"""
|
|
1915
1675
|
|
|
1916
1676
|
def tree_path_parent(
|
|
1917
|
-
|
|
1918
|
-
execution_context: int | str | None = None,
|
|
1919
|
-
undo: bool | None = None,
|
|
1677
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1920
1678
|
):
|
|
1921
1679
|
"""Go to parent node tree
|
|
1922
1680
|
|
|
1923
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1924
1681
|
:type execution_context: int | str | None
|
|
1925
1682
|
:type undo: bool | None
|
|
1926
1683
|
"""
|
|
1927
1684
|
|
|
1928
|
-
def view_all(
|
|
1929
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1930
|
-
execution_context: int | str | None = None,
|
|
1931
|
-
undo: bool | None = None,
|
|
1932
|
-
):
|
|
1685
|
+
def view_all(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1933
1686
|
"""Resize view so you can see all nodes
|
|
1934
1687
|
|
|
1935
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1936
1688
|
:type execution_context: int | str | None
|
|
1937
1689
|
:type undo: bool | None
|
|
1938
1690
|
"""
|
|
1939
1691
|
|
|
1940
|
-
def view_selected(
|
|
1941
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1942
|
-
execution_context: int | str | None = None,
|
|
1943
|
-
undo: bool | None = None,
|
|
1944
|
-
):
|
|
1692
|
+
def view_selected(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1945
1693
|
"""Resize view so you can see selected nodes
|
|
1946
1694
|
|
|
1947
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1948
1695
|
:type execution_context: int | str | None
|
|
1949
1696
|
:type undo: bool | None
|
|
1950
1697
|
"""
|
|
1951
1698
|
|
|
1952
1699
|
def viewer_border(
|
|
1953
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1954
1700
|
execution_context: int | str | None = None,
|
|
1955
1701
|
undo: bool | None = None,
|
|
1702
|
+
/,
|
|
1956
1703
|
*,
|
|
1957
1704
|
xmin: int | None = 0,
|
|
1958
1705
|
xmax: int | None = 0,
|
|
@@ -1962,7 +1709,6 @@ def viewer_border(
|
|
|
1962
1709
|
):
|
|
1963
1710
|
"""Set the boundaries for viewer operations
|
|
1964
1711
|
|
|
1965
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1966
1712
|
:type execution_context: int | str | None
|
|
1967
1713
|
:type undo: bool | None
|
|
1968
1714
|
:param xmin: X Min
|
|
@@ -1976,3 +1722,33 @@ def viewer_border(
|
|
|
1976
1722
|
:param wait_for_input: Wait for Input
|
|
1977
1723
|
:type wait_for_input: bool | None
|
|
1978
1724
|
"""
|
|
1725
|
+
|
|
1726
|
+
def viewer_shortcut_get(
|
|
1727
|
+
execution_context: int | str | None = None,
|
|
1728
|
+
undo: bool | None = None,
|
|
1729
|
+
/,
|
|
1730
|
+
*,
|
|
1731
|
+
viewer_index: int | None = 0,
|
|
1732
|
+
):
|
|
1733
|
+
"""Activate a specific compositor viewer node using 1,2,..,9 keys
|
|
1734
|
+
|
|
1735
|
+
:type execution_context: int | str | None
|
|
1736
|
+
:type undo: bool | None
|
|
1737
|
+
:param viewer_index: Viewer Index, Index corresponding to the shortcut, e.g. number key 1 corresponds to index 1 etc..
|
|
1738
|
+
:type viewer_index: int | None
|
|
1739
|
+
"""
|
|
1740
|
+
|
|
1741
|
+
def viewer_shortcut_set(
|
|
1742
|
+
execution_context: int | str | None = None,
|
|
1743
|
+
undo: bool | None = None,
|
|
1744
|
+
/,
|
|
1745
|
+
*,
|
|
1746
|
+
viewer_index: int | None = 0,
|
|
1747
|
+
):
|
|
1748
|
+
"""Create a compositor viewer shortcut for the selected node by pressing ctrl+1,2,..9
|
|
1749
|
+
|
|
1750
|
+
:type execution_context: int | str | None
|
|
1751
|
+
:type undo: bool | None
|
|
1752
|
+
:param viewer_index: Viewer Index, Index corresponding to the shortcut, e.g. number key 1 corresponds to index 1 etc..
|
|
1753
|
+
:type viewer_index: int | None
|
|
1754
|
+
"""
|