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/screen/__init__.pyi
CHANGED
|
@@ -10,7 +10,7 @@ def actionzone(
|
|
|
10
10
|
execution_context: int | str | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
12
|
*,
|
|
13
|
-
modifier:
|
|
13
|
+
modifier: int | None = 0,
|
|
14
14
|
):
|
|
15
15
|
"""Handle area action zones for mouse actions/gestures
|
|
16
16
|
|
|
@@ -18,7 +18,7 @@ def actionzone(
|
|
|
18
18
|
:type execution_context: int | str | None
|
|
19
19
|
:type undo: bool | None
|
|
20
20
|
:param modifier: Modifier, Modifier state
|
|
21
|
-
:type modifier:
|
|
21
|
+
:type modifier: int | None
|
|
22
22
|
"""
|
|
23
23
|
|
|
24
24
|
...
|
|
@@ -28,7 +28,7 @@ def animation_cancel(
|
|
|
28
28
|
execution_context: int | str | None = None,
|
|
29
29
|
undo: bool | None = None,
|
|
30
30
|
*,
|
|
31
|
-
restore_frame: bool |
|
|
31
|
+
restore_frame: bool | None = True,
|
|
32
32
|
):
|
|
33
33
|
"""Cancel animation, returning to the original frame
|
|
34
34
|
|
|
@@ -36,7 +36,7 @@ def animation_cancel(
|
|
|
36
36
|
:type execution_context: int | str | None
|
|
37
37
|
:type undo: bool | None
|
|
38
38
|
:param restore_frame: Restore Frame, Restore the frame when animation was initialized
|
|
39
|
-
:type restore_frame: bool |
|
|
39
|
+
:type restore_frame: bool | None
|
|
40
40
|
"""
|
|
41
41
|
|
|
42
42
|
...
|
|
@@ -46,8 +46,8 @@ def animation_play(
|
|
|
46
46
|
execution_context: int | str | None = None,
|
|
47
47
|
undo: bool | None = None,
|
|
48
48
|
*,
|
|
49
|
-
reverse: bool |
|
|
50
|
-
sync: bool |
|
|
49
|
+
reverse: bool | None = False,
|
|
50
|
+
sync: bool | None = False,
|
|
51
51
|
):
|
|
52
52
|
"""Play animation
|
|
53
53
|
|
|
@@ -55,9 +55,9 @@ def animation_play(
|
|
|
55
55
|
:type execution_context: int | str | None
|
|
56
56
|
:type undo: bool | None
|
|
57
57
|
:param reverse: Play in Reverse, Animation is played backwards
|
|
58
|
-
:type reverse: bool |
|
|
58
|
+
:type reverse: bool | None
|
|
59
59
|
:param sync: Sync, Drop frames to maintain framerate
|
|
60
|
-
:type sync: bool |
|
|
60
|
+
:type sync: bool | None
|
|
61
61
|
"""
|
|
62
62
|
|
|
63
63
|
...
|
|
@@ -109,7 +109,7 @@ def area_join(
|
|
|
109
109
|
execution_context: int | str | None = None,
|
|
110
110
|
undo: bool | None = None,
|
|
111
111
|
*,
|
|
112
|
-
cursor:
|
|
112
|
+
cursor: collections.abc.Iterable[int] | None = (0, 0),
|
|
113
113
|
):
|
|
114
114
|
"""Join selected areas into new window
|
|
115
115
|
|
|
@@ -117,7 +117,7 @@ def area_join(
|
|
|
117
117
|
:type execution_context: int | str | None
|
|
118
118
|
:type undo: bool | None
|
|
119
119
|
:param cursor: Cursor
|
|
120
|
-
:type cursor:
|
|
120
|
+
:type cursor: collections.abc.Iterable[int] | None
|
|
121
121
|
"""
|
|
122
122
|
|
|
123
123
|
...
|
|
@@ -127,9 +127,9 @@ def area_move(
|
|
|
127
127
|
execution_context: int | str | None = None,
|
|
128
128
|
undo: bool | None = None,
|
|
129
129
|
*,
|
|
130
|
-
x:
|
|
131
|
-
y:
|
|
132
|
-
delta:
|
|
130
|
+
x: int | None = 0,
|
|
131
|
+
y: int | None = 0,
|
|
132
|
+
delta: int | None = 0,
|
|
133
133
|
):
|
|
134
134
|
"""Move selected area edges
|
|
135
135
|
|
|
@@ -137,11 +137,11 @@ def area_move(
|
|
|
137
137
|
:type execution_context: int | str | None
|
|
138
138
|
:type undo: bool | None
|
|
139
139
|
:param x: X
|
|
140
|
-
:type x:
|
|
140
|
+
:type x: int | None
|
|
141
141
|
:param y: Y
|
|
142
|
-
:type y:
|
|
142
|
+
:type y: int | None
|
|
143
143
|
:param delta: Delta
|
|
144
|
-
:type delta:
|
|
144
|
+
:type delta: int | None
|
|
145
145
|
"""
|
|
146
146
|
|
|
147
147
|
...
|
|
@@ -166,8 +166,8 @@ def area_split(
|
|
|
166
166
|
undo: bool | None = None,
|
|
167
167
|
*,
|
|
168
168
|
direction: str | None = "HORIZONTAL",
|
|
169
|
-
factor:
|
|
170
|
-
cursor:
|
|
169
|
+
factor: float | None = 0.5,
|
|
170
|
+
cursor: collections.abc.Iterable[int] | None = (0, 0),
|
|
171
171
|
):
|
|
172
172
|
"""Split selected area into new windows
|
|
173
173
|
|
|
@@ -177,9 +177,9 @@ def area_split(
|
|
|
177
177
|
:param direction: Direction
|
|
178
178
|
:type direction: str | None
|
|
179
179
|
:param factor: Factor
|
|
180
|
-
:type factor:
|
|
180
|
+
:type factor: float | None
|
|
181
181
|
:param cursor: Cursor
|
|
182
|
-
:type cursor:
|
|
182
|
+
:type cursor: collections.abc.Iterable[int] | None
|
|
183
183
|
"""
|
|
184
184
|
|
|
185
185
|
...
|
|
@@ -189,7 +189,7 @@ def area_swap(
|
|
|
189
189
|
execution_context: int | str | None = None,
|
|
190
190
|
undo: bool | None = None,
|
|
191
191
|
*,
|
|
192
|
-
cursor:
|
|
192
|
+
cursor: collections.abc.Iterable[int] | None = (0, 0),
|
|
193
193
|
):
|
|
194
194
|
"""Swap selected areas screen positions
|
|
195
195
|
|
|
@@ -197,7 +197,7 @@ def area_swap(
|
|
|
197
197
|
:type execution_context: int | str | None
|
|
198
198
|
:type undo: bool | None
|
|
199
199
|
:param cursor: Cursor
|
|
200
|
-
:type cursor:
|
|
200
|
+
:type cursor: collections.abc.Iterable[int] | None
|
|
201
201
|
"""
|
|
202
202
|
|
|
203
203
|
...
|
|
@@ -249,7 +249,7 @@ def frame_jump(
|
|
|
249
249
|
execution_context: int | str | None = None,
|
|
250
250
|
undo: bool | None = None,
|
|
251
251
|
*,
|
|
252
|
-
end: bool |
|
|
252
|
+
end: bool | None = False,
|
|
253
253
|
):
|
|
254
254
|
"""Jump to first/last frame in frame range
|
|
255
255
|
|
|
@@ -257,7 +257,7 @@ def frame_jump(
|
|
|
257
257
|
:type execution_context: int | str | None
|
|
258
258
|
:type undo: bool | None
|
|
259
259
|
:param end: Last Frame, Jump to the last frame of the frame range
|
|
260
|
-
:type end: bool |
|
|
260
|
+
:type end: bool | None
|
|
261
261
|
"""
|
|
262
262
|
|
|
263
263
|
...
|
|
@@ -267,7 +267,7 @@ def frame_offset(
|
|
|
267
267
|
execution_context: int | str | None = None,
|
|
268
268
|
undo: bool | None = None,
|
|
269
269
|
*,
|
|
270
|
-
delta:
|
|
270
|
+
delta: int | None = 0,
|
|
271
271
|
):
|
|
272
272
|
"""Move current frame forward/backward by a given number
|
|
273
273
|
|
|
@@ -275,7 +275,7 @@ def frame_offset(
|
|
|
275
275
|
:type execution_context: int | str | None
|
|
276
276
|
:type undo: bool | None
|
|
277
277
|
:param delta: Delta
|
|
278
|
-
:type delta:
|
|
278
|
+
:type delta: int | None
|
|
279
279
|
"""
|
|
280
280
|
|
|
281
281
|
...
|
|
@@ -313,7 +313,7 @@ def keyframe_jump(
|
|
|
313
313
|
execution_context: int | str | None = None,
|
|
314
314
|
undo: bool | None = None,
|
|
315
315
|
*,
|
|
316
|
-
next: bool |
|
|
316
|
+
next: bool | None = True,
|
|
317
317
|
):
|
|
318
318
|
"""Jump to previous/next keyframe
|
|
319
319
|
|
|
@@ -321,7 +321,7 @@ def keyframe_jump(
|
|
|
321
321
|
:type execution_context: int | str | None
|
|
322
322
|
:type undo: bool | None
|
|
323
323
|
:param next: Next Keyframe
|
|
324
|
-
:type next: bool |
|
|
324
|
+
:type next: bool | None
|
|
325
325
|
"""
|
|
326
326
|
|
|
327
327
|
...
|
|
@@ -331,7 +331,7 @@ def marker_jump(
|
|
|
331
331
|
execution_context: int | str | None = None,
|
|
332
332
|
undo: bool | None = None,
|
|
333
333
|
*,
|
|
334
|
-
next: bool |
|
|
334
|
+
next: bool | None = True,
|
|
335
335
|
):
|
|
336
336
|
"""Jump to previous/next marker
|
|
337
337
|
|
|
@@ -339,7 +339,7 @@ def marker_jump(
|
|
|
339
339
|
:type execution_context: int | str | None
|
|
340
340
|
:type undo: bool | None
|
|
341
341
|
:param next: Next Marker
|
|
342
|
-
:type next: bool |
|
|
342
|
+
:type next: bool | None
|
|
343
343
|
"""
|
|
344
344
|
|
|
345
345
|
...
|
|
@@ -465,7 +465,7 @@ def repeat_history(
|
|
|
465
465
|
execution_context: int | str | None = None,
|
|
466
466
|
undo: bool | None = None,
|
|
467
467
|
*,
|
|
468
|
-
index:
|
|
468
|
+
index: int | None = 0,
|
|
469
469
|
):
|
|
470
470
|
"""Display menu for previous actions performed
|
|
471
471
|
|
|
@@ -473,7 +473,7 @@ def repeat_history(
|
|
|
473
473
|
:type execution_context: int | str | None
|
|
474
474
|
:type undo: bool | None
|
|
475
475
|
:param index: Index
|
|
476
|
-
:type index:
|
|
476
|
+
:type index: int | None
|
|
477
477
|
"""
|
|
478
478
|
|
|
479
479
|
...
|
|
@@ -497,7 +497,7 @@ def screen_full_area(
|
|
|
497
497
|
execution_context: int | str | None = None,
|
|
498
498
|
undo: bool | None = None,
|
|
499
499
|
*,
|
|
500
|
-
use_hide_panels: bool |
|
|
500
|
+
use_hide_panels: bool | None = False,
|
|
501
501
|
):
|
|
502
502
|
"""Toggle display selected area as fullscreen/maximized
|
|
503
503
|
|
|
@@ -505,7 +505,7 @@ def screen_full_area(
|
|
|
505
505
|
:type execution_context: int | str | None
|
|
506
506
|
:type undo: bool | None
|
|
507
507
|
:param use_hide_panels: Hide Panels, Hide all the panels
|
|
508
|
-
:type use_hide_panels: bool |
|
|
508
|
+
:type use_hide_panels: bool | None
|
|
509
509
|
"""
|
|
510
510
|
|
|
511
511
|
...
|
|
@@ -515,7 +515,7 @@ def screen_set(
|
|
|
515
515
|
execution_context: int | str | None = None,
|
|
516
516
|
undo: bool | None = None,
|
|
517
517
|
*,
|
|
518
|
-
delta:
|
|
518
|
+
delta: int | None = 1,
|
|
519
519
|
):
|
|
520
520
|
"""Cycle through available screens
|
|
521
521
|
|
|
@@ -523,7 +523,7 @@ def screen_set(
|
|
|
523
523
|
:type execution_context: int | str | None
|
|
524
524
|
:type undo: bool | None
|
|
525
525
|
:param delta: Delta
|
|
526
|
-
:type delta:
|
|
526
|
+
:type delta: int | None
|
|
527
527
|
"""
|
|
528
528
|
|
|
529
529
|
...
|
|
@@ -533,29 +533,29 @@ def screenshot(
|
|
|
533
533
|
execution_context: int | str | None = None,
|
|
534
534
|
undo: bool | None = None,
|
|
535
535
|
*,
|
|
536
|
-
filepath: str
|
|
537
|
-
hide_props_region: bool |
|
|
538
|
-
check_existing: bool |
|
|
539
|
-
filter_blender: bool |
|
|
540
|
-
filter_backup: bool |
|
|
541
|
-
filter_image: bool |
|
|
542
|
-
filter_movie: bool |
|
|
543
|
-
filter_python: bool |
|
|
544
|
-
filter_font: bool |
|
|
545
|
-
filter_sound: bool |
|
|
546
|
-
filter_text: bool |
|
|
547
|
-
filter_archive: bool |
|
|
548
|
-
filter_btx: bool |
|
|
549
|
-
filter_collada: bool |
|
|
550
|
-
filter_alembic: bool |
|
|
551
|
-
filter_usd: bool |
|
|
552
|
-
filter_obj: bool |
|
|
553
|
-
filter_volume: bool |
|
|
554
|
-
filter_folder: bool |
|
|
555
|
-
filter_blenlib: bool |
|
|
556
|
-
filemode:
|
|
557
|
-
show_multiview: bool |
|
|
558
|
-
use_multiview: bool |
|
|
536
|
+
filepath: str = "",
|
|
537
|
+
hide_props_region: bool | None = True,
|
|
538
|
+
check_existing: bool | None = True,
|
|
539
|
+
filter_blender: bool | None = False,
|
|
540
|
+
filter_backup: bool | None = False,
|
|
541
|
+
filter_image: bool | None = True,
|
|
542
|
+
filter_movie: bool | None = False,
|
|
543
|
+
filter_python: bool | None = False,
|
|
544
|
+
filter_font: bool | None = False,
|
|
545
|
+
filter_sound: bool | None = False,
|
|
546
|
+
filter_text: bool | None = False,
|
|
547
|
+
filter_archive: bool | None = False,
|
|
548
|
+
filter_btx: bool | None = False,
|
|
549
|
+
filter_collada: bool | None = False,
|
|
550
|
+
filter_alembic: bool | None = False,
|
|
551
|
+
filter_usd: bool | None = False,
|
|
552
|
+
filter_obj: bool | None = False,
|
|
553
|
+
filter_volume: bool | None = False,
|
|
554
|
+
filter_folder: bool | None = True,
|
|
555
|
+
filter_blenlib: bool | None = False,
|
|
556
|
+
filemode: int | None = 9,
|
|
557
|
+
show_multiview: bool | None = False,
|
|
558
|
+
use_multiview: bool | None = False,
|
|
559
559
|
display_type: str | None = "DEFAULT",
|
|
560
560
|
sort_method: str | None = "",
|
|
561
561
|
):
|
|
@@ -565,51 +565,51 @@ def screenshot(
|
|
|
565
565
|
:type execution_context: int | str | None
|
|
566
566
|
:type undo: bool | None
|
|
567
567
|
:param filepath: File Path, Path to file
|
|
568
|
-
:type filepath: str
|
|
568
|
+
:type filepath: str
|
|
569
569
|
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
570
|
-
:type hide_props_region: bool |
|
|
570
|
+
:type hide_props_region: bool | None
|
|
571
571
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
572
|
-
:type check_existing: bool |
|
|
572
|
+
:type check_existing: bool | None
|
|
573
573
|
:param filter_blender: Filter .blend files
|
|
574
|
-
:type filter_blender: bool |
|
|
574
|
+
:type filter_blender: bool | None
|
|
575
575
|
:param filter_backup: Filter .blend files
|
|
576
|
-
:type filter_backup: bool |
|
|
576
|
+
:type filter_backup: bool | None
|
|
577
577
|
:param filter_image: Filter image files
|
|
578
|
-
:type filter_image: bool |
|
|
578
|
+
:type filter_image: bool | None
|
|
579
579
|
:param filter_movie: Filter movie files
|
|
580
|
-
:type filter_movie: bool |
|
|
580
|
+
:type filter_movie: bool | None
|
|
581
581
|
:param filter_python: Filter Python files
|
|
582
|
-
:type filter_python: bool |
|
|
582
|
+
:type filter_python: bool | None
|
|
583
583
|
:param filter_font: Filter font files
|
|
584
|
-
:type filter_font: bool |
|
|
584
|
+
:type filter_font: bool | None
|
|
585
585
|
:param filter_sound: Filter sound files
|
|
586
|
-
:type filter_sound: bool |
|
|
586
|
+
:type filter_sound: bool | None
|
|
587
587
|
:param filter_text: Filter text files
|
|
588
|
-
:type filter_text: bool |
|
|
588
|
+
:type filter_text: bool | None
|
|
589
589
|
:param filter_archive: Filter archive files
|
|
590
|
-
:type filter_archive: bool |
|
|
590
|
+
:type filter_archive: bool | None
|
|
591
591
|
:param filter_btx: Filter btx files
|
|
592
|
-
:type filter_btx: bool |
|
|
592
|
+
:type filter_btx: bool | None
|
|
593
593
|
:param filter_collada: Filter COLLADA files
|
|
594
|
-
:type filter_collada: bool |
|
|
594
|
+
:type filter_collada: bool | None
|
|
595
595
|
:param filter_alembic: Filter Alembic files
|
|
596
|
-
:type filter_alembic: bool |
|
|
596
|
+
:type filter_alembic: bool | None
|
|
597
597
|
:param filter_usd: Filter USD files
|
|
598
|
-
:type filter_usd: bool |
|
|
598
|
+
:type filter_usd: bool | None
|
|
599
599
|
:param filter_obj: Filter OBJ files
|
|
600
|
-
:type filter_obj: bool |
|
|
600
|
+
:type filter_obj: bool | None
|
|
601
601
|
:param filter_volume: Filter OpenVDB volume files
|
|
602
|
-
:type filter_volume: bool |
|
|
602
|
+
:type filter_volume: bool | None
|
|
603
603
|
:param filter_folder: Filter folders
|
|
604
|
-
:type filter_folder: bool |
|
|
604
|
+
:type filter_folder: bool | None
|
|
605
605
|
:param filter_blenlib: Filter Blender IDs
|
|
606
|
-
:type filter_blenlib: bool |
|
|
606
|
+
:type filter_blenlib: bool | None
|
|
607
607
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
608
|
-
:type filemode:
|
|
608
|
+
:type filemode: int | None
|
|
609
609
|
:param show_multiview: Enable Multi-View
|
|
610
|
-
:type show_multiview: bool |
|
|
610
|
+
:type show_multiview: bool | None
|
|
611
611
|
:param use_multiview: Use Multi-View
|
|
612
|
-
:type use_multiview: bool |
|
|
612
|
+
:type use_multiview: bool | None
|
|
613
613
|
:param display_type: Display Type
|
|
614
614
|
|
|
615
615
|
DEFAULT
|
|
@@ -635,29 +635,29 @@ def screenshot_area(
|
|
|
635
635
|
execution_context: int | str | None = None,
|
|
636
636
|
undo: bool | None = None,
|
|
637
637
|
*,
|
|
638
|
-
filepath: str
|
|
639
|
-
hide_props_region: bool |
|
|
640
|
-
check_existing: bool |
|
|
641
|
-
filter_blender: bool |
|
|
642
|
-
filter_backup: bool |
|
|
643
|
-
filter_image: bool |
|
|
644
|
-
filter_movie: bool |
|
|
645
|
-
filter_python: bool |
|
|
646
|
-
filter_font: bool |
|
|
647
|
-
filter_sound: bool |
|
|
648
|
-
filter_text: bool |
|
|
649
|
-
filter_archive: bool |
|
|
650
|
-
filter_btx: bool |
|
|
651
|
-
filter_collada: bool |
|
|
652
|
-
filter_alembic: bool |
|
|
653
|
-
filter_usd: bool |
|
|
654
|
-
filter_obj: bool |
|
|
655
|
-
filter_volume: bool |
|
|
656
|
-
filter_folder: bool |
|
|
657
|
-
filter_blenlib: bool |
|
|
658
|
-
filemode:
|
|
659
|
-
show_multiview: bool |
|
|
660
|
-
use_multiview: bool |
|
|
638
|
+
filepath: str = "",
|
|
639
|
+
hide_props_region: bool | None = True,
|
|
640
|
+
check_existing: bool | None = True,
|
|
641
|
+
filter_blender: bool | None = False,
|
|
642
|
+
filter_backup: bool | None = False,
|
|
643
|
+
filter_image: bool | None = True,
|
|
644
|
+
filter_movie: bool | None = False,
|
|
645
|
+
filter_python: bool | None = False,
|
|
646
|
+
filter_font: bool | None = False,
|
|
647
|
+
filter_sound: bool | None = False,
|
|
648
|
+
filter_text: bool | None = False,
|
|
649
|
+
filter_archive: bool | None = False,
|
|
650
|
+
filter_btx: bool | None = False,
|
|
651
|
+
filter_collada: bool | None = False,
|
|
652
|
+
filter_alembic: bool | None = False,
|
|
653
|
+
filter_usd: bool | None = False,
|
|
654
|
+
filter_obj: bool | None = False,
|
|
655
|
+
filter_volume: bool | None = False,
|
|
656
|
+
filter_folder: bool | None = True,
|
|
657
|
+
filter_blenlib: bool | None = False,
|
|
658
|
+
filemode: int | None = 9,
|
|
659
|
+
show_multiview: bool | None = False,
|
|
660
|
+
use_multiview: bool | None = False,
|
|
661
661
|
display_type: str | None = "DEFAULT",
|
|
662
662
|
sort_method: str | None = "",
|
|
663
663
|
):
|
|
@@ -667,51 +667,51 @@ def screenshot_area(
|
|
|
667
667
|
:type execution_context: int | str | None
|
|
668
668
|
:type undo: bool | None
|
|
669
669
|
:param filepath: File Path, Path to file
|
|
670
|
-
:type filepath: str
|
|
670
|
+
:type filepath: str
|
|
671
671
|
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
672
|
-
:type hide_props_region: bool |
|
|
672
|
+
:type hide_props_region: bool | None
|
|
673
673
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
674
|
-
:type check_existing: bool |
|
|
674
|
+
:type check_existing: bool | None
|
|
675
675
|
:param filter_blender: Filter .blend files
|
|
676
|
-
:type filter_blender: bool |
|
|
676
|
+
:type filter_blender: bool | None
|
|
677
677
|
:param filter_backup: Filter .blend files
|
|
678
|
-
:type filter_backup: bool |
|
|
678
|
+
:type filter_backup: bool | None
|
|
679
679
|
:param filter_image: Filter image files
|
|
680
|
-
:type filter_image: bool |
|
|
680
|
+
:type filter_image: bool | None
|
|
681
681
|
:param filter_movie: Filter movie files
|
|
682
|
-
:type filter_movie: bool |
|
|
682
|
+
:type filter_movie: bool | None
|
|
683
683
|
:param filter_python: Filter Python files
|
|
684
|
-
:type filter_python: bool |
|
|
684
|
+
:type filter_python: bool | None
|
|
685
685
|
:param filter_font: Filter font files
|
|
686
|
-
:type filter_font: bool |
|
|
686
|
+
:type filter_font: bool | None
|
|
687
687
|
:param filter_sound: Filter sound files
|
|
688
|
-
:type filter_sound: bool |
|
|
688
|
+
:type filter_sound: bool | None
|
|
689
689
|
:param filter_text: Filter text files
|
|
690
|
-
:type filter_text: bool |
|
|
690
|
+
:type filter_text: bool | None
|
|
691
691
|
:param filter_archive: Filter archive files
|
|
692
|
-
:type filter_archive: bool |
|
|
692
|
+
:type filter_archive: bool | None
|
|
693
693
|
:param filter_btx: Filter btx files
|
|
694
|
-
:type filter_btx: bool |
|
|
694
|
+
:type filter_btx: bool | None
|
|
695
695
|
:param filter_collada: Filter COLLADA files
|
|
696
|
-
:type filter_collada: bool |
|
|
696
|
+
:type filter_collada: bool | None
|
|
697
697
|
:param filter_alembic: Filter Alembic files
|
|
698
|
-
:type filter_alembic: bool |
|
|
698
|
+
:type filter_alembic: bool | None
|
|
699
699
|
:param filter_usd: Filter USD files
|
|
700
|
-
:type filter_usd: bool |
|
|
700
|
+
:type filter_usd: bool | None
|
|
701
701
|
:param filter_obj: Filter OBJ files
|
|
702
|
-
:type filter_obj: bool |
|
|
702
|
+
:type filter_obj: bool | None
|
|
703
703
|
:param filter_volume: Filter OpenVDB volume files
|
|
704
|
-
:type filter_volume: bool |
|
|
704
|
+
:type filter_volume: bool | None
|
|
705
705
|
:param filter_folder: Filter folders
|
|
706
|
-
:type filter_folder: bool |
|
|
706
|
+
:type filter_folder: bool | None
|
|
707
707
|
:param filter_blenlib: Filter Blender IDs
|
|
708
|
-
:type filter_blenlib: bool |
|
|
708
|
+
:type filter_blenlib: bool | None
|
|
709
709
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
710
|
-
:type filemode:
|
|
710
|
+
:type filemode: int | None
|
|
711
711
|
:param show_multiview: Enable Multi-View
|
|
712
|
-
:type show_multiview: bool |
|
|
712
|
+
:type show_multiview: bool | None
|
|
713
713
|
:param use_multiview: Use Multi-View
|
|
714
|
-
:type use_multiview: bool |
|
|
714
|
+
:type use_multiview: bool | None
|
|
715
715
|
:param display_type: Display Type
|
|
716
716
|
|
|
717
717
|
DEFAULT
|
bpy/ops/script/__init__.pyi
CHANGED
|
@@ -10,8 +10,8 @@ def execute_preset(
|
|
|
10
10
|
execution_context: int | str | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
12
|
*,
|
|
13
|
-
filepath: str
|
|
14
|
-
menu_idname: str
|
|
13
|
+
filepath: str = "",
|
|
14
|
+
menu_idname: str = "",
|
|
15
15
|
):
|
|
16
16
|
"""Load a preset
|
|
17
17
|
|
|
@@ -19,9 +19,9 @@ def execute_preset(
|
|
|
19
19
|
:type execution_context: int | str | None
|
|
20
20
|
:type undo: bool | None
|
|
21
21
|
:param filepath: filepath
|
|
22
|
-
:type filepath: str
|
|
22
|
+
:type filepath: str
|
|
23
23
|
:param menu_idname: Menu ID Name, ID name of the menu this was called from
|
|
24
|
-
:type menu_idname: str
|
|
24
|
+
:type menu_idname: str
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
27
|
...
|
|
@@ -31,7 +31,7 @@ def python_file_run(
|
|
|
31
31
|
execution_context: int | str | None = None,
|
|
32
32
|
undo: bool | None = None,
|
|
33
33
|
*,
|
|
34
|
-
filepath: str
|
|
34
|
+
filepath: str = "",
|
|
35
35
|
):
|
|
36
36
|
"""Run Python file
|
|
37
37
|
|
|
@@ -39,7 +39,7 @@ def python_file_run(
|
|
|
39
39
|
:type execution_context: int | str | None
|
|
40
40
|
:type undo: bool | None
|
|
41
41
|
:param filepath: Path
|
|
42
|
-
:type filepath: str
|
|
42
|
+
:type filepath: str
|
|
43
43
|
"""
|
|
44
44
|
|
|
45
45
|
...
|