fake-bpy-module 20240620__py3-none-any.whl → 20240622__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/space_userpref/__init__.pyi +225 -0
- bpy/ops/action/__init__.pyi +50 -50
- bpy/ops/anim/__init__.pyi +94 -94
- bpy/ops/armature/__init__.pyi +54 -54
- bpy/ops/asset/__init__.pyi +50 -50
- bpy/ops/brush/__init__.pyi +10 -10
- bpy/ops/buttons/__init__.pyi +88 -88
- bpy/ops/cachefile/__init__.pyi +88 -88
- bpy/ops/camera/__init__.pyi +14 -14
- bpy/ops/clip/__init__.pyi +175 -174
- bpy/ops/cloth/__init__.pyi +6 -6
- bpy/ops/collection/__init__.pyi +8 -8
- bpy/ops/console/__init__.pyi +26 -26
- bpy/ops/constraint/__init__.pyi +42 -42
- bpy/ops/curve/__init__.pyi +167 -122
- bpy/ops/curves/__init__.pyi +75 -58
- bpy/ops/cycles/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +50 -50
- bpy/ops/export_anim/__init__.pyi +14 -14
- bpy/ops/export_scene/__init__.pyi +250 -250
- bpy/ops/extensions/__init__.pyi +73 -73
- bpy/ops/file/__init__.pyi +94 -94
- bpy/ops/fluid/__init__.pyi +6 -6
- bpy/ops/font/__init__.pyi +100 -100
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +10 -10
- bpy/ops/gpencil/__init__.pyi +411 -410
- bpy/ops/graph/__init__.pyi +194 -194
- bpy/ops/grease_pencil/__init__.pyi +100 -100
- bpy/ops/image/__init__.pyi +399 -390
- bpy/ops/import_anim/__init__.pyi +16 -16
- bpy/ops/import_curve/__init__.pyi +4 -4
- bpy/ops/import_scene/__init__.pyi +56 -56
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +8 -8
- bpy/ops/marker/__init__.pyi +34 -34
- bpy/ops/mask/__init__.pyi +63 -62
- bpy/ops/mball/__init__.pyi +12 -12
- bpy/ops/mesh/__init__.pyi +893 -790
- bpy/ops/nla/__init__.pyi +70 -70
- bpy/ops/node/__init__.pyi +192 -192
- bpy/ops/object/__init__.pyi +1013 -840
- bpy/ops/outliner/__init__.pyi +44 -44
- bpy/ops/paint/__init__.pyi +169 -168
- bpy/ops/paintcurve/__init__.pyi +12 -12
- bpy/ops/palette/__init__.pyi +4 -4
- bpy/ops/particle/__init__.pyi +34 -34
- bpy/ops/pose/__init__.pyi +60 -60
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +150 -150
- bpy/ops/ptcache/__init__.pyi +4 -4
- bpy/ops/render/__init__.pyi +56 -56
- bpy/ops/rigidbody/__init__.pyi +8 -8
- bpy/ops/scene/__init__.pyi +20 -20
- bpy/ops/screen/__init__.pyi +128 -128
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +207 -202
- bpy/ops/sculpt_curves/__init__.pyi +12 -12
- bpy/ops/sequencer/__init__.pyi +465 -464
- bpy/ops/sound/__init__.pyi +154 -154
- bpy/ops/spreadsheet/__init__.pyi +6 -6
- bpy/ops/surface/__init__.pyi +109 -60
- bpy/ops/text/__init__.pyi +110 -110
- bpy/ops/text_editor/__init__.pyi +6 -6
- bpy/ops/transform/__init__.pyi +628 -566
- bpy/ops/ui/__init__.pyi +25 -24
- bpy/ops/uilist/__init__.pyi +12 -12
- bpy/ops/uv/__init__.pyi +235 -234
- bpy/ops/view2d/__init__.pyi +72 -72
- bpy/ops/view3d/__init__.pyi +144 -144
- bpy/ops/wm/__init__.pyi +1813 -1806
- bpy/ops/workspace/__init__.pyi +4 -4
- bpy/types/__init__.pyi +1614 -1805
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240622.dist-info}/METADATA +3 -5
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240622.dist-info}/RECORD +77 -77
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240622.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240622.dist-info}/top_level.txt +0 -0
bpy/ops/font/__init__.pyi
CHANGED
|
@@ -42,7 +42,7 @@ def change_character(
|
|
|
42
42
|
execution_context: int | str | None = None,
|
|
43
43
|
undo: bool | None = None,
|
|
44
44
|
*,
|
|
45
|
-
delta:
|
|
45
|
+
delta: int | None = 1,
|
|
46
46
|
):
|
|
47
47
|
"""Change font character code
|
|
48
48
|
|
|
@@ -50,7 +50,7 @@ def change_character(
|
|
|
50
50
|
:type execution_context: int | str | None
|
|
51
51
|
:type undo: bool | None
|
|
52
52
|
:param delta: Delta, Number to increase or decrease character code with
|
|
53
|
-
:type delta:
|
|
53
|
+
:type delta: int | None
|
|
54
54
|
"""
|
|
55
55
|
|
|
56
56
|
...
|
|
@@ -60,7 +60,7 @@ def change_spacing(
|
|
|
60
60
|
execution_context: int | str | None = None,
|
|
61
61
|
undo: bool | None = None,
|
|
62
62
|
*,
|
|
63
|
-
delta:
|
|
63
|
+
delta: float | None = 1.0,
|
|
64
64
|
):
|
|
65
65
|
"""Change font spacing
|
|
66
66
|
|
|
@@ -68,7 +68,7 @@ def change_spacing(
|
|
|
68
68
|
:type execution_context: int | str | None
|
|
69
69
|
:type undo: bool | None
|
|
70
70
|
:param delta: Delta, Amount to decrease or increase character spacing with
|
|
71
|
-
:type delta:
|
|
71
|
+
:type delta: float | None
|
|
72
72
|
"""
|
|
73
73
|
|
|
74
74
|
...
|
|
@@ -146,28 +146,28 @@ def open(
|
|
|
146
146
|
execution_context: int | str | None = None,
|
|
147
147
|
undo: bool | None = None,
|
|
148
148
|
*,
|
|
149
|
-
filepath: str
|
|
150
|
-
hide_props_region: bool |
|
|
151
|
-
check_existing: bool |
|
|
152
|
-
filter_blender: bool |
|
|
153
|
-
filter_backup: bool |
|
|
154
|
-
filter_image: bool |
|
|
155
|
-
filter_movie: bool |
|
|
156
|
-
filter_python: bool |
|
|
157
|
-
filter_font: bool |
|
|
158
|
-
filter_sound: bool |
|
|
159
|
-
filter_text: bool |
|
|
160
|
-
filter_archive: bool |
|
|
161
|
-
filter_btx: bool |
|
|
162
|
-
filter_collada: bool |
|
|
163
|
-
filter_alembic: bool |
|
|
164
|
-
filter_usd: bool |
|
|
165
|
-
filter_obj: bool |
|
|
166
|
-
filter_volume: bool |
|
|
167
|
-
filter_folder: bool |
|
|
168
|
-
filter_blenlib: bool |
|
|
169
|
-
filemode:
|
|
170
|
-
relative_path: bool |
|
|
149
|
+
filepath: str = "",
|
|
150
|
+
hide_props_region: bool | None = True,
|
|
151
|
+
check_existing: bool | None = False,
|
|
152
|
+
filter_blender: bool | None = False,
|
|
153
|
+
filter_backup: bool | None = False,
|
|
154
|
+
filter_image: bool | None = False,
|
|
155
|
+
filter_movie: bool | None = False,
|
|
156
|
+
filter_python: bool | None = False,
|
|
157
|
+
filter_font: bool | None = True,
|
|
158
|
+
filter_sound: bool | None = False,
|
|
159
|
+
filter_text: bool | None = False,
|
|
160
|
+
filter_archive: bool | None = False,
|
|
161
|
+
filter_btx: bool | None = False,
|
|
162
|
+
filter_collada: bool | None = False,
|
|
163
|
+
filter_alembic: bool | None = False,
|
|
164
|
+
filter_usd: bool | None = False,
|
|
165
|
+
filter_obj: bool | None = False,
|
|
166
|
+
filter_volume: bool | None = False,
|
|
167
|
+
filter_folder: bool | None = True,
|
|
168
|
+
filter_blenlib: bool | None = False,
|
|
169
|
+
filemode: int | None = 9,
|
|
170
|
+
relative_path: bool | None = True,
|
|
171
171
|
display_type: str | None = "THUMBNAIL",
|
|
172
172
|
sort_method: str | None = "",
|
|
173
173
|
):
|
|
@@ -177,49 +177,49 @@ def open(
|
|
|
177
177
|
:type execution_context: int | str | None
|
|
178
178
|
:type undo: bool | None
|
|
179
179
|
:param filepath: File Path, Path to file
|
|
180
|
-
:type filepath: str
|
|
180
|
+
:type filepath: str
|
|
181
181
|
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
182
|
-
:type hide_props_region: bool |
|
|
182
|
+
:type hide_props_region: bool | None
|
|
183
183
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
184
|
-
:type check_existing: bool |
|
|
184
|
+
:type check_existing: bool | None
|
|
185
185
|
:param filter_blender: Filter .blend files
|
|
186
|
-
:type filter_blender: bool |
|
|
186
|
+
:type filter_blender: bool | None
|
|
187
187
|
:param filter_backup: Filter .blend files
|
|
188
|
-
:type filter_backup: bool |
|
|
188
|
+
:type filter_backup: bool | None
|
|
189
189
|
:param filter_image: Filter image files
|
|
190
|
-
:type filter_image: bool |
|
|
190
|
+
:type filter_image: bool | None
|
|
191
191
|
:param filter_movie: Filter movie files
|
|
192
|
-
:type filter_movie: bool |
|
|
192
|
+
:type filter_movie: bool | None
|
|
193
193
|
:param filter_python: Filter Python files
|
|
194
|
-
:type filter_python: bool |
|
|
194
|
+
:type filter_python: bool | None
|
|
195
195
|
:param filter_font: Filter font files
|
|
196
|
-
:type filter_font: bool |
|
|
196
|
+
:type filter_font: bool | None
|
|
197
197
|
:param filter_sound: Filter sound files
|
|
198
|
-
:type filter_sound: bool |
|
|
198
|
+
:type filter_sound: bool | None
|
|
199
199
|
:param filter_text: Filter text files
|
|
200
|
-
:type filter_text: bool |
|
|
200
|
+
:type filter_text: bool | None
|
|
201
201
|
:param filter_archive: Filter archive files
|
|
202
|
-
:type filter_archive: bool |
|
|
202
|
+
:type filter_archive: bool | None
|
|
203
203
|
:param filter_btx: Filter btx files
|
|
204
|
-
:type filter_btx: bool |
|
|
204
|
+
:type filter_btx: bool | None
|
|
205
205
|
:param filter_collada: Filter COLLADA files
|
|
206
|
-
:type filter_collada: bool |
|
|
206
|
+
:type filter_collada: bool | None
|
|
207
207
|
:param filter_alembic: Filter Alembic files
|
|
208
|
-
:type filter_alembic: bool |
|
|
208
|
+
:type filter_alembic: bool | None
|
|
209
209
|
:param filter_usd: Filter USD files
|
|
210
|
-
:type filter_usd: bool |
|
|
210
|
+
:type filter_usd: bool | None
|
|
211
211
|
:param filter_obj: Filter OBJ files
|
|
212
|
-
:type filter_obj: bool |
|
|
212
|
+
:type filter_obj: bool | None
|
|
213
213
|
:param filter_volume: Filter OpenVDB volume files
|
|
214
|
-
:type filter_volume: bool |
|
|
214
|
+
:type filter_volume: bool | None
|
|
215
215
|
:param filter_folder: Filter folders
|
|
216
|
-
:type filter_folder: bool |
|
|
216
|
+
:type filter_folder: bool | None
|
|
217
217
|
:param filter_blenlib: Filter Blender IDs
|
|
218
|
-
:type filter_blenlib: bool |
|
|
218
|
+
:type filter_blenlib: bool | None
|
|
219
219
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
220
|
-
:type filemode:
|
|
220
|
+
:type filemode: int | None
|
|
221
221
|
:param relative_path: Relative Path, Select the file relative to the blend file
|
|
222
|
-
:type relative_path: bool |
|
|
222
|
+
:type relative_path: bool | None
|
|
223
223
|
:param display_type: Display Type
|
|
224
224
|
|
|
225
225
|
DEFAULT
|
|
@@ -288,7 +288,7 @@ def style_set(
|
|
|
288
288
|
undo: bool | None = None,
|
|
289
289
|
*,
|
|
290
290
|
style: str | None = "BOLD",
|
|
291
|
-
clear: bool |
|
|
291
|
+
clear: bool | None = False,
|
|
292
292
|
):
|
|
293
293
|
"""Set font style
|
|
294
294
|
|
|
@@ -298,7 +298,7 @@ def style_set(
|
|
|
298
298
|
:param style: Style, Style to set selection to
|
|
299
299
|
:type style: str | None
|
|
300
300
|
:param clear: Clear, Clear style rather than setting it
|
|
301
|
-
:type clear: bool |
|
|
301
|
+
:type clear: bool | None
|
|
302
302
|
"""
|
|
303
303
|
|
|
304
304
|
...
|
|
@@ -354,8 +354,8 @@ def text_insert(
|
|
|
354
354
|
execution_context: int | str | None = None,
|
|
355
355
|
undo: bool | None = None,
|
|
356
356
|
*,
|
|
357
|
-
text: str
|
|
358
|
-
accent: bool |
|
|
357
|
+
text: str = "",
|
|
358
|
+
accent: bool | None = False,
|
|
359
359
|
):
|
|
360
360
|
"""Insert text at cursor position
|
|
361
361
|
|
|
@@ -363,9 +363,9 @@ def text_insert(
|
|
|
363
363
|
:type execution_context: int | str | None
|
|
364
364
|
:type undo: bool | None
|
|
365
365
|
:param text: Text, Text to insert at the cursor position
|
|
366
|
-
:type text: str
|
|
366
|
+
:type text: str
|
|
367
367
|
:param accent: Accent Mode, Next typed character will strike through previous, for special character input
|
|
368
|
-
:type accent: bool |
|
|
368
|
+
:type accent: bool | None
|
|
369
369
|
"""
|
|
370
370
|
|
|
371
371
|
...
|
|
@@ -389,7 +389,7 @@ def text_paste(
|
|
|
389
389
|
execution_context: int | str | None = None,
|
|
390
390
|
undo: bool | None = None,
|
|
391
391
|
*,
|
|
392
|
-
selection: bool |
|
|
392
|
+
selection: bool | None = False,
|
|
393
393
|
):
|
|
394
394
|
"""Paste text from clipboard
|
|
395
395
|
|
|
@@ -397,7 +397,7 @@ def text_paste(
|
|
|
397
397
|
:type execution_context: int | str | None
|
|
398
398
|
:type undo: bool | None
|
|
399
399
|
:param selection: Selection, Paste text selected elsewhere rather than copied (X11/Wayland only)
|
|
400
|
-
:type selection: bool |
|
|
400
|
+
:type selection: bool | None
|
|
401
401
|
"""
|
|
402
402
|
|
|
403
403
|
...
|
|
@@ -407,27 +407,27 @@ def text_paste_from_file(
|
|
|
407
407
|
execution_context: int | str | None = None,
|
|
408
408
|
undo: bool | None = None,
|
|
409
409
|
*,
|
|
410
|
-
filepath: str
|
|
411
|
-
hide_props_region: bool |
|
|
412
|
-
check_existing: bool |
|
|
413
|
-
filter_blender: bool |
|
|
414
|
-
filter_backup: bool |
|
|
415
|
-
filter_image: bool |
|
|
416
|
-
filter_movie: bool |
|
|
417
|
-
filter_python: bool |
|
|
418
|
-
filter_font: bool |
|
|
419
|
-
filter_sound: bool |
|
|
420
|
-
filter_text: bool |
|
|
421
|
-
filter_archive: bool |
|
|
422
|
-
filter_btx: bool |
|
|
423
|
-
filter_collada: bool |
|
|
424
|
-
filter_alembic: bool |
|
|
425
|
-
filter_usd: bool |
|
|
426
|
-
filter_obj: bool |
|
|
427
|
-
filter_volume: bool |
|
|
428
|
-
filter_folder: bool |
|
|
429
|
-
filter_blenlib: bool |
|
|
430
|
-
filemode:
|
|
410
|
+
filepath: str = "",
|
|
411
|
+
hide_props_region: bool | None = True,
|
|
412
|
+
check_existing: bool | None = False,
|
|
413
|
+
filter_blender: bool | None = False,
|
|
414
|
+
filter_backup: bool | None = False,
|
|
415
|
+
filter_image: bool | None = False,
|
|
416
|
+
filter_movie: bool | None = False,
|
|
417
|
+
filter_python: bool | None = False,
|
|
418
|
+
filter_font: bool | None = False,
|
|
419
|
+
filter_sound: bool | None = False,
|
|
420
|
+
filter_text: bool | None = True,
|
|
421
|
+
filter_archive: bool | None = False,
|
|
422
|
+
filter_btx: bool | None = False,
|
|
423
|
+
filter_collada: bool | None = False,
|
|
424
|
+
filter_alembic: bool | None = False,
|
|
425
|
+
filter_usd: bool | None = False,
|
|
426
|
+
filter_obj: bool | None = False,
|
|
427
|
+
filter_volume: bool | None = False,
|
|
428
|
+
filter_folder: bool | None = True,
|
|
429
|
+
filter_blenlib: bool | None = False,
|
|
430
|
+
filemode: int | None = 9,
|
|
431
431
|
display_type: str | None = "DEFAULT",
|
|
432
432
|
sort_method: str | None = "",
|
|
433
433
|
):
|
|
@@ -437,47 +437,47 @@ def text_paste_from_file(
|
|
|
437
437
|
:type execution_context: int | str | None
|
|
438
438
|
:type undo: bool | None
|
|
439
439
|
:param filepath: File Path, Path to file
|
|
440
|
-
:type filepath: str
|
|
440
|
+
:type filepath: str
|
|
441
441
|
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
442
|
-
:type hide_props_region: bool |
|
|
442
|
+
:type hide_props_region: bool | None
|
|
443
443
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
444
|
-
:type check_existing: bool |
|
|
444
|
+
:type check_existing: bool | None
|
|
445
445
|
:param filter_blender: Filter .blend files
|
|
446
|
-
:type filter_blender: bool |
|
|
446
|
+
:type filter_blender: bool | None
|
|
447
447
|
:param filter_backup: Filter .blend files
|
|
448
|
-
:type filter_backup: bool |
|
|
448
|
+
:type filter_backup: bool | None
|
|
449
449
|
:param filter_image: Filter image files
|
|
450
|
-
:type filter_image: bool |
|
|
450
|
+
:type filter_image: bool | None
|
|
451
451
|
:param filter_movie: Filter movie files
|
|
452
|
-
:type filter_movie: bool |
|
|
452
|
+
:type filter_movie: bool | None
|
|
453
453
|
:param filter_python: Filter Python files
|
|
454
|
-
:type filter_python: bool |
|
|
454
|
+
:type filter_python: bool | None
|
|
455
455
|
:param filter_font: Filter font files
|
|
456
|
-
:type filter_font: bool |
|
|
456
|
+
:type filter_font: bool | None
|
|
457
457
|
:param filter_sound: Filter sound files
|
|
458
|
-
:type filter_sound: bool |
|
|
458
|
+
:type filter_sound: bool | None
|
|
459
459
|
:param filter_text: Filter text files
|
|
460
|
-
:type filter_text: bool |
|
|
460
|
+
:type filter_text: bool | None
|
|
461
461
|
:param filter_archive: Filter archive files
|
|
462
|
-
:type filter_archive: bool |
|
|
462
|
+
:type filter_archive: bool | None
|
|
463
463
|
:param filter_btx: Filter btx files
|
|
464
|
-
:type filter_btx: bool |
|
|
464
|
+
:type filter_btx: bool | None
|
|
465
465
|
:param filter_collada: Filter COLLADA files
|
|
466
|
-
:type filter_collada: bool |
|
|
466
|
+
:type filter_collada: bool | None
|
|
467
467
|
:param filter_alembic: Filter Alembic files
|
|
468
|
-
:type filter_alembic: bool |
|
|
468
|
+
:type filter_alembic: bool | None
|
|
469
469
|
:param filter_usd: Filter USD files
|
|
470
|
-
:type filter_usd: bool |
|
|
470
|
+
:type filter_usd: bool | None
|
|
471
471
|
:param filter_obj: Filter OBJ files
|
|
472
|
-
:type filter_obj: bool |
|
|
472
|
+
:type filter_obj: bool | None
|
|
473
473
|
:param filter_volume: Filter OpenVDB volume files
|
|
474
|
-
:type filter_volume: bool |
|
|
474
|
+
:type filter_volume: bool | None
|
|
475
475
|
:param filter_folder: Filter folders
|
|
476
|
-
:type filter_folder: bool |
|
|
476
|
+
:type filter_folder: bool | None
|
|
477
477
|
:param filter_blenlib: Filter Blender IDs
|
|
478
|
-
:type filter_blenlib: bool |
|
|
478
|
+
:type filter_blenlib: bool | None
|
|
479
479
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
480
|
-
:type filemode:
|
|
480
|
+
:type filemode: int | None
|
|
481
481
|
:param display_type: Display Type
|
|
482
482
|
|
|
483
483
|
DEFAULT
|
|
@@ -517,7 +517,7 @@ def textbox_remove(
|
|
|
517
517
|
execution_context: int | str | None = None,
|
|
518
518
|
undo: bool | None = None,
|
|
519
519
|
*,
|
|
520
|
-
index:
|
|
520
|
+
index: int | None = 0,
|
|
521
521
|
):
|
|
522
522
|
"""Remove the text box
|
|
523
523
|
|
|
@@ -525,7 +525,7 @@ def textbox_remove(
|
|
|
525
525
|
:type execution_context: int | str | None
|
|
526
526
|
:type undo: bool | None
|
|
527
527
|
:param index: Index, The current text box
|
|
528
|
-
:type index:
|
|
528
|
+
:type index: int | None
|
|
529
529
|
"""
|
|
530
530
|
|
|
531
531
|
...
|
bpy/ops/geometry/__init__.pyi
CHANGED
|
@@ -10,7 +10,7 @@ def attribute_add(
|
|
|
10
10
|
execution_context: int | str | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
12
|
*,
|
|
13
|
-
name: str
|
|
13
|
+
name: str = "",
|
|
14
14
|
domain: str | None = "POINT",
|
|
15
15
|
data_type: str | None = "FLOAT",
|
|
16
16
|
):
|
|
@@ -20,7 +20,7 @@ def attribute_add(
|
|
|
20
20
|
:type execution_context: int | str | None
|
|
21
21
|
:type undo: bool | None
|
|
22
22
|
:param name: Name, Name of new attribute
|
|
23
|
-
:type name: str
|
|
23
|
+
:type name: str
|
|
24
24
|
:param domain: Domain, Type of element that attribute is stored on
|
|
25
25
|
:type domain: str | None
|
|
26
26
|
:param data_type: Data Type, Type of data stored in attribute
|
|
@@ -72,10 +72,10 @@ def color_attribute_add(
|
|
|
72
72
|
execution_context: int | str | None = None,
|
|
73
73
|
undo: bool | None = None,
|
|
74
74
|
*,
|
|
75
|
-
name: str
|
|
75
|
+
name: str = "",
|
|
76
76
|
domain: str | None = "POINT",
|
|
77
77
|
data_type: str | None = "FLOAT_COLOR",
|
|
78
|
-
color:
|
|
78
|
+
color: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0, 1.0),
|
|
79
79
|
):
|
|
80
80
|
"""Add color attribute to geometry
|
|
81
81
|
|
|
@@ -83,13 +83,13 @@ def color_attribute_add(
|
|
|
83
83
|
:type execution_context: int | str | None
|
|
84
84
|
:type undo: bool | None
|
|
85
85
|
:param name: Name, Name of new color attribute
|
|
86
|
-
:type name: str
|
|
86
|
+
:type name: str
|
|
87
87
|
:param domain: Domain, Type of element that attribute is stored on
|
|
88
88
|
:type domain: str | None
|
|
89
89
|
:param data_type: Data Type, Type of data stored in attribute
|
|
90
90
|
:type data_type: str | None
|
|
91
91
|
:param color: Color, Default fill color
|
|
92
|
-
:type color:
|
|
92
|
+
:type color: collections.abc.Iterable[float] | None
|
|
93
93
|
"""
|
|
94
94
|
|
|
95
95
|
...
|
|
@@ -148,7 +148,7 @@ def color_attribute_render_set(
|
|
|
148
148
|
execution_context: int | str | None = None,
|
|
149
149
|
undo: bool | None = None,
|
|
150
150
|
*,
|
|
151
|
-
name: str
|
|
151
|
+
name: str = "Color",
|
|
152
152
|
):
|
|
153
153
|
"""Set default color attribute used for rendering
|
|
154
154
|
|
|
@@ -156,7 +156,7 @@ def color_attribute_render_set(
|
|
|
156
156
|
:type execution_context: int | str | None
|
|
157
157
|
:type undo: bool | None
|
|
158
158
|
:param name: Name, Name of color attribute
|
|
159
|
-
:type name: str
|
|
159
|
+
:type name: str
|
|
160
160
|
"""
|
|
161
161
|
|
|
162
162
|
...
|
|
@@ -167,11 +167,11 @@ def execute_node_group(
|
|
|
167
167
|
undo: bool | None = None,
|
|
168
168
|
*,
|
|
169
169
|
asset_library_type: str | None = "LOCAL",
|
|
170
|
-
asset_library_identifier: str
|
|
171
|
-
relative_asset_identifier: str
|
|
172
|
-
name: str
|
|
173
|
-
session_uid:
|
|
174
|
-
mouse_position:
|
|
170
|
+
asset_library_identifier: str = "",
|
|
171
|
+
relative_asset_identifier: str = "",
|
|
172
|
+
name: str = "",
|
|
173
|
+
session_uid: int | None = 0,
|
|
174
|
+
mouse_position: collections.abc.Iterable[int] | None = (0, 0),
|
|
175
175
|
):
|
|
176
176
|
"""Execute a node group on geometry
|
|
177
177
|
|
|
@@ -181,15 +181,15 @@ def execute_node_group(
|
|
|
181
181
|
:param asset_library_type: Asset Library Type
|
|
182
182
|
:type asset_library_type: str | None
|
|
183
183
|
:param asset_library_identifier: Asset Library Identifier
|
|
184
|
-
:type asset_library_identifier: str
|
|
184
|
+
:type asset_library_identifier: str
|
|
185
185
|
:param relative_asset_identifier: Relative Asset Identifier
|
|
186
|
-
:type relative_asset_identifier: str
|
|
186
|
+
:type relative_asset_identifier: str
|
|
187
187
|
:param name: Name, Name of the data-block to use by the operator
|
|
188
|
-
:type name: str
|
|
188
|
+
:type name: str
|
|
189
189
|
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
190
|
-
:type session_uid:
|
|
190
|
+
:type session_uid: int | None
|
|
191
191
|
:param mouse_position: Mouse Position, Mouse coordinates in region space
|
|
192
|
-
:type mouse_position:
|
|
192
|
+
:type mouse_position: collections.abc.Iterable[int] | None
|
|
193
193
|
"""
|
|
194
194
|
|
|
195
195
|
...
|
|
@@ -199,7 +199,7 @@ def geometry_randomization(
|
|
|
199
199
|
execution_context: int | str | None = None,
|
|
200
200
|
undo: bool | None = None,
|
|
201
201
|
*,
|
|
202
|
-
value: bool |
|
|
202
|
+
value: bool | None = False,
|
|
203
203
|
):
|
|
204
204
|
"""Toggle geometry randomization for debugging purposes
|
|
205
205
|
|
|
@@ -207,7 +207,7 @@ def geometry_randomization(
|
|
|
207
207
|
:type execution_context: int | str | None
|
|
208
208
|
:type undo: bool | None
|
|
209
209
|
:param value: Value, Randomize the order of geometry elements (e.g. vertices or edges) after some operations where there are no guarantees about the order. This avoids accidentally depending on something that may change in the future
|
|
210
|
-
:type value: bool |
|
|
210
|
+
:type value: bool | None
|
|
211
211
|
"""
|
|
212
212
|
|
|
213
213
|
...
|
bpy/ops/gizmogroup/__init__.pyi
CHANGED
|
@@ -10,11 +10,11 @@ def gizmo_select(
|
|
|
10
10
|
execution_context: int | str | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
12
|
*,
|
|
13
|
-
extend: bool |
|
|
14
|
-
deselect: bool |
|
|
15
|
-
toggle: bool |
|
|
16
|
-
deselect_all: bool |
|
|
17
|
-
select_passthrough: bool |
|
|
13
|
+
extend: bool | None = False,
|
|
14
|
+
deselect: bool | None = False,
|
|
15
|
+
toggle: bool | None = False,
|
|
16
|
+
deselect_all: bool | None = False,
|
|
17
|
+
select_passthrough: bool | None = False,
|
|
18
18
|
):
|
|
19
19
|
"""Select the currently highlighted gizmo
|
|
20
20
|
|
|
@@ -22,15 +22,15 @@ def gizmo_select(
|
|
|
22
22
|
:type execution_context: int | str | None
|
|
23
23
|
:type undo: bool | None
|
|
24
24
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
25
|
-
:type extend: bool |
|
|
25
|
+
:type extend: bool | None
|
|
26
26
|
:param deselect: Deselect, Remove from selection
|
|
27
|
-
:type deselect: bool |
|
|
27
|
+
:type deselect: bool | None
|
|
28
28
|
:param toggle: Toggle Selection, Toggle the selection
|
|
29
|
-
:type toggle: bool |
|
|
29
|
+
:type toggle: bool | None
|
|
30
30
|
:param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
|
|
31
|
-
:type deselect_all: bool |
|
|
31
|
+
:type deselect_all: bool | None
|
|
32
32
|
:param select_passthrough: Only Select Unselected, Ignore the select action when the element is already selected
|
|
33
|
-
:type select_passthrough: bool |
|
|
33
|
+
:type select_passthrough: bool | None
|
|
34
34
|
"""
|
|
35
35
|
|
|
36
36
|
...
|