fake-bpy-module 20240811__py3-none-any.whl → 20240813__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_view3d/__init__.pyi +31 -0
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +110 -110
- 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 +166 -166
- 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 +208 -208
- bpy/ops/object/__init__.pyi +473 -473
- 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 +72 -72
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +174 -174
- 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 +64 -64
- 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 +226 -226
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +76 -64
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/RECORD +83 -83
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/top_level.txt +0 -0
bpy/ops/file/__init__.pyi
CHANGED
|
@@ -7,13 +7,13 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def autopack_toggle(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
):
|
|
14
14
|
"""Automatically pack all external files into the .blend file
|
|
15
15
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
16
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
17
17
|
:type execution_context: int | str | None
|
|
18
18
|
:type undo: bool | None
|
|
19
19
|
"""
|
|
@@ -21,13 +21,13 @@ def autopack_toggle(
|
|
|
21
21
|
...
|
|
22
22
|
|
|
23
23
|
def bookmark_add(
|
|
24
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
24
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
25
25
|
execution_context: int | str | None = None,
|
|
26
26
|
undo: bool | None = None,
|
|
27
27
|
):
|
|
28
28
|
"""Add a bookmark for the selected/active directory
|
|
29
29
|
|
|
30
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
30
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
31
31
|
:type execution_context: int | str | None
|
|
32
32
|
:type undo: bool | None
|
|
33
33
|
"""
|
|
@@ -35,13 +35,13 @@ def bookmark_add(
|
|
|
35
35
|
...
|
|
36
36
|
|
|
37
37
|
def bookmark_cleanup(
|
|
38
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
38
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
39
39
|
execution_context: int | str | None = None,
|
|
40
40
|
undo: bool | None = None,
|
|
41
41
|
):
|
|
42
42
|
"""Delete all invalid bookmarks
|
|
43
43
|
|
|
44
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
44
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
45
45
|
:type execution_context: int | str | None
|
|
46
46
|
:type undo: bool | None
|
|
47
47
|
"""
|
|
@@ -49,7 +49,7 @@ def bookmark_cleanup(
|
|
|
49
49
|
...
|
|
50
50
|
|
|
51
51
|
def bookmark_delete(
|
|
52
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
52
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
53
53
|
execution_context: int | str | None = None,
|
|
54
54
|
undo: bool | None = None,
|
|
55
55
|
*,
|
|
@@ -57,7 +57,7 @@ def bookmark_delete(
|
|
|
57
57
|
):
|
|
58
58
|
"""Delete selected bookmark
|
|
59
59
|
|
|
60
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
60
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
61
61
|
:type execution_context: int | str | None
|
|
62
62
|
:type undo: bool | None
|
|
63
63
|
:param index: Index
|
|
@@ -67,7 +67,7 @@ def bookmark_delete(
|
|
|
67
67
|
...
|
|
68
68
|
|
|
69
69
|
def bookmark_move(
|
|
70
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
70
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
71
71
|
execution_context: int | str | None = None,
|
|
72
72
|
undo: bool | None = None,
|
|
73
73
|
*,
|
|
@@ -75,7 +75,7 @@ def bookmark_move(
|
|
|
75
75
|
):
|
|
76
76
|
"""Move the active bookmark up/down in the list
|
|
77
77
|
|
|
78
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
78
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
79
79
|
:type execution_context: int | str | None
|
|
80
80
|
:type undo: bool | None
|
|
81
81
|
:param direction: Direction, Direction to move the active bookmark towards
|
|
@@ -97,13 +97,13 @@ def bookmark_move(
|
|
|
97
97
|
...
|
|
98
98
|
|
|
99
99
|
def cancel(
|
|
100
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
100
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
101
101
|
execution_context: int | str | None = None,
|
|
102
102
|
undo: bool | None = None,
|
|
103
103
|
):
|
|
104
104
|
"""Cancel loading of selected file
|
|
105
105
|
|
|
106
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
106
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
107
107
|
:type execution_context: int | str | None
|
|
108
108
|
:type undo: bool | None
|
|
109
109
|
"""
|
|
@@ -111,13 +111,13 @@ def cancel(
|
|
|
111
111
|
...
|
|
112
112
|
|
|
113
113
|
def delete(
|
|
114
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
114
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
115
115
|
execution_context: int | str | None = None,
|
|
116
116
|
undo: bool | None = None,
|
|
117
117
|
):
|
|
118
118
|
"""Move selected files to the trash or recycle bin
|
|
119
119
|
|
|
120
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
120
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
121
121
|
:type execution_context: int | str | None
|
|
122
122
|
:type undo: bool | None
|
|
123
123
|
"""
|
|
@@ -125,7 +125,7 @@ def delete(
|
|
|
125
125
|
...
|
|
126
126
|
|
|
127
127
|
def directory_new(
|
|
128
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
128
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
129
129
|
execution_context: int | str | None = None,
|
|
130
130
|
undo: bool | None = None,
|
|
131
131
|
*,
|
|
@@ -134,7 +134,7 @@ def directory_new(
|
|
|
134
134
|
):
|
|
135
135
|
"""Create a new directory
|
|
136
136
|
|
|
137
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
137
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
138
138
|
:type execution_context: int | str | None
|
|
139
139
|
:type undo: bool | None
|
|
140
140
|
:param directory: Directory, Name of new directory
|
|
@@ -146,13 +146,13 @@ def directory_new(
|
|
|
146
146
|
...
|
|
147
147
|
|
|
148
148
|
def edit_directory_path(
|
|
149
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
149
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
150
150
|
execution_context: int | str | None = None,
|
|
151
151
|
undo: bool | None = None,
|
|
152
152
|
):
|
|
153
153
|
"""Start editing directory field
|
|
154
154
|
|
|
155
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
155
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
156
156
|
:type execution_context: int | str | None
|
|
157
157
|
:type undo: bool | None
|
|
158
158
|
"""
|
|
@@ -160,13 +160,13 @@ def edit_directory_path(
|
|
|
160
160
|
...
|
|
161
161
|
|
|
162
162
|
def execute(
|
|
163
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
163
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
164
164
|
execution_context: int | str | None = None,
|
|
165
165
|
undo: bool | None = None,
|
|
166
166
|
):
|
|
167
167
|
"""Execute selected file
|
|
168
168
|
|
|
169
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
169
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
170
170
|
:type execution_context: int | str | None
|
|
171
171
|
:type undo: bool | None
|
|
172
172
|
"""
|
|
@@ -174,7 +174,7 @@ def execute(
|
|
|
174
174
|
...
|
|
175
175
|
|
|
176
176
|
def external_operation(
|
|
177
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
177
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
178
178
|
execution_context: int | str | None = None,
|
|
179
179
|
undo: bool | None = None,
|
|
180
180
|
*,
|
|
@@ -200,7 +200,7 @@ def external_operation(
|
|
|
200
200
|
):
|
|
201
201
|
"""Perform external operation on a file or folder
|
|
202
202
|
|
|
203
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
203
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
204
204
|
:type execution_context: int | str | None
|
|
205
205
|
:type undo: bool | None
|
|
206
206
|
:param filepath: File or folder path
|
|
@@ -257,7 +257,7 @@ def external_operation(
|
|
|
257
257
|
...
|
|
258
258
|
|
|
259
259
|
def filenum(
|
|
260
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
260
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
261
261
|
execution_context: int | str | None = None,
|
|
262
262
|
undo: bool | None = None,
|
|
263
263
|
*,
|
|
@@ -265,7 +265,7 @@ def filenum(
|
|
|
265
265
|
):
|
|
266
266
|
"""Increment number in filename
|
|
267
267
|
|
|
268
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
268
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
269
269
|
:type execution_context: int | str | None
|
|
270
270
|
:type undo: bool | None
|
|
271
271
|
:param increment: Increment
|
|
@@ -275,7 +275,7 @@ def filenum(
|
|
|
275
275
|
...
|
|
276
276
|
|
|
277
277
|
def filepath_drop(
|
|
278
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
278
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
279
279
|
execution_context: int | str | None = None,
|
|
280
280
|
undo: bool | None = None,
|
|
281
281
|
*,
|
|
@@ -283,7 +283,7 @@ def filepath_drop(
|
|
|
283
283
|
):
|
|
284
284
|
"""Undocumented, consider contributing.
|
|
285
285
|
|
|
286
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
286
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
287
287
|
:type execution_context: int | str | None
|
|
288
288
|
:type undo: bool | None
|
|
289
289
|
:type filepath: str
|
|
@@ -292,7 +292,7 @@ def filepath_drop(
|
|
|
292
292
|
...
|
|
293
293
|
|
|
294
294
|
def find_missing_files(
|
|
295
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
295
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
296
296
|
execution_context: int | str | None = None,
|
|
297
297
|
undo: bool | None = None,
|
|
298
298
|
*,
|
|
@@ -326,7 +326,7 @@ def find_missing_files(
|
|
|
326
326
|
):
|
|
327
327
|
"""Try to find missing external files
|
|
328
328
|
|
|
329
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
329
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
330
330
|
:type execution_context: int | str | None
|
|
331
331
|
:type undo: bool | None
|
|
332
332
|
:param find_all: Find All, Find all files in the search path (not just missing)
|
|
@@ -394,13 +394,13 @@ def find_missing_files(
|
|
|
394
394
|
...
|
|
395
395
|
|
|
396
396
|
def hidedot(
|
|
397
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
397
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
398
398
|
execution_context: int | str | None = None,
|
|
399
399
|
undo: bool | None = None,
|
|
400
400
|
):
|
|
401
401
|
"""Toggle hide hidden dot files
|
|
402
402
|
|
|
403
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
403
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
404
404
|
:type execution_context: int | str | None
|
|
405
405
|
:type undo: bool | None
|
|
406
406
|
"""
|
|
@@ -408,13 +408,13 @@ def hidedot(
|
|
|
408
408
|
...
|
|
409
409
|
|
|
410
410
|
def highlight(
|
|
411
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
411
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
412
412
|
execution_context: int | str | None = None,
|
|
413
413
|
undo: bool | None = None,
|
|
414
414
|
):
|
|
415
415
|
"""Highlight selected file(s)
|
|
416
416
|
|
|
417
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
417
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
418
418
|
:type execution_context: int | str | None
|
|
419
419
|
:type undo: bool | None
|
|
420
420
|
"""
|
|
@@ -422,13 +422,13 @@ def highlight(
|
|
|
422
422
|
...
|
|
423
423
|
|
|
424
424
|
def make_paths_absolute(
|
|
425
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
425
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
426
426
|
execution_context: int | str | None = None,
|
|
427
427
|
undo: bool | None = None,
|
|
428
428
|
):
|
|
429
429
|
"""Make all paths to external files absolute
|
|
430
430
|
|
|
431
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
431
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
432
432
|
:type execution_context: int | str | None
|
|
433
433
|
:type undo: bool | None
|
|
434
434
|
"""
|
|
@@ -436,13 +436,13 @@ def make_paths_absolute(
|
|
|
436
436
|
...
|
|
437
437
|
|
|
438
438
|
def make_paths_relative(
|
|
439
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
439
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
440
440
|
execution_context: int | str | None = None,
|
|
441
441
|
undo: bool | None = None,
|
|
442
442
|
):
|
|
443
443
|
"""Make all paths to external files relative to current .blend
|
|
444
444
|
|
|
445
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
445
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
446
446
|
:type execution_context: int | str | None
|
|
447
447
|
:type undo: bool | None
|
|
448
448
|
"""
|
|
@@ -450,13 +450,13 @@ def make_paths_relative(
|
|
|
450
450
|
...
|
|
451
451
|
|
|
452
452
|
def mouse_execute(
|
|
453
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
453
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
454
454
|
execution_context: int | str | None = None,
|
|
455
455
|
undo: bool | None = None,
|
|
456
456
|
):
|
|
457
457
|
"""Perform the current execute action for the file under the cursor (e.g. open the file)
|
|
458
458
|
|
|
459
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
459
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
460
460
|
:type execution_context: int | str | None
|
|
461
461
|
:type undo: bool | None
|
|
462
462
|
"""
|
|
@@ -464,13 +464,13 @@ def mouse_execute(
|
|
|
464
464
|
...
|
|
465
465
|
|
|
466
466
|
def next(
|
|
467
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
467
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
468
468
|
execution_context: int | str | None = None,
|
|
469
469
|
undo: bool | None = None,
|
|
470
470
|
):
|
|
471
471
|
"""Move to next folder
|
|
472
472
|
|
|
473
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
473
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
474
474
|
:type execution_context: int | str | None
|
|
475
475
|
:type undo: bool | None
|
|
476
476
|
"""
|
|
@@ -478,13 +478,13 @@ def next(
|
|
|
478
478
|
...
|
|
479
479
|
|
|
480
480
|
def pack_all(
|
|
481
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
481
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
482
482
|
execution_context: int | str | None = None,
|
|
483
483
|
undo: bool | None = None,
|
|
484
484
|
):
|
|
485
485
|
"""Pack all used external files into this .blend
|
|
486
486
|
|
|
487
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
487
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
488
488
|
:type execution_context: int | str | None
|
|
489
489
|
:type undo: bool | None
|
|
490
490
|
"""
|
|
@@ -492,13 +492,13 @@ def pack_all(
|
|
|
492
492
|
...
|
|
493
493
|
|
|
494
494
|
def pack_libraries(
|
|
495
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
495
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
496
496
|
execution_context: int | str | None = None,
|
|
497
497
|
undo: bool | None = None,
|
|
498
498
|
):
|
|
499
499
|
"""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
|
|
500
500
|
|
|
501
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
501
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
502
502
|
:type execution_context: int | str | None
|
|
503
503
|
:type undo: bool | None
|
|
504
504
|
"""
|
|
@@ -506,13 +506,13 @@ def pack_libraries(
|
|
|
506
506
|
...
|
|
507
507
|
|
|
508
508
|
def parent(
|
|
509
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
509
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
510
510
|
execution_context: int | str | None = None,
|
|
511
511
|
undo: bool | None = None,
|
|
512
512
|
):
|
|
513
513
|
"""Move to parent directory
|
|
514
514
|
|
|
515
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
515
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
516
516
|
:type execution_context: int | str | None
|
|
517
517
|
:type undo: bool | None
|
|
518
518
|
"""
|
|
@@ -520,13 +520,13 @@ def parent(
|
|
|
520
520
|
...
|
|
521
521
|
|
|
522
522
|
def previous(
|
|
523
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
523
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
524
524
|
execution_context: int | str | None = None,
|
|
525
525
|
undo: bool | None = None,
|
|
526
526
|
):
|
|
527
527
|
"""Move to previous folder
|
|
528
528
|
|
|
529
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
529
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
530
530
|
:type execution_context: int | str | None
|
|
531
531
|
:type undo: bool | None
|
|
532
532
|
"""
|
|
@@ -534,13 +534,13 @@ def previous(
|
|
|
534
534
|
...
|
|
535
535
|
|
|
536
536
|
def refresh(
|
|
537
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
537
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
538
538
|
execution_context: int | str | None = None,
|
|
539
539
|
undo: bool | None = None,
|
|
540
540
|
):
|
|
541
541
|
"""Refresh the file list
|
|
542
542
|
|
|
543
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
543
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
544
544
|
:type execution_context: int | str | None
|
|
545
545
|
:type undo: bool | None
|
|
546
546
|
"""
|
|
@@ -548,13 +548,13 @@ def refresh(
|
|
|
548
548
|
...
|
|
549
549
|
|
|
550
550
|
def rename(
|
|
551
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
551
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
552
552
|
execution_context: int | str | None = None,
|
|
553
553
|
undo: bool | None = None,
|
|
554
554
|
):
|
|
555
555
|
"""Rename file or file directory
|
|
556
556
|
|
|
557
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
557
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
558
558
|
:type execution_context: int | str | None
|
|
559
559
|
:type undo: bool | None
|
|
560
560
|
"""
|
|
@@ -562,13 +562,13 @@ def rename(
|
|
|
562
562
|
...
|
|
563
563
|
|
|
564
564
|
def report_missing_files(
|
|
565
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
565
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
566
566
|
execution_context: int | str | None = None,
|
|
567
567
|
undo: bool | None = None,
|
|
568
568
|
):
|
|
569
569
|
"""Report all missing external files
|
|
570
570
|
|
|
571
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
571
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
572
572
|
:type execution_context: int | str | None
|
|
573
573
|
:type undo: bool | None
|
|
574
574
|
"""
|
|
@@ -576,13 +576,13 @@ def report_missing_files(
|
|
|
576
576
|
...
|
|
577
577
|
|
|
578
578
|
def reset_recent(
|
|
579
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
579
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
580
580
|
execution_context: int | str | None = None,
|
|
581
581
|
undo: bool | None = None,
|
|
582
582
|
):
|
|
583
583
|
"""Reset recent files
|
|
584
584
|
|
|
585
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
585
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
586
586
|
:type execution_context: int | str | None
|
|
587
587
|
:type undo: bool | None
|
|
588
588
|
"""
|
|
@@ -590,7 +590,7 @@ def reset_recent(
|
|
|
590
590
|
...
|
|
591
591
|
|
|
592
592
|
def select(
|
|
593
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
593
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
594
594
|
execution_context: int | str | None = None,
|
|
595
595
|
undo: bool | None = None,
|
|
596
596
|
*,
|
|
@@ -606,7 +606,7 @@ def select(
|
|
|
606
606
|
):
|
|
607
607
|
"""Handle mouse clicks to select and activate items
|
|
608
608
|
|
|
609
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
609
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
610
610
|
:type execution_context: int | str | None
|
|
611
611
|
:type undo: bool | None
|
|
612
612
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
@@ -632,7 +632,7 @@ def select(
|
|
|
632
632
|
...
|
|
633
633
|
|
|
634
634
|
def select_all(
|
|
635
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
635
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
636
636
|
execution_context: int | str | None = None,
|
|
637
637
|
undo: bool | None = None,
|
|
638
638
|
*,
|
|
@@ -640,7 +640,7 @@ def select_all(
|
|
|
640
640
|
):
|
|
641
641
|
"""Select or deselect all files
|
|
642
642
|
|
|
643
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
643
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
644
644
|
:type execution_context: int | str | None
|
|
645
645
|
:type undo: bool | None
|
|
646
646
|
:param action: Action, Selection action to execute
|
|
@@ -662,7 +662,7 @@ def select_all(
|
|
|
662
662
|
...
|
|
663
663
|
|
|
664
664
|
def select_bookmark(
|
|
665
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
665
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
666
666
|
execution_context: int | str | None = None,
|
|
667
667
|
undo: bool | None = None,
|
|
668
668
|
*,
|
|
@@ -670,7 +670,7 @@ def select_bookmark(
|
|
|
670
670
|
):
|
|
671
671
|
"""Select a bookmarked directory
|
|
672
672
|
|
|
673
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
673
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
674
674
|
:type execution_context: int | str | None
|
|
675
675
|
:type undo: bool | None
|
|
676
676
|
:param dir: Directory
|
|
@@ -680,7 +680,7 @@ def select_bookmark(
|
|
|
680
680
|
...
|
|
681
681
|
|
|
682
682
|
def select_box(
|
|
683
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
683
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
684
684
|
execution_context: int | str | None = None,
|
|
685
685
|
undo: bool | None = None,
|
|
686
686
|
*,
|
|
@@ -693,7 +693,7 @@ def select_box(
|
|
|
693
693
|
):
|
|
694
694
|
"""Activate/select the file(s) contained in the border
|
|
695
695
|
|
|
696
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
696
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
697
697
|
:type execution_context: int | str | None
|
|
698
698
|
:type undo: bool | None
|
|
699
699
|
:param xmin: X Min
|
|
@@ -722,7 +722,7 @@ def select_box(
|
|
|
722
722
|
...
|
|
723
723
|
|
|
724
724
|
def select_walk(
|
|
725
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
725
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
726
726
|
execution_context: int | str | None = None,
|
|
727
727
|
undo: bool | None = None,
|
|
728
728
|
*,
|
|
@@ -732,7 +732,7 @@ def select_walk(
|
|
|
732
732
|
):
|
|
733
733
|
"""Select/Deselect files by walking through them
|
|
734
734
|
|
|
735
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
735
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
736
736
|
:type execution_context: int | str | None
|
|
737
737
|
:type undo: bool | None
|
|
738
738
|
:param direction: Walk Direction, Select/Deselect element in this direction
|
|
@@ -746,13 +746,13 @@ def select_walk(
|
|
|
746
746
|
...
|
|
747
747
|
|
|
748
748
|
def smoothscroll(
|
|
749
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
749
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
750
750
|
execution_context: int | str | None = None,
|
|
751
751
|
undo: bool | None = None,
|
|
752
752
|
):
|
|
753
753
|
"""Smooth scroll to make editable file visible
|
|
754
754
|
|
|
755
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
755
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
756
756
|
:type execution_context: int | str | None
|
|
757
757
|
:type undo: bool | None
|
|
758
758
|
"""
|
|
@@ -760,13 +760,13 @@ def smoothscroll(
|
|
|
760
760
|
...
|
|
761
761
|
|
|
762
762
|
def sort_column_ui_context(
|
|
763
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
763
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
764
764
|
execution_context: int | str | None = None,
|
|
765
765
|
undo: bool | None = None,
|
|
766
766
|
):
|
|
767
767
|
"""Change sorting to use column under cursor
|
|
768
768
|
|
|
769
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
769
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
770
770
|
:type execution_context: int | str | None
|
|
771
771
|
:type undo: bool | None
|
|
772
772
|
"""
|
|
@@ -774,13 +774,13 @@ def sort_column_ui_context(
|
|
|
774
774
|
...
|
|
775
775
|
|
|
776
776
|
def start_filter(
|
|
777
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
777
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
778
778
|
execution_context: int | str | None = None,
|
|
779
779
|
undo: bool | None = None,
|
|
780
780
|
):
|
|
781
781
|
"""Start entering filter text
|
|
782
782
|
|
|
783
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
783
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
784
784
|
:type execution_context: int | str | None
|
|
785
785
|
:type undo: bool | None
|
|
786
786
|
"""
|
|
@@ -788,7 +788,7 @@ def start_filter(
|
|
|
788
788
|
...
|
|
789
789
|
|
|
790
790
|
def unpack_all(
|
|
791
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
791
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
792
792
|
execution_context: int | str | None = None,
|
|
793
793
|
undo: bool | None = None,
|
|
794
794
|
*,
|
|
@@ -799,7 +799,7 @@ def unpack_all(
|
|
|
799
799
|
):
|
|
800
800
|
"""Unpack all files packed into this .blend to external ones
|
|
801
801
|
|
|
802
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
802
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
803
803
|
:type execution_context: int | str | None
|
|
804
804
|
:type undo: bool | None
|
|
805
805
|
:param method: Method, How to unpack
|
|
@@ -809,7 +809,7 @@ def unpack_all(
|
|
|
809
809
|
...
|
|
810
810
|
|
|
811
811
|
def unpack_item(
|
|
812
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
812
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
813
813
|
execution_context: int | str | None = None,
|
|
814
814
|
undo: bool | None = None,
|
|
815
815
|
*,
|
|
@@ -820,7 +820,7 @@ def unpack_item(
|
|
|
820
820
|
):
|
|
821
821
|
"""Unpack this file to an external file
|
|
822
822
|
|
|
823
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
823
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
824
824
|
:type execution_context: int | str | None
|
|
825
825
|
:type undo: bool | None
|
|
826
826
|
:param method: Method, How to unpack
|
|
@@ -834,13 +834,13 @@ def unpack_item(
|
|
|
834
834
|
...
|
|
835
835
|
|
|
836
836
|
def unpack_libraries(
|
|
837
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
837
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
838
838
|
execution_context: int | str | None = None,
|
|
839
839
|
undo: bool | None = None,
|
|
840
840
|
):
|
|
841
841
|
"""Restore all packed linked data-blocks to their original locations
|
|
842
842
|
|
|
843
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
843
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
844
844
|
:type execution_context: int | str | None
|
|
845
845
|
:type undo: bool | None
|
|
846
846
|
"""
|
|
@@ -848,13 +848,13 @@ def unpack_libraries(
|
|
|
848
848
|
...
|
|
849
849
|
|
|
850
850
|
def view_selected(
|
|
851
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
851
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
852
852
|
execution_context: int | str | None = None,
|
|
853
853
|
undo: bool | None = None,
|
|
854
854
|
):
|
|
855
855
|
"""Scroll the selected files into view
|
|
856
856
|
|
|
857
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
857
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
858
858
|
:type execution_context: int | str | None
|
|
859
859
|
:type undo: bool | None
|
|
860
860
|
"""
|