fake-bpy-module 20241208__py3-none-any.whl → 20241209__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.
- bpy/ops/action/__init__.pyi +38 -138
- 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 +8 -41
- bpy/ops/brush/__init__.pyi +13 -39
- 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 +92 -290
- bpy/ops/cloth/__init__.pyi +1 -3
- bpy/ops/collection/__init__.pyi +9 -25
- bpy/ops/console/__init__.pyi +21 -79
- bpy/ops/constraint/__init__.pyi +18 -45
- bpy/ops/curve/__init__.pyi +51 -180
- bpy/ops/curves/__init__.pyi +28 -100
- bpy/ops/cycles/__init__.pyi +3 -9
- bpy/ops/dpaint/__init__.pyi +5 -19
- bpy/ops/ed/__init__.pyi +12 -53
- bpy/ops/export_anim/__init__.pyi +1 -3
- bpy/ops/export_scene/__init__.pyi +2 -5
- 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 +10 -27
- bpy/ops/gizmogroup/__init__.pyi +2 -9
- bpy/ops/gpencil/__init__.pyi +8 -32
- bpy/ops/graph/__init__.pyi +65 -184
- bpy/ops/grease_pencil/__init__.pyi +108 -290
- bpy/ops/image/__init__.pyi +49 -154
- bpy/ops/import_anim/__init__.pyi +1 -3
- bpy/ops/import_curve/__init__.pyi +1 -3
- bpy/ops/import_scene/__init__.pyi +2 -4
- bpy/ops/info/__init__.pyi +7 -29
- bpy/ops/lattice/__init__.pyi +8 -29
- 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 +164 -401
- bpy/ops/nla/__init__.pyi +39 -147
- bpy/ops/node/__init__.pyi +115 -390
- bpy/ops/object/__init__.pyi +237 -630
- bpy/ops/outliner/__init__.pyi +71 -263
- bpy/ops/paint/__init__.pyi +54 -140
- bpy/ops/paintcurve/__init__.pyi +8 -33
- bpy/ops/palette/__init__.pyi +7 -27
- bpy/ops/particle/__init__.pyi +36 -134
- bpy/ops/pose/__init__.pyi +51 -169
- 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 +13 -45
- bpy/ops/scene/__init__.pyi +37 -121
- bpy/ops/screen/__init__.pyi +39 -137
- bpy/ops/script/__init__.pyi +3 -11
- bpy/ops/sculpt/__init__.pyi +37 -94
- bpy/ops/sculpt_curves/__init__.pyi +4 -10
- bpy/ops/sequencer/__init__.pyi +89 -284
- bpy/ops/sound/__init__.pyi +7 -23
- 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 +27 -61
- bpy/ops/ui/__init__.pyi +34 -117
- bpy/ops/uilist/__init__.pyi +3 -7
- bpy/ops/uv/__init__.pyi +49 -134
- bpy/ops/view2d/__init__.pyi +14 -39
- bpy/ops/view3d/__init__.pyi +67 -232
- bpy/ops/wm/__init__.pyi +114 -298
- bpy/ops/workspace/__init__.pyi +7 -33
- bpy/ops/world/__init__.pyi +2 -11
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +80 -80
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
bpy/ops/file/__init__.pyi
CHANGED
|
@@ -1,54 +1,41 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.types
|
|
5
4
|
|
|
6
5
|
def autopack_toggle(
|
|
7
|
-
|
|
8
|
-
execution_context: int | str | None = None,
|
|
9
|
-
undo: bool | None = None,
|
|
6
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
10
7
|
):
|
|
11
8
|
"""Automatically pack all external files into the .blend file
|
|
12
9
|
|
|
13
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
14
10
|
:type execution_context: int | str | None
|
|
15
11
|
:type undo: bool | None
|
|
16
12
|
"""
|
|
17
13
|
|
|
18
|
-
def bookmark_add(
|
|
19
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
20
|
-
execution_context: int | str | None = None,
|
|
21
|
-
undo: bool | None = None,
|
|
22
|
-
):
|
|
14
|
+
def bookmark_add(execution_context: int | str | None = None, undo: bool | None = None):
|
|
23
15
|
"""Add a bookmark for the selected/active directory
|
|
24
16
|
|
|
25
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
26
17
|
:type execution_context: int | str | None
|
|
27
18
|
:type undo: bool | None
|
|
28
19
|
"""
|
|
29
20
|
|
|
30
21
|
def bookmark_cleanup(
|
|
31
|
-
|
|
32
|
-
execution_context: int | str | None = None,
|
|
33
|
-
undo: bool | None = None,
|
|
22
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
34
23
|
):
|
|
35
24
|
"""Delete all invalid bookmarks
|
|
36
25
|
|
|
37
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
38
26
|
:type execution_context: int | str | None
|
|
39
27
|
:type undo: bool | None
|
|
40
28
|
"""
|
|
41
29
|
|
|
42
30
|
def bookmark_delete(
|
|
43
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
44
31
|
execution_context: int | str | None = None,
|
|
45
32
|
undo: bool | None = None,
|
|
33
|
+
/,
|
|
46
34
|
*,
|
|
47
35
|
index: int | None = -1,
|
|
48
36
|
):
|
|
49
37
|
"""Delete selected bookmark
|
|
50
38
|
|
|
51
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
52
39
|
:type execution_context: int | str | None
|
|
53
40
|
:type undo: bool | None
|
|
54
41
|
:param index: Index
|
|
@@ -56,15 +43,14 @@ def bookmark_delete(
|
|
|
56
43
|
"""
|
|
57
44
|
|
|
58
45
|
def bookmark_move(
|
|
59
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
60
46
|
execution_context: int | str | None = None,
|
|
61
47
|
undo: bool | None = None,
|
|
48
|
+
/,
|
|
62
49
|
*,
|
|
63
50
|
direction: typing.Literal["TOP", "UP", "DOWN", "BOTTOM"] | None = "TOP",
|
|
64
51
|
):
|
|
65
52
|
"""Move the active bookmark up/down in the list
|
|
66
53
|
|
|
67
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
68
54
|
:type execution_context: int | str | None
|
|
69
55
|
:type undo: bool | None
|
|
70
56
|
:param direction: Direction, Direction to move the active bookmark towards
|
|
@@ -83,34 +69,24 @@ def bookmark_move(
|
|
|
83
69
|
:type direction: typing.Literal['TOP','UP','DOWN','BOTTOM'] | None
|
|
84
70
|
"""
|
|
85
71
|
|
|
86
|
-
def cancel(
|
|
87
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
88
|
-
execution_context: int | str | None = None,
|
|
89
|
-
undo: bool | None = None,
|
|
90
|
-
):
|
|
72
|
+
def cancel(execution_context: int | str | None = None, undo: bool | None = None):
|
|
91
73
|
"""Cancel loading of selected file
|
|
92
74
|
|
|
93
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
94
75
|
:type execution_context: int | str | None
|
|
95
76
|
:type undo: bool | None
|
|
96
77
|
"""
|
|
97
78
|
|
|
98
|
-
def delete(
|
|
99
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
100
|
-
execution_context: int | str | None = None,
|
|
101
|
-
undo: bool | None = None,
|
|
102
|
-
):
|
|
79
|
+
def delete(execution_context: int | str | None = None, undo: bool | None = None):
|
|
103
80
|
"""Move selected files to the trash or recycle bin
|
|
104
81
|
|
|
105
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
106
82
|
:type execution_context: int | str | None
|
|
107
83
|
:type undo: bool | None
|
|
108
84
|
"""
|
|
109
85
|
|
|
110
86
|
def directory_new(
|
|
111
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
112
87
|
execution_context: int | str | None = None,
|
|
113
88
|
undo: bool | None = None,
|
|
89
|
+
/,
|
|
114
90
|
*,
|
|
115
91
|
directory: str = "",
|
|
116
92
|
open: bool | None = False,
|
|
@@ -118,7 +94,6 @@ def directory_new(
|
|
|
118
94
|
):
|
|
119
95
|
"""Create a new directory
|
|
120
96
|
|
|
121
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
122
97
|
:type execution_context: int | str | None
|
|
123
98
|
:type undo: bool | None
|
|
124
99
|
:param directory: Directory, Name of new directory
|
|
@@ -130,33 +105,25 @@ def directory_new(
|
|
|
130
105
|
"""
|
|
131
106
|
|
|
132
107
|
def edit_directory_path(
|
|
133
|
-
|
|
134
|
-
execution_context: int | str | None = None,
|
|
135
|
-
undo: bool | None = None,
|
|
108
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
136
109
|
):
|
|
137
110
|
"""Start editing directory field
|
|
138
111
|
|
|
139
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
140
112
|
:type execution_context: int | str | None
|
|
141
113
|
:type undo: bool | None
|
|
142
114
|
"""
|
|
143
115
|
|
|
144
|
-
def execute(
|
|
145
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
146
|
-
execution_context: int | str | None = None,
|
|
147
|
-
undo: bool | None = None,
|
|
148
|
-
):
|
|
116
|
+
def execute(execution_context: int | str | None = None, undo: bool | None = None):
|
|
149
117
|
"""Execute selected file
|
|
150
118
|
|
|
151
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
152
119
|
:type execution_context: int | str | None
|
|
153
120
|
:type undo: bool | None
|
|
154
121
|
"""
|
|
155
122
|
|
|
156
123
|
def external_operation(
|
|
157
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
158
124
|
execution_context: int | str | None = None,
|
|
159
125
|
undo: bool | None = None,
|
|
126
|
+
/,
|
|
160
127
|
*,
|
|
161
128
|
filepath: str = "",
|
|
162
129
|
operation: typing.Literal[
|
|
@@ -180,7 +147,6 @@ def external_operation(
|
|
|
180
147
|
):
|
|
181
148
|
"""Perform external operation on a file or folder
|
|
182
149
|
|
|
183
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
184
150
|
:type execution_context: int | str | None
|
|
185
151
|
:type undo: bool | None
|
|
186
152
|
:param filepath: File or folder path
|
|
@@ -235,15 +201,14 @@ def external_operation(
|
|
|
235
201
|
"""
|
|
236
202
|
|
|
237
203
|
def filenum(
|
|
238
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
239
204
|
execution_context: int | str | None = None,
|
|
240
205
|
undo: bool | None = None,
|
|
206
|
+
/,
|
|
241
207
|
*,
|
|
242
208
|
increment: int | None = 1,
|
|
243
209
|
):
|
|
244
210
|
"""Increment number in filename
|
|
245
211
|
|
|
246
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
247
212
|
:type execution_context: int | str | None
|
|
248
213
|
:type undo: bool | None
|
|
249
214
|
:param increment: Increment
|
|
@@ -251,24 +216,23 @@ def filenum(
|
|
|
251
216
|
"""
|
|
252
217
|
|
|
253
218
|
def filepath_drop(
|
|
254
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
255
219
|
execution_context: int | str | None = None,
|
|
256
220
|
undo: bool | None = None,
|
|
221
|
+
/,
|
|
257
222
|
*,
|
|
258
223
|
filepath: str = "Path",
|
|
259
224
|
):
|
|
260
225
|
"""Undocumented, consider contributing.
|
|
261
226
|
|
|
262
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
263
227
|
:type execution_context: int | str | None
|
|
264
228
|
:type undo: bool | None
|
|
265
229
|
:type filepath: str
|
|
266
230
|
"""
|
|
267
231
|
|
|
268
232
|
def find_missing_files(
|
|
269
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
270
233
|
execution_context: int | str | None = None,
|
|
271
234
|
undo: bool | None = None,
|
|
235
|
+
/,
|
|
272
236
|
*,
|
|
273
237
|
find_all: bool | None = False,
|
|
274
238
|
directory: str = "",
|
|
@@ -300,7 +264,6 @@ def find_missing_files(
|
|
|
300
264
|
):
|
|
301
265
|
"""Try to find missing external files
|
|
302
266
|
|
|
303
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
304
267
|
:type execution_context: int | str | None
|
|
305
268
|
:type undo: bool | None
|
|
306
269
|
:param find_all: Find All, Find all files in the search path (not just missing)
|
|
@@ -365,178 +328,116 @@ def find_missing_files(
|
|
|
365
328
|
:type sort_method: str | None
|
|
366
329
|
"""
|
|
367
330
|
|
|
368
|
-
def hidedot(
|
|
369
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
370
|
-
execution_context: int | str | None = None,
|
|
371
|
-
undo: bool | None = None,
|
|
372
|
-
):
|
|
331
|
+
def hidedot(execution_context: int | str | None = None, undo: bool | None = None):
|
|
373
332
|
"""Toggle hide hidden dot files
|
|
374
333
|
|
|
375
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
376
334
|
:type execution_context: int | str | None
|
|
377
335
|
:type undo: bool | None
|
|
378
336
|
"""
|
|
379
337
|
|
|
380
|
-
def highlight(
|
|
381
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
382
|
-
execution_context: int | str | None = None,
|
|
383
|
-
undo: bool | None = None,
|
|
384
|
-
):
|
|
338
|
+
def highlight(execution_context: int | str | None = None, undo: bool | None = None):
|
|
385
339
|
"""Highlight selected file(s)
|
|
386
340
|
|
|
387
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
388
341
|
:type execution_context: int | str | None
|
|
389
342
|
:type undo: bool | None
|
|
390
343
|
"""
|
|
391
344
|
|
|
392
345
|
def make_paths_absolute(
|
|
393
|
-
|
|
394
|
-
execution_context: int | str | None = None,
|
|
395
|
-
undo: bool | None = None,
|
|
346
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
396
347
|
):
|
|
397
348
|
"""Make all paths to external files absolute
|
|
398
349
|
|
|
399
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
400
350
|
:type execution_context: int | str | None
|
|
401
351
|
:type undo: bool | None
|
|
402
352
|
"""
|
|
403
353
|
|
|
404
354
|
def make_paths_relative(
|
|
405
|
-
|
|
406
|
-
execution_context: int | str | None = None,
|
|
407
|
-
undo: bool | None = None,
|
|
355
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
408
356
|
):
|
|
409
357
|
"""Make all paths to external files relative to current .blend
|
|
410
358
|
|
|
411
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
412
359
|
:type execution_context: int | str | None
|
|
413
360
|
:type undo: bool | None
|
|
414
361
|
"""
|
|
415
362
|
|
|
416
|
-
def mouse_execute(
|
|
417
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
418
|
-
execution_context: int | str | None = None,
|
|
419
|
-
undo: bool | None = None,
|
|
420
|
-
):
|
|
363
|
+
def mouse_execute(execution_context: int | str | None = None, undo: bool | None = None):
|
|
421
364
|
"""Perform the current execute action for the file under the cursor (e.g. open the file)
|
|
422
365
|
|
|
423
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
424
366
|
:type execution_context: int | str | None
|
|
425
367
|
:type undo: bool | None
|
|
426
368
|
"""
|
|
427
369
|
|
|
428
|
-
def next(
|
|
429
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
430
|
-
execution_context: int | str | None = None,
|
|
431
|
-
undo: bool | None = None,
|
|
432
|
-
):
|
|
370
|
+
def next(execution_context: int | str | None = None, undo: bool | None = None):
|
|
433
371
|
"""Move to next folder
|
|
434
372
|
|
|
435
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
436
373
|
:type execution_context: int | str | None
|
|
437
374
|
:type undo: bool | None
|
|
438
375
|
"""
|
|
439
376
|
|
|
440
|
-
def pack_all(
|
|
441
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
442
|
-
execution_context: int | str | None = None,
|
|
443
|
-
undo: bool | None = None,
|
|
444
|
-
):
|
|
377
|
+
def pack_all(execution_context: int | str | None = None, undo: bool | None = None):
|
|
445
378
|
"""Pack all used external files into this .blend
|
|
446
379
|
|
|
447
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
448
380
|
:type execution_context: int | str | None
|
|
449
381
|
:type undo: bool | None
|
|
450
382
|
"""
|
|
451
383
|
|
|
452
384
|
def pack_libraries(
|
|
453
|
-
|
|
454
|
-
execution_context: int | str | None = None,
|
|
455
|
-
undo: bool | None = None,
|
|
385
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
456
386
|
):
|
|
457
387
|
"""Store all data-blocks linked from other .blend files in the current .blend file. Library references are preserved so the linked data-blocks can be unpacked again
|
|
458
388
|
|
|
459
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
460
389
|
:type execution_context: int | str | None
|
|
461
390
|
:type undo: bool | None
|
|
462
391
|
"""
|
|
463
392
|
|
|
464
|
-
def parent(
|
|
465
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
466
|
-
execution_context: int | str | None = None,
|
|
467
|
-
undo: bool | None = None,
|
|
468
|
-
):
|
|
393
|
+
def parent(execution_context: int | str | None = None, undo: bool | None = None):
|
|
469
394
|
"""Move to parent directory
|
|
470
395
|
|
|
471
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
472
396
|
:type execution_context: int | str | None
|
|
473
397
|
:type undo: bool | None
|
|
474
398
|
"""
|
|
475
399
|
|
|
476
|
-
def previous(
|
|
477
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
478
|
-
execution_context: int | str | None = None,
|
|
479
|
-
undo: bool | None = None,
|
|
480
|
-
):
|
|
400
|
+
def previous(execution_context: int | str | None = None, undo: bool | None = None):
|
|
481
401
|
"""Move to previous folder
|
|
482
402
|
|
|
483
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
484
403
|
:type execution_context: int | str | None
|
|
485
404
|
:type undo: bool | None
|
|
486
405
|
"""
|
|
487
406
|
|
|
488
|
-
def refresh(
|
|
489
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
490
|
-
execution_context: int | str | None = None,
|
|
491
|
-
undo: bool | None = None,
|
|
492
|
-
):
|
|
407
|
+
def refresh(execution_context: int | str | None = None, undo: bool | None = None):
|
|
493
408
|
"""Refresh the file list
|
|
494
409
|
|
|
495
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
496
410
|
:type execution_context: int | str | None
|
|
497
411
|
:type undo: bool | None
|
|
498
412
|
"""
|
|
499
413
|
|
|
500
|
-
def rename(
|
|
501
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
502
|
-
execution_context: int | str | None = None,
|
|
503
|
-
undo: bool | None = None,
|
|
504
|
-
):
|
|
414
|
+
def rename(execution_context: int | str | None = None, undo: bool | None = None):
|
|
505
415
|
"""Rename file or file directory
|
|
506
416
|
|
|
507
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
508
417
|
:type execution_context: int | str | None
|
|
509
418
|
:type undo: bool | None
|
|
510
419
|
"""
|
|
511
420
|
|
|
512
421
|
def report_missing_files(
|
|
513
|
-
|
|
514
|
-
execution_context: int | str | None = None,
|
|
515
|
-
undo: bool | None = None,
|
|
422
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
516
423
|
):
|
|
517
424
|
"""Report all missing external files
|
|
518
425
|
|
|
519
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
520
426
|
:type execution_context: int | str | None
|
|
521
427
|
:type undo: bool | None
|
|
522
428
|
"""
|
|
523
429
|
|
|
524
|
-
def reset_recent(
|
|
525
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
526
|
-
execution_context: int | str | None = None,
|
|
527
|
-
undo: bool | None = None,
|
|
528
|
-
):
|
|
430
|
+
def reset_recent(execution_context: int | str | None = None, undo: bool | None = None):
|
|
529
431
|
"""Reset recent files
|
|
530
432
|
|
|
531
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
532
433
|
:type execution_context: int | str | None
|
|
533
434
|
:type undo: bool | None
|
|
534
435
|
"""
|
|
535
436
|
|
|
536
437
|
def select(
|
|
537
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
538
438
|
execution_context: int | str | None = None,
|
|
539
439
|
undo: bool | None = None,
|
|
440
|
+
/,
|
|
540
441
|
*,
|
|
541
442
|
wait_to_deselect_others: bool | None = False,
|
|
542
443
|
mouse_x: int | None = 0,
|
|
@@ -550,7 +451,6 @@ def select(
|
|
|
550
451
|
):
|
|
551
452
|
"""Handle mouse clicks to select and activate items
|
|
552
453
|
|
|
553
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
554
454
|
:type execution_context: int | str | None
|
|
555
455
|
:type undo: bool | None
|
|
556
456
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
@@ -574,15 +474,14 @@ def select(
|
|
|
574
474
|
"""
|
|
575
475
|
|
|
576
476
|
def select_all(
|
|
577
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
578
477
|
execution_context: int | str | None = None,
|
|
579
478
|
undo: bool | None = None,
|
|
479
|
+
/,
|
|
580
480
|
*,
|
|
581
481
|
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
|
|
582
482
|
):
|
|
583
483
|
"""Select or deselect all files
|
|
584
484
|
|
|
585
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
586
485
|
:type execution_context: int | str | None
|
|
587
486
|
:type undo: bool | None
|
|
588
487
|
:param action: Action, Selection action to execute
|
|
@@ -602,15 +501,14 @@ def select_all(
|
|
|
602
501
|
"""
|
|
603
502
|
|
|
604
503
|
def select_bookmark(
|
|
605
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
606
504
|
execution_context: int | str | None = None,
|
|
607
505
|
undo: bool | None = None,
|
|
506
|
+
/,
|
|
608
507
|
*,
|
|
609
508
|
dir: str = "",
|
|
610
509
|
):
|
|
611
510
|
"""Select a bookmarked directory
|
|
612
511
|
|
|
613
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
614
512
|
:type execution_context: int | str | None
|
|
615
513
|
:type undo: bool | None
|
|
616
514
|
:param dir: Directory
|
|
@@ -618,9 +516,9 @@ def select_bookmark(
|
|
|
618
516
|
"""
|
|
619
517
|
|
|
620
518
|
def select_box(
|
|
621
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
622
519
|
execution_context: int | str | None = None,
|
|
623
520
|
undo: bool | None = None,
|
|
521
|
+
/,
|
|
624
522
|
*,
|
|
625
523
|
xmin: int | None = 0,
|
|
626
524
|
xmax: int | None = 0,
|
|
@@ -631,7 +529,6 @@ def select_box(
|
|
|
631
529
|
):
|
|
632
530
|
"""Activate/select the file(s) contained in the border
|
|
633
531
|
|
|
634
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
635
532
|
:type execution_context: int | str | None
|
|
636
533
|
:type undo: bool | None
|
|
637
534
|
:param xmin: X Min
|
|
@@ -658,9 +555,9 @@ def select_box(
|
|
|
658
555
|
"""
|
|
659
556
|
|
|
660
557
|
def select_walk(
|
|
661
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
662
558
|
execution_context: int | str | None = None,
|
|
663
559
|
undo: bool | None = None,
|
|
560
|
+
/,
|
|
664
561
|
*,
|
|
665
562
|
direction: typing.Literal["UP", "DOWN", "LEFT", "RIGHT"] | None = "UP",
|
|
666
563
|
extend: bool | None = False,
|
|
@@ -668,7 +565,6 @@ def select_walk(
|
|
|
668
565
|
):
|
|
669
566
|
"""Select/Deselect files by walking through them
|
|
670
567
|
|
|
671
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
672
568
|
:type execution_context: int | str | None
|
|
673
569
|
:type undo: bool | None
|
|
674
570
|
:param direction: Walk Direction, Select/Deselect element in this direction
|
|
@@ -679,46 +575,33 @@ def select_walk(
|
|
|
679
575
|
:type fill: bool | None
|
|
680
576
|
"""
|
|
681
577
|
|
|
682
|
-
def smoothscroll(
|
|
683
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
684
|
-
execution_context: int | str | None = None,
|
|
685
|
-
undo: bool | None = None,
|
|
686
|
-
):
|
|
578
|
+
def smoothscroll(execution_context: int | str | None = None, undo: bool | None = None):
|
|
687
579
|
"""Smooth scroll to make editable file visible
|
|
688
580
|
|
|
689
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
690
581
|
:type execution_context: int | str | None
|
|
691
582
|
:type undo: bool | None
|
|
692
583
|
"""
|
|
693
584
|
|
|
694
585
|
def sort_column_ui_context(
|
|
695
|
-
|
|
696
|
-
execution_context: int | str | None = None,
|
|
697
|
-
undo: bool | None = None,
|
|
586
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
698
587
|
):
|
|
699
588
|
"""Change sorting to use column under cursor
|
|
700
589
|
|
|
701
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
702
590
|
:type execution_context: int | str | None
|
|
703
591
|
:type undo: bool | None
|
|
704
592
|
"""
|
|
705
593
|
|
|
706
|
-
def start_filter(
|
|
707
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
708
|
-
execution_context: int | str | None = None,
|
|
709
|
-
undo: bool | None = None,
|
|
710
|
-
):
|
|
594
|
+
def start_filter(execution_context: int | str | None = None, undo: bool | None = None):
|
|
711
595
|
"""Start entering filter text
|
|
712
596
|
|
|
713
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
714
597
|
:type execution_context: int | str | None
|
|
715
598
|
:type undo: bool | None
|
|
716
599
|
"""
|
|
717
600
|
|
|
718
601
|
def unpack_all(
|
|
719
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
720
602
|
execution_context: int | str | None = None,
|
|
721
603
|
undo: bool | None = None,
|
|
604
|
+
/,
|
|
722
605
|
*,
|
|
723
606
|
method: typing.Literal[
|
|
724
607
|
"USE_LOCAL", "WRITE_LOCAL", "USE_ORIGINAL", "WRITE_ORIGINAL", "KEEP", "REMOVE"
|
|
@@ -727,7 +610,6 @@ def unpack_all(
|
|
|
727
610
|
):
|
|
728
611
|
"""Unpack all files packed into this .blend to external ones
|
|
729
612
|
|
|
730
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
731
613
|
:type execution_context: int | str | None
|
|
732
614
|
:type undo: bool | None
|
|
733
615
|
:param method: Method, How to unpack
|
|
@@ -735,9 +617,9 @@ def unpack_all(
|
|
|
735
617
|
"""
|
|
736
618
|
|
|
737
619
|
def unpack_item(
|
|
738
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
739
620
|
execution_context: int | str | None = None,
|
|
740
621
|
undo: bool | None = None,
|
|
622
|
+
/,
|
|
741
623
|
*,
|
|
742
624
|
method: typing.Literal["USE_LOCAL", "WRITE_LOCAL", "USE_ORIGINAL", "WRITE_ORIGINAL"]
|
|
743
625
|
| None = "USE_LOCAL",
|
|
@@ -746,7 +628,6 @@ def unpack_item(
|
|
|
746
628
|
):
|
|
747
629
|
"""Unpack this file to an external file
|
|
748
630
|
|
|
749
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
750
631
|
:type execution_context: int | str | None
|
|
751
632
|
:type undo: bool | None
|
|
752
633
|
:param method: Method, How to unpack
|
|
@@ -758,25 +639,17 @@ def unpack_item(
|
|
|
758
639
|
"""
|
|
759
640
|
|
|
760
641
|
def unpack_libraries(
|
|
761
|
-
|
|
762
|
-
execution_context: int | str | None = None,
|
|
763
|
-
undo: bool | None = None,
|
|
642
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
764
643
|
):
|
|
765
644
|
"""Restore all packed linked data-blocks to their original locations
|
|
766
645
|
|
|
767
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
768
646
|
:type execution_context: int | str | None
|
|
769
647
|
:type undo: bool | None
|
|
770
648
|
"""
|
|
771
649
|
|
|
772
|
-
def view_selected(
|
|
773
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
774
|
-
execution_context: int | str | None = None,
|
|
775
|
-
undo: bool | None = None,
|
|
776
|
-
):
|
|
650
|
+
def view_selected(execution_context: int | str | None = None, undo: bool | None = None):
|
|
777
651
|
"""Scroll the selected files into view
|
|
778
652
|
|
|
779
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
780
653
|
:type execution_context: int | str | None
|
|
781
654
|
:type undo: bool | None
|
|
782
655
|
"""
|