fake-bpy-module 20240928__py3-none-any.whl → 20240930__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bmesh/types/__init__.pyi +2 -2
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +124 -124
- bpy/ops/armature/__init__.pyi +96 -96
- bpy/ops/asset/__init__.pyi +32 -32
- bpy/ops/boid/__init__.pyi +16 -16
- bpy/ops/brush/__init__.pyi +26 -26
- bpy/ops/buttons/__init__.pyi +12 -12
- bpy/ops/cachefile/__init__.pyi +10 -10
- bpy/ops/camera/__init__.pyi +4 -4
- bpy/ops/clip/__init__.pyi +184 -184
- bpy/ops/cloth/__init__.pyi +2 -2
- bpy/ops/collection/__init__.pyi +18 -18
- bpy/ops/console/__init__.pyi +42 -42
- bpy/ops/constraint/__init__.pyi +36 -36
- bpy/ops/curve/__init__.pyi +102 -102
- bpy/ops/curves/__init__.pyi +54 -54
- bpy/ops/cycles/__init__.pyi +6 -6
- bpy/ops/dpaint/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +24 -24
- bpy/ops/export_anim/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +4 -4
- bpy/ops/extensions/__init__.pyi +68 -68
- bpy/ops/file/__init__.pyi +80 -80
- bpy/ops/fluid/__init__.pyi +28 -28
- bpy/ops/font/__init__.pyi +46 -46
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +4 -4
- bpy/ops/gpencil/__init__.pyi +284 -284
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +202 -202
- bpy/ops/image/__init__.pyi +98 -98
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +4 -4
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +16 -16
- bpy/ops/marker/__init__.pyi +22 -22
- bpy/ops/mask/__init__.pyi +78 -78
- bpy/ops/material/__init__.pyi +6 -6
- bpy/ops/mball/__init__.pyi +16 -16
- bpy/ops/mesh/__init__.pyi +326 -326
- bpy/ops/nla/__init__.pyi +78 -78
- bpy/ops/node/__init__.pyi +230 -230
- bpy/ops/object/__init__.pyi +476 -476
- bpy/ops/outliner/__init__.pyi +142 -142
- bpy/ops/paint/__init__.pyi +108 -108
- bpy/ops/paintcurve/__init__.pyi +16 -16
- bpy/ops/palette/__init__.pyi +14 -14
- bpy/ops/particle/__init__.pyi +72 -72
- bpy/ops/pose/__init__.pyi +102 -102
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +70 -70
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +26 -26
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +74 -74
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +74 -74
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +178 -178
- bpy/ops/sound/__init__.pyi +14 -14
- bpy/ops/spreadsheet/__init__.pyi +8 -8
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +86 -86
- bpy/ops/text_editor/__init__.pyi +2 -2
- bpy/ops/texture/__init__.pyi +8 -8
- bpy/ops/transform/__init__.pyi +54 -54
- bpy/ops/ui/__init__.pyi +68 -68
- bpy/ops/uilist/__init__.pyi +6 -6
- bpy/ops/uv/__init__.pyi +98 -98
- bpy/ops/view2d/__init__.pyi +28 -28
- bpy/ops/view3d/__init__.pyi +134 -134
- bpy/ops/wm/__init__.pyi +232 -232
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +333 -298
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/RECORD +85 -85
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/top_level.txt +0 -0
bpy/ops/file/__init__.pyi
CHANGED
|
@@ -4,43 +4,43 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def autopack_toggle(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
7
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
8
|
execution_context: int | str | None = None,
|
|
9
9
|
undo: bool | None = None,
|
|
10
10
|
):
|
|
11
11
|
"""Automatically pack all external files into the .blend file
|
|
12
12
|
|
|
13
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
13
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
14
14
|
:type execution_context: int | str | None
|
|
15
15
|
:type undo: bool | None
|
|
16
16
|
"""
|
|
17
17
|
|
|
18
18
|
def bookmark_add(
|
|
19
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
19
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
20
20
|
execution_context: int | str | None = None,
|
|
21
21
|
undo: bool | None = None,
|
|
22
22
|
):
|
|
23
23
|
"""Add a bookmark for the selected/active directory
|
|
24
24
|
|
|
25
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
25
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
26
26
|
:type execution_context: int | str | None
|
|
27
27
|
:type undo: bool | None
|
|
28
28
|
"""
|
|
29
29
|
|
|
30
30
|
def bookmark_cleanup(
|
|
31
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
31
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
32
32
|
execution_context: int | str | None = None,
|
|
33
33
|
undo: bool | None = None,
|
|
34
34
|
):
|
|
35
35
|
"""Delete all invalid bookmarks
|
|
36
36
|
|
|
37
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
37
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
38
38
|
:type execution_context: int | str | None
|
|
39
39
|
:type undo: bool | None
|
|
40
40
|
"""
|
|
41
41
|
|
|
42
42
|
def bookmark_delete(
|
|
43
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
43
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
44
44
|
execution_context: int | str | None = None,
|
|
45
45
|
undo: bool | None = None,
|
|
46
46
|
*,
|
|
@@ -48,7 +48,7 @@ def bookmark_delete(
|
|
|
48
48
|
):
|
|
49
49
|
"""Delete selected bookmark
|
|
50
50
|
|
|
51
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
51
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
52
52
|
:type execution_context: int | str | None
|
|
53
53
|
:type undo: bool | None
|
|
54
54
|
:param index: Index
|
|
@@ -56,7 +56,7 @@ def bookmark_delete(
|
|
|
56
56
|
"""
|
|
57
57
|
|
|
58
58
|
def bookmark_move(
|
|
59
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
59
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
60
60
|
execution_context: int | str | None = None,
|
|
61
61
|
undo: bool | None = None,
|
|
62
62
|
*,
|
|
@@ -64,7 +64,7 @@ def bookmark_move(
|
|
|
64
64
|
):
|
|
65
65
|
"""Move the active bookmark up/down in the list
|
|
66
66
|
|
|
67
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
67
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
68
68
|
:type execution_context: int | str | None
|
|
69
69
|
:type undo: bool | None
|
|
70
70
|
:param direction: Direction, Direction to move the active bookmark towards
|
|
@@ -84,31 +84,31 @@ def bookmark_move(
|
|
|
84
84
|
"""
|
|
85
85
|
|
|
86
86
|
def cancel(
|
|
87
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
87
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
88
88
|
execution_context: int | str | None = None,
|
|
89
89
|
undo: bool | None = None,
|
|
90
90
|
):
|
|
91
91
|
"""Cancel loading of selected file
|
|
92
92
|
|
|
93
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
93
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
94
94
|
:type execution_context: int | str | None
|
|
95
95
|
:type undo: bool | None
|
|
96
96
|
"""
|
|
97
97
|
|
|
98
98
|
def delete(
|
|
99
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
99
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
100
100
|
execution_context: int | str | None = None,
|
|
101
101
|
undo: bool | None = None,
|
|
102
102
|
):
|
|
103
103
|
"""Move selected files to the trash or recycle bin
|
|
104
104
|
|
|
105
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
105
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
106
106
|
:type execution_context: int | str | None
|
|
107
107
|
:type undo: bool | None
|
|
108
108
|
"""
|
|
109
109
|
|
|
110
110
|
def directory_new(
|
|
111
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
111
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
112
112
|
execution_context: int | str | None = None,
|
|
113
113
|
undo: bool | None = None,
|
|
114
114
|
*,
|
|
@@ -117,7 +117,7 @@ def directory_new(
|
|
|
117
117
|
):
|
|
118
118
|
"""Create a new directory
|
|
119
119
|
|
|
120
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
120
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
121
121
|
:type execution_context: int | str | None
|
|
122
122
|
:type undo: bool | None
|
|
123
123
|
:param directory: Directory, Name of new directory
|
|
@@ -127,31 +127,31 @@ def directory_new(
|
|
|
127
127
|
"""
|
|
128
128
|
|
|
129
129
|
def edit_directory_path(
|
|
130
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
130
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
131
131
|
execution_context: int | str | None = None,
|
|
132
132
|
undo: bool | None = None,
|
|
133
133
|
):
|
|
134
134
|
"""Start editing directory field
|
|
135
135
|
|
|
136
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
136
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
137
137
|
:type execution_context: int | str | None
|
|
138
138
|
:type undo: bool | None
|
|
139
139
|
"""
|
|
140
140
|
|
|
141
141
|
def execute(
|
|
142
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
142
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
143
143
|
execution_context: int | str | None = None,
|
|
144
144
|
undo: bool | None = None,
|
|
145
145
|
):
|
|
146
146
|
"""Execute selected file
|
|
147
147
|
|
|
148
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
148
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
149
149
|
:type execution_context: int | str | None
|
|
150
150
|
:type undo: bool | None
|
|
151
151
|
"""
|
|
152
152
|
|
|
153
153
|
def external_operation(
|
|
154
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
154
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
155
155
|
execution_context: int | str | None = None,
|
|
156
156
|
undo: bool | None = None,
|
|
157
157
|
*,
|
|
@@ -177,7 +177,7 @@ def external_operation(
|
|
|
177
177
|
):
|
|
178
178
|
"""Perform external operation on a file or folder
|
|
179
179
|
|
|
180
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
180
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
181
181
|
:type execution_context: int | str | None
|
|
182
182
|
:type undo: bool | None
|
|
183
183
|
:param filepath: File or folder path
|
|
@@ -232,7 +232,7 @@ def external_operation(
|
|
|
232
232
|
"""
|
|
233
233
|
|
|
234
234
|
def filenum(
|
|
235
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
235
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
236
236
|
execution_context: int | str | None = None,
|
|
237
237
|
undo: bool | None = None,
|
|
238
238
|
*,
|
|
@@ -240,7 +240,7 @@ def filenum(
|
|
|
240
240
|
):
|
|
241
241
|
"""Increment number in filename
|
|
242
242
|
|
|
243
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
243
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
244
244
|
:type execution_context: int | str | None
|
|
245
245
|
:type undo: bool | None
|
|
246
246
|
:param increment: Increment
|
|
@@ -248,7 +248,7 @@ def filenum(
|
|
|
248
248
|
"""
|
|
249
249
|
|
|
250
250
|
def filepath_drop(
|
|
251
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
251
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
252
252
|
execution_context: int | str | None = None,
|
|
253
253
|
undo: bool | None = None,
|
|
254
254
|
*,
|
|
@@ -256,14 +256,14 @@ def filepath_drop(
|
|
|
256
256
|
):
|
|
257
257
|
"""Undocumented, consider contributing.
|
|
258
258
|
|
|
259
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
259
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
260
260
|
:type execution_context: int | str | None
|
|
261
261
|
:type undo: bool | None
|
|
262
262
|
:type filepath: str
|
|
263
263
|
"""
|
|
264
264
|
|
|
265
265
|
def find_missing_files(
|
|
266
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
266
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
267
267
|
execution_context: int | str | None = None,
|
|
268
268
|
undo: bool | None = None,
|
|
269
269
|
*,
|
|
@@ -297,7 +297,7 @@ def find_missing_files(
|
|
|
297
297
|
):
|
|
298
298
|
"""Try to find missing external files
|
|
299
299
|
|
|
300
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
300
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
301
301
|
:type execution_context: int | str | None
|
|
302
302
|
:type undo: bool | None
|
|
303
303
|
:param find_all: Find All, Find all files in the search path (not just missing)
|
|
@@ -363,175 +363,175 @@ def find_missing_files(
|
|
|
363
363
|
"""
|
|
364
364
|
|
|
365
365
|
def hidedot(
|
|
366
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
366
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
367
367
|
execution_context: int | str | None = None,
|
|
368
368
|
undo: bool | None = None,
|
|
369
369
|
):
|
|
370
370
|
"""Toggle hide hidden dot files
|
|
371
371
|
|
|
372
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
372
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
373
373
|
:type execution_context: int | str | None
|
|
374
374
|
:type undo: bool | None
|
|
375
375
|
"""
|
|
376
376
|
|
|
377
377
|
def highlight(
|
|
378
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
378
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
379
379
|
execution_context: int | str | None = None,
|
|
380
380
|
undo: bool | None = None,
|
|
381
381
|
):
|
|
382
382
|
"""Highlight selected file(s)
|
|
383
383
|
|
|
384
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
384
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
385
385
|
:type execution_context: int | str | None
|
|
386
386
|
:type undo: bool | None
|
|
387
387
|
"""
|
|
388
388
|
|
|
389
389
|
def make_paths_absolute(
|
|
390
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
390
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
391
391
|
execution_context: int | str | None = None,
|
|
392
392
|
undo: bool | None = None,
|
|
393
393
|
):
|
|
394
394
|
"""Make all paths to external files absolute
|
|
395
395
|
|
|
396
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
396
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
397
397
|
:type execution_context: int | str | None
|
|
398
398
|
:type undo: bool | None
|
|
399
399
|
"""
|
|
400
400
|
|
|
401
401
|
def make_paths_relative(
|
|
402
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
402
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
403
403
|
execution_context: int | str | None = None,
|
|
404
404
|
undo: bool | None = None,
|
|
405
405
|
):
|
|
406
406
|
"""Make all paths to external files relative to current .blend
|
|
407
407
|
|
|
408
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
408
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
409
409
|
:type execution_context: int | str | None
|
|
410
410
|
:type undo: bool | None
|
|
411
411
|
"""
|
|
412
412
|
|
|
413
413
|
def mouse_execute(
|
|
414
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
414
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
415
415
|
execution_context: int | str | None = None,
|
|
416
416
|
undo: bool | None = None,
|
|
417
417
|
):
|
|
418
418
|
"""Perform the current execute action for the file under the cursor (e.g. open the file)
|
|
419
419
|
|
|
420
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
420
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
421
421
|
:type execution_context: int | str | None
|
|
422
422
|
:type undo: bool | None
|
|
423
423
|
"""
|
|
424
424
|
|
|
425
425
|
def next(
|
|
426
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
426
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
427
427
|
execution_context: int | str | None = None,
|
|
428
428
|
undo: bool | None = None,
|
|
429
429
|
):
|
|
430
430
|
"""Move to next folder
|
|
431
431
|
|
|
432
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
432
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
433
433
|
:type execution_context: int | str | None
|
|
434
434
|
:type undo: bool | None
|
|
435
435
|
"""
|
|
436
436
|
|
|
437
437
|
def pack_all(
|
|
438
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
438
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
439
439
|
execution_context: int | str | None = None,
|
|
440
440
|
undo: bool | None = None,
|
|
441
441
|
):
|
|
442
442
|
"""Pack all used external files into this .blend
|
|
443
443
|
|
|
444
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
444
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
445
445
|
:type execution_context: int | str | None
|
|
446
446
|
:type undo: bool | None
|
|
447
447
|
"""
|
|
448
448
|
|
|
449
449
|
def pack_libraries(
|
|
450
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
450
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
451
451
|
execution_context: int | str | None = None,
|
|
452
452
|
undo: bool | None = None,
|
|
453
453
|
):
|
|
454
454
|
"""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
|
|
455
455
|
|
|
456
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
456
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
457
457
|
:type execution_context: int | str | None
|
|
458
458
|
:type undo: bool | None
|
|
459
459
|
"""
|
|
460
460
|
|
|
461
461
|
def parent(
|
|
462
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
462
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
463
463
|
execution_context: int | str | None = None,
|
|
464
464
|
undo: bool | None = None,
|
|
465
465
|
):
|
|
466
466
|
"""Move to parent directory
|
|
467
467
|
|
|
468
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
468
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
469
469
|
:type execution_context: int | str | None
|
|
470
470
|
:type undo: bool | None
|
|
471
471
|
"""
|
|
472
472
|
|
|
473
473
|
def previous(
|
|
474
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
474
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
475
475
|
execution_context: int | str | None = None,
|
|
476
476
|
undo: bool | None = None,
|
|
477
477
|
):
|
|
478
478
|
"""Move to previous folder
|
|
479
479
|
|
|
480
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
480
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
481
481
|
:type execution_context: int | str | None
|
|
482
482
|
:type undo: bool | None
|
|
483
483
|
"""
|
|
484
484
|
|
|
485
485
|
def refresh(
|
|
486
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
486
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
487
487
|
execution_context: int | str | None = None,
|
|
488
488
|
undo: bool | None = None,
|
|
489
489
|
):
|
|
490
490
|
"""Refresh the file list
|
|
491
491
|
|
|
492
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
492
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
493
493
|
:type execution_context: int | str | None
|
|
494
494
|
:type undo: bool | None
|
|
495
495
|
"""
|
|
496
496
|
|
|
497
497
|
def rename(
|
|
498
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
498
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
499
499
|
execution_context: int | str | None = None,
|
|
500
500
|
undo: bool | None = None,
|
|
501
501
|
):
|
|
502
502
|
"""Rename file or file directory
|
|
503
503
|
|
|
504
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
504
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
505
505
|
:type execution_context: int | str | None
|
|
506
506
|
:type undo: bool | None
|
|
507
507
|
"""
|
|
508
508
|
|
|
509
509
|
def report_missing_files(
|
|
510
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
510
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
511
511
|
execution_context: int | str | None = None,
|
|
512
512
|
undo: bool | None = None,
|
|
513
513
|
):
|
|
514
514
|
"""Report all missing external files
|
|
515
515
|
|
|
516
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
516
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
517
517
|
:type execution_context: int | str | None
|
|
518
518
|
:type undo: bool | None
|
|
519
519
|
"""
|
|
520
520
|
|
|
521
521
|
def reset_recent(
|
|
522
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
522
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
523
523
|
execution_context: int | str | None = None,
|
|
524
524
|
undo: bool | None = None,
|
|
525
525
|
):
|
|
526
526
|
"""Reset recent files
|
|
527
527
|
|
|
528
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
528
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
529
529
|
:type execution_context: int | str | None
|
|
530
530
|
:type undo: bool | None
|
|
531
531
|
"""
|
|
532
532
|
|
|
533
533
|
def select(
|
|
534
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
534
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
535
535
|
execution_context: int | str | None = None,
|
|
536
536
|
undo: bool | None = None,
|
|
537
537
|
*,
|
|
@@ -547,7 +547,7 @@ def select(
|
|
|
547
547
|
):
|
|
548
548
|
"""Handle mouse clicks to select and activate items
|
|
549
549
|
|
|
550
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
550
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
551
551
|
:type execution_context: int | str | None
|
|
552
552
|
:type undo: bool | None
|
|
553
553
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
@@ -571,7 +571,7 @@ def select(
|
|
|
571
571
|
"""
|
|
572
572
|
|
|
573
573
|
def select_all(
|
|
574
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
574
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
575
575
|
execution_context: int | str | None = None,
|
|
576
576
|
undo: bool | None = None,
|
|
577
577
|
*,
|
|
@@ -579,7 +579,7 @@ def select_all(
|
|
|
579
579
|
):
|
|
580
580
|
"""Select or deselect all files
|
|
581
581
|
|
|
582
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
582
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
583
583
|
:type execution_context: int | str | None
|
|
584
584
|
:type undo: bool | None
|
|
585
585
|
:param action: Action, Selection action to execute
|
|
@@ -599,7 +599,7 @@ def select_all(
|
|
|
599
599
|
"""
|
|
600
600
|
|
|
601
601
|
def select_bookmark(
|
|
602
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
602
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
603
603
|
execution_context: int | str | None = None,
|
|
604
604
|
undo: bool | None = None,
|
|
605
605
|
*,
|
|
@@ -607,7 +607,7 @@ def select_bookmark(
|
|
|
607
607
|
):
|
|
608
608
|
"""Select a bookmarked directory
|
|
609
609
|
|
|
610
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
610
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
611
611
|
:type execution_context: int | str | None
|
|
612
612
|
:type undo: bool | None
|
|
613
613
|
:param dir: Directory
|
|
@@ -615,7 +615,7 @@ def select_bookmark(
|
|
|
615
615
|
"""
|
|
616
616
|
|
|
617
617
|
def select_box(
|
|
618
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
618
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
619
619
|
execution_context: int | str | None = None,
|
|
620
620
|
undo: bool | None = None,
|
|
621
621
|
*,
|
|
@@ -628,7 +628,7 @@ def select_box(
|
|
|
628
628
|
):
|
|
629
629
|
"""Activate/select the file(s) contained in the border
|
|
630
630
|
|
|
631
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
631
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
632
632
|
:type execution_context: int | str | None
|
|
633
633
|
:type undo: bool | None
|
|
634
634
|
:param xmin: X Min
|
|
@@ -655,7 +655,7 @@ def select_box(
|
|
|
655
655
|
"""
|
|
656
656
|
|
|
657
657
|
def select_walk(
|
|
658
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
658
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
659
659
|
execution_context: int | str | None = None,
|
|
660
660
|
undo: bool | None = None,
|
|
661
661
|
*,
|
|
@@ -665,7 +665,7 @@ def select_walk(
|
|
|
665
665
|
):
|
|
666
666
|
"""Select/Deselect files by walking through them
|
|
667
667
|
|
|
668
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
668
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
669
669
|
:type execution_context: int | str | None
|
|
670
670
|
:type undo: bool | None
|
|
671
671
|
:param direction: Walk Direction, Select/Deselect element in this direction
|
|
@@ -677,43 +677,43 @@ def select_walk(
|
|
|
677
677
|
"""
|
|
678
678
|
|
|
679
679
|
def smoothscroll(
|
|
680
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
680
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
681
681
|
execution_context: int | str | None = None,
|
|
682
682
|
undo: bool | None = None,
|
|
683
683
|
):
|
|
684
684
|
"""Smooth scroll to make editable file visible
|
|
685
685
|
|
|
686
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
686
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
687
687
|
:type execution_context: int | str | None
|
|
688
688
|
:type undo: bool | None
|
|
689
689
|
"""
|
|
690
690
|
|
|
691
691
|
def sort_column_ui_context(
|
|
692
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
692
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
693
693
|
execution_context: int | str | None = None,
|
|
694
694
|
undo: bool | None = None,
|
|
695
695
|
):
|
|
696
696
|
"""Change sorting to use column under cursor
|
|
697
697
|
|
|
698
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
698
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
699
699
|
:type execution_context: int | str | None
|
|
700
700
|
:type undo: bool | None
|
|
701
701
|
"""
|
|
702
702
|
|
|
703
703
|
def start_filter(
|
|
704
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
704
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
705
705
|
execution_context: int | str | None = None,
|
|
706
706
|
undo: bool | None = None,
|
|
707
707
|
):
|
|
708
708
|
"""Start entering filter text
|
|
709
709
|
|
|
710
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
710
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
711
711
|
:type execution_context: int | str | None
|
|
712
712
|
:type undo: bool | None
|
|
713
713
|
"""
|
|
714
714
|
|
|
715
715
|
def unpack_all(
|
|
716
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
716
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
717
717
|
execution_context: int | str | None = None,
|
|
718
718
|
undo: bool | None = None,
|
|
719
719
|
*,
|
|
@@ -724,7 +724,7 @@ def unpack_all(
|
|
|
724
724
|
):
|
|
725
725
|
"""Unpack all files packed into this .blend to external ones
|
|
726
726
|
|
|
727
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
727
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
728
728
|
:type execution_context: int | str | None
|
|
729
729
|
:type undo: bool | None
|
|
730
730
|
:param method: Method, How to unpack
|
|
@@ -732,7 +732,7 @@ def unpack_all(
|
|
|
732
732
|
"""
|
|
733
733
|
|
|
734
734
|
def unpack_item(
|
|
735
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
735
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
736
736
|
execution_context: int | str | None = None,
|
|
737
737
|
undo: bool | None = None,
|
|
738
738
|
*,
|
|
@@ -743,7 +743,7 @@ def unpack_item(
|
|
|
743
743
|
):
|
|
744
744
|
"""Unpack this file to an external file
|
|
745
745
|
|
|
746
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
746
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
747
747
|
:type execution_context: int | str | None
|
|
748
748
|
:type undo: bool | None
|
|
749
749
|
:param method: Method, How to unpack
|
|
@@ -755,25 +755,25 @@ def unpack_item(
|
|
|
755
755
|
"""
|
|
756
756
|
|
|
757
757
|
def unpack_libraries(
|
|
758
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
758
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
759
759
|
execution_context: int | str | None = None,
|
|
760
760
|
undo: bool | None = None,
|
|
761
761
|
):
|
|
762
762
|
"""Restore all packed linked data-blocks to their original locations
|
|
763
763
|
|
|
764
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
764
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
765
765
|
:type execution_context: int | str | None
|
|
766
766
|
:type undo: bool | None
|
|
767
767
|
"""
|
|
768
768
|
|
|
769
769
|
def view_selected(
|
|
770
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
770
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
771
771
|
execution_context: int | str | None = None,
|
|
772
772
|
undo: bool | None = None,
|
|
773
773
|
):
|
|
774
774
|
"""Scroll the selected files into view
|
|
775
775
|
|
|
776
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
776
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
777
777
|
:type execution_context: int | str | None
|
|
778
778
|
:type undo: bool | None
|
|
779
779
|
"""
|