fake-bpy-module 20240411__py3-none-any.whl → 20240418__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_internal/__init__.pyi +4 -0
- _bpy_internal/freedesktop/__init__.pyi +88 -0
- _bpy_internal/freedesktop/py.typed +0 -0
- _bpy_internal/py.typed +0 -0
- aud/__init__.pyi +121 -48
- bgl/__init__.pyi +2443 -1265
- bl_math/__init__.pyi +19 -3
- bl_operators/presets/__init__.pyi +7 -0
- bl_ui/node_add_menu/__init__.pyi +1 -1
- bl_ui/properties_data_lightprobe/__init__.pyi +1134 -0
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +3 -0
- bl_ui/properties_physics_fluid/__init__.pyi +3 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +17 -0
- bl_ui/space_userpref/__init__.pyi +13 -4
- bl_ui/space_view3d/__init__.pyi +190 -0
- blf/__init__.pyi +63 -13
- bmesh/__init__.pyi +13 -0
- bmesh/geometry/__init__.pyi +5 -0
- bmesh/ops/__init__.pyi +157 -68
- bmesh/types/__init__.pyi +109 -62
- bmesh/utils/__init__.pyi +11 -2
- bpy/__init__.pyi +7 -0
- bpy/app/__init__.pyi +13 -0
- bpy/app/handlers/__init__.pyi +41 -0
- bpy/app/icons/__init__.pyi +4 -2
- bpy/app/timers/__init__.pyi +38 -2
- bpy/app/translations/__init__.pyi +59 -1
- bpy/msgbus/__init__.pyi +46 -0
- bpy/ops/__init__.pyi +151 -0
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +104 -104
- 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 +18 -18
- 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 +132 -50
- 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_mesh/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +11 -8
- 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 +300 -300
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +139 -110
- bpy/ops/image/__init__.pyi +92 -92
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_mesh/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +6 -6
- 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 +327 -327
- bpy/ops/nla/__init__.pyi +80 -80
- bpy/ops/node/__init__.pyi +203 -203
- bpy/ops/object/__init__.pyi +496 -508
- bpy/ops/outliner/__init__.pyi +139 -139
- bpy/ops/paint/__init__.pyi +104 -104
- 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 +78 -78
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +77 -77
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +24 -24
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +78 -78
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +68 -62
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +170 -170
- 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 +225 -225
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +2 -2
- bpy/path/__init__.pyi +6 -0
- bpy/props/__init__.pyi +141 -29
- bpy/types/__init__.pyi +101773 -5222
- bpy/utils/__init__.pyi +18 -3
- bpy/utils/previews/__init__.pyi +15 -0
- bpy/utils/units/__init__.pyi +11 -3
- bpy_extras/__init__.pyi +19 -0
- bpy_extras/asset_utils/__init__.pyi +5 -0
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/RECORD +145 -141
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/top_level.txt +1 -0
- freestyle/__init__.pyi +18 -0
- freestyle/chainingiterators/__init__.pyi +20 -5
- freestyle/functions/__init__.pyi +151 -155
- freestyle/predicates/__init__.pyi +53 -46
- freestyle/shaders/__init__.pyi +91 -32
- freestyle/types/__init__.pyi +362 -120
- freestyle/utils/ContextFunctions/__init__.pyi +32 -7
- freestyle/utils/__init__.pyi +13 -1
- gpu/__init__.pyi +225 -0
- gpu/capabilities/__init__.pyi +37 -15
- gpu/matrix/__init__.pyi +7 -1
- gpu/platform/__init__.pyi +5 -0
- gpu/select/__init__.pyi +5 -0
- gpu/shader/__init__.pyi +77 -0
- gpu/state/__init__.pyi +15 -4
- gpu/texture/__init__.pyi +5 -0
- gpu/types/__init__.pyi +91 -33
- gpu_extras/__init__.pyi +15 -0
- gpu_extras/presets/__init__.pyi +16 -4
- imbuf/__init__.pyi +13 -0
- imbuf/types/__init__.pyi +20 -5
- mathutils/__init__.pyi +349 -227
- mathutils/bvhtree/__init__.pyi +21 -8
- mathutils/geometry/__init__.pyi +23 -9
- mathutils/interpolate/__init__.pyi +5 -0
- mathutils/kdtree/__init__.pyi +19 -5
- mathutils/noise/__init__.pyi +87 -41
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/WHEEL +0 -0
bpy/ops/file/__init__.pyi
CHANGED
|
@@ -5,13 +5,13 @@ GenericType = typing.TypeVar("GenericType")
|
|
|
5
5
|
|
|
6
6
|
def autopack_toggle(
|
|
7
7
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
8
|
-
execution_context: str = None,
|
|
8
|
+
execution_context: typing.Union[str, int] = None,
|
|
9
9
|
undo: bool = None,
|
|
10
10
|
):
|
|
11
11
|
"""Automatically pack all external files into the .blend file
|
|
12
12
|
|
|
13
13
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
14
|
-
:type execution_context: str
|
|
14
|
+
:type execution_context: typing.Union[str, int]
|
|
15
15
|
:type undo: bool
|
|
16
16
|
"""
|
|
17
17
|
|
|
@@ -19,13 +19,13 @@ def autopack_toggle(
|
|
|
19
19
|
|
|
20
20
|
def bookmark_add(
|
|
21
21
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
22
|
-
execution_context: str = None,
|
|
22
|
+
execution_context: typing.Union[str, int] = None,
|
|
23
23
|
undo: bool = None,
|
|
24
24
|
):
|
|
25
25
|
"""Add a bookmark for the selected/active directory
|
|
26
26
|
|
|
27
27
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
28
|
-
:type execution_context: str
|
|
28
|
+
:type execution_context: typing.Union[str, int]
|
|
29
29
|
:type undo: bool
|
|
30
30
|
"""
|
|
31
31
|
|
|
@@ -33,13 +33,13 @@ def bookmark_add(
|
|
|
33
33
|
|
|
34
34
|
def bookmark_cleanup(
|
|
35
35
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
36
|
-
execution_context: str = None,
|
|
36
|
+
execution_context: typing.Union[str, int] = None,
|
|
37
37
|
undo: bool = None,
|
|
38
38
|
):
|
|
39
39
|
"""Delete all invalid bookmarks
|
|
40
40
|
|
|
41
41
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
42
|
-
:type execution_context: str
|
|
42
|
+
:type execution_context: typing.Union[str, int]
|
|
43
43
|
:type undo: bool
|
|
44
44
|
"""
|
|
45
45
|
|
|
@@ -47,14 +47,14 @@ def bookmark_cleanup(
|
|
|
47
47
|
|
|
48
48
|
def bookmark_delete(
|
|
49
49
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
50
|
-
execution_context: str = None,
|
|
50
|
+
execution_context: typing.Union[str, int] = None,
|
|
51
51
|
undo: bool = None,
|
|
52
52
|
index: typing.Any = -1,
|
|
53
53
|
):
|
|
54
54
|
"""Delete selected bookmark
|
|
55
55
|
|
|
56
56
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
57
|
-
:type execution_context: str
|
|
57
|
+
:type execution_context: typing.Union[str, int]
|
|
58
58
|
:type undo: bool
|
|
59
59
|
:param index: Index
|
|
60
60
|
:type index: typing.Any
|
|
@@ -64,14 +64,14 @@ def bookmark_delete(
|
|
|
64
64
|
|
|
65
65
|
def bookmark_move(
|
|
66
66
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
67
|
-
execution_context: str = None,
|
|
67
|
+
execution_context: typing.Union[str, int] = None,
|
|
68
68
|
undo: bool = None,
|
|
69
69
|
direction: typing.Any = "TOP",
|
|
70
70
|
):
|
|
71
71
|
"""Move the active bookmark up/down in the list
|
|
72
72
|
|
|
73
73
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
74
|
-
:type execution_context: str
|
|
74
|
+
:type execution_context: typing.Union[str, int]
|
|
75
75
|
:type undo: bool
|
|
76
76
|
:param direction: Direction, Direction to move the active bookmark towards
|
|
77
77
|
|
|
@@ -93,13 +93,13 @@ def bookmark_move(
|
|
|
93
93
|
|
|
94
94
|
def cancel(
|
|
95
95
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
96
|
-
execution_context: str = None,
|
|
96
|
+
execution_context: typing.Union[str, int] = None,
|
|
97
97
|
undo: bool = None,
|
|
98
98
|
):
|
|
99
99
|
"""Cancel loading of selected file
|
|
100
100
|
|
|
101
101
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
102
|
-
:type execution_context: str
|
|
102
|
+
:type execution_context: typing.Union[str, int]
|
|
103
103
|
:type undo: bool
|
|
104
104
|
"""
|
|
105
105
|
|
|
@@ -107,13 +107,13 @@ def cancel(
|
|
|
107
107
|
|
|
108
108
|
def delete(
|
|
109
109
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
110
|
-
execution_context: str = None,
|
|
110
|
+
execution_context: typing.Union[str, int] = None,
|
|
111
111
|
undo: bool = None,
|
|
112
112
|
):
|
|
113
113
|
"""Move selected files to the trash or recycle bin
|
|
114
114
|
|
|
115
115
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
116
|
-
:type execution_context: str
|
|
116
|
+
:type execution_context: typing.Union[str, int]
|
|
117
117
|
:type undo: bool
|
|
118
118
|
"""
|
|
119
119
|
|
|
@@ -121,7 +121,7 @@ def delete(
|
|
|
121
121
|
|
|
122
122
|
def directory_new(
|
|
123
123
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
124
|
-
execution_context: str = None,
|
|
124
|
+
execution_context: typing.Union[str, int] = None,
|
|
125
125
|
undo: bool = None,
|
|
126
126
|
directory: typing.Union[str, typing.Any] = "",
|
|
127
127
|
open: typing.Union[bool, typing.Any] = False,
|
|
@@ -129,7 +129,7 @@ def directory_new(
|
|
|
129
129
|
"""Create a new directory
|
|
130
130
|
|
|
131
131
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
132
|
-
:type execution_context: str
|
|
132
|
+
:type execution_context: typing.Union[str, int]
|
|
133
133
|
:type undo: bool
|
|
134
134
|
:param directory: Directory, Name of new directory
|
|
135
135
|
:type directory: typing.Union[str, typing.Any]
|
|
@@ -141,13 +141,13 @@ def directory_new(
|
|
|
141
141
|
|
|
142
142
|
def edit_directory_path(
|
|
143
143
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
144
|
-
execution_context: str = None,
|
|
144
|
+
execution_context: typing.Union[str, int] = None,
|
|
145
145
|
undo: bool = None,
|
|
146
146
|
):
|
|
147
147
|
"""Start editing directory field
|
|
148
148
|
|
|
149
149
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
150
|
-
:type execution_context: str
|
|
150
|
+
:type execution_context: typing.Union[str, int]
|
|
151
151
|
:type undo: bool
|
|
152
152
|
"""
|
|
153
153
|
|
|
@@ -155,13 +155,13 @@ def edit_directory_path(
|
|
|
155
155
|
|
|
156
156
|
def execute(
|
|
157
157
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
158
|
-
execution_context: str = None,
|
|
158
|
+
execution_context: typing.Union[str, int] = None,
|
|
159
159
|
undo: bool = None,
|
|
160
160
|
):
|
|
161
161
|
"""Execute selected file
|
|
162
162
|
|
|
163
163
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
164
|
-
:type execution_context: str
|
|
164
|
+
:type execution_context: typing.Union[str, int]
|
|
165
165
|
:type undo: bool
|
|
166
166
|
"""
|
|
167
167
|
|
|
@@ -169,7 +169,7 @@ def execute(
|
|
|
169
169
|
|
|
170
170
|
def external_operation(
|
|
171
171
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
172
|
-
execution_context: str = None,
|
|
172
|
+
execution_context: typing.Union[str, int] = None,
|
|
173
173
|
undo: bool = None,
|
|
174
174
|
filepath: typing.Union[str, typing.Any] = "",
|
|
175
175
|
operation: typing.Any = "OPEN",
|
|
@@ -177,7 +177,7 @@ def external_operation(
|
|
|
177
177
|
"""Perform external operation on a file or folder
|
|
178
178
|
|
|
179
179
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
180
|
-
:type execution_context: str
|
|
180
|
+
:type execution_context: typing.Union[str, int]
|
|
181
181
|
:type undo: bool
|
|
182
182
|
:param filepath: File or folder path
|
|
183
183
|
:type filepath: typing.Union[str, typing.Any]
|
|
@@ -234,14 +234,14 @@ def external_operation(
|
|
|
234
234
|
|
|
235
235
|
def filenum(
|
|
236
236
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
237
|
-
execution_context: str = None,
|
|
237
|
+
execution_context: typing.Union[str, int] = None,
|
|
238
238
|
undo: bool = None,
|
|
239
239
|
increment: typing.Any = 1,
|
|
240
240
|
):
|
|
241
241
|
"""Increment number in filename
|
|
242
242
|
|
|
243
243
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
244
|
-
:type execution_context: str
|
|
244
|
+
:type execution_context: typing.Union[str, int]
|
|
245
245
|
:type undo: bool
|
|
246
246
|
:param increment: Increment
|
|
247
247
|
:type increment: typing.Any
|
|
@@ -251,14 +251,14 @@ def filenum(
|
|
|
251
251
|
|
|
252
252
|
def filepath_drop(
|
|
253
253
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
254
|
-
execution_context: str = None,
|
|
254
|
+
execution_context: typing.Union[str, int] = None,
|
|
255
255
|
undo: bool = None,
|
|
256
256
|
filepath: typing.Union[str, typing.Any] = "Path",
|
|
257
257
|
):
|
|
258
258
|
"""Undocumented, consider contributing.
|
|
259
259
|
|
|
260
260
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
261
|
-
:type execution_context: str
|
|
261
|
+
:type execution_context: typing.Union[str, int]
|
|
262
262
|
:type undo: bool
|
|
263
263
|
:type filepath: typing.Union[str, typing.Any]
|
|
264
264
|
"""
|
|
@@ -267,7 +267,7 @@ def filepath_drop(
|
|
|
267
267
|
|
|
268
268
|
def find_missing_files(
|
|
269
269
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
270
|
-
execution_context: str = None,
|
|
270
|
+
execution_context: typing.Union[str, int] = None,
|
|
271
271
|
undo: bool = None,
|
|
272
272
|
find_all: typing.Union[bool, typing.Any] = False,
|
|
273
273
|
directory: typing.Union[str, typing.Any] = "",
|
|
@@ -297,7 +297,7 @@ def find_missing_files(
|
|
|
297
297
|
"""Try to find missing external files
|
|
298
298
|
|
|
299
299
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
300
|
-
:type execution_context: str
|
|
300
|
+
:type execution_context: typing.Union[str, int]
|
|
301
301
|
:type undo: bool
|
|
302
302
|
:param find_all: Find All, Find all files in the search path (not just missing)
|
|
303
303
|
:type find_all: typing.Union[bool, typing.Any]
|
|
@@ -365,13 +365,13 @@ def find_missing_files(
|
|
|
365
365
|
|
|
366
366
|
def hidedot(
|
|
367
367
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
368
|
-
execution_context: str = None,
|
|
368
|
+
execution_context: typing.Union[str, int] = None,
|
|
369
369
|
undo: bool = None,
|
|
370
370
|
):
|
|
371
371
|
"""Toggle hide hidden dot files
|
|
372
372
|
|
|
373
373
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
374
|
-
:type execution_context: str
|
|
374
|
+
:type execution_context: typing.Union[str, int]
|
|
375
375
|
:type undo: bool
|
|
376
376
|
"""
|
|
377
377
|
|
|
@@ -379,13 +379,13 @@ def hidedot(
|
|
|
379
379
|
|
|
380
380
|
def highlight(
|
|
381
381
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
382
|
-
execution_context: str = None,
|
|
382
|
+
execution_context: typing.Union[str, int] = None,
|
|
383
383
|
undo: bool = None,
|
|
384
384
|
):
|
|
385
385
|
"""Highlight selected file(s)
|
|
386
386
|
|
|
387
387
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
388
|
-
:type execution_context: str
|
|
388
|
+
:type execution_context: typing.Union[str, int]
|
|
389
389
|
:type undo: bool
|
|
390
390
|
"""
|
|
391
391
|
|
|
@@ -393,13 +393,13 @@ def highlight(
|
|
|
393
393
|
|
|
394
394
|
def make_paths_absolute(
|
|
395
395
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
396
|
-
execution_context: str = None,
|
|
396
|
+
execution_context: typing.Union[str, int] = None,
|
|
397
397
|
undo: bool = None,
|
|
398
398
|
):
|
|
399
399
|
"""Make all paths to external files absolute
|
|
400
400
|
|
|
401
401
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
402
|
-
:type execution_context: str
|
|
402
|
+
:type execution_context: typing.Union[str, int]
|
|
403
403
|
:type undo: bool
|
|
404
404
|
"""
|
|
405
405
|
|
|
@@ -407,13 +407,13 @@ def make_paths_absolute(
|
|
|
407
407
|
|
|
408
408
|
def make_paths_relative(
|
|
409
409
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
410
|
-
execution_context: str = None,
|
|
410
|
+
execution_context: typing.Union[str, int] = None,
|
|
411
411
|
undo: bool = None,
|
|
412
412
|
):
|
|
413
413
|
"""Make all paths to external files relative to current .blend
|
|
414
414
|
|
|
415
415
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
416
|
-
:type execution_context: str
|
|
416
|
+
:type execution_context: typing.Union[str, int]
|
|
417
417
|
:type undo: bool
|
|
418
418
|
"""
|
|
419
419
|
|
|
@@ -421,13 +421,13 @@ def make_paths_relative(
|
|
|
421
421
|
|
|
422
422
|
def mouse_execute(
|
|
423
423
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
424
|
-
execution_context: str = None,
|
|
424
|
+
execution_context: typing.Union[str, int] = None,
|
|
425
425
|
undo: bool = None,
|
|
426
426
|
):
|
|
427
427
|
"""Perform the current execute action for the file under the cursor (e.g. open the file)
|
|
428
428
|
|
|
429
429
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
430
|
-
:type execution_context: str
|
|
430
|
+
:type execution_context: typing.Union[str, int]
|
|
431
431
|
:type undo: bool
|
|
432
432
|
"""
|
|
433
433
|
|
|
@@ -435,13 +435,13 @@ def mouse_execute(
|
|
|
435
435
|
|
|
436
436
|
def next(
|
|
437
437
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
438
|
-
execution_context: str = None,
|
|
438
|
+
execution_context: typing.Union[str, int] = None,
|
|
439
439
|
undo: bool = None,
|
|
440
440
|
):
|
|
441
441
|
"""Move to next folder
|
|
442
442
|
|
|
443
443
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
444
|
-
:type execution_context: str
|
|
444
|
+
:type execution_context: typing.Union[str, int]
|
|
445
445
|
:type undo: bool
|
|
446
446
|
"""
|
|
447
447
|
|
|
@@ -449,13 +449,13 @@ def next(
|
|
|
449
449
|
|
|
450
450
|
def pack_all(
|
|
451
451
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
452
|
-
execution_context: str = None,
|
|
452
|
+
execution_context: typing.Union[str, int] = None,
|
|
453
453
|
undo: bool = None,
|
|
454
454
|
):
|
|
455
455
|
"""Pack all used external files into this .blend
|
|
456
456
|
|
|
457
457
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
458
|
-
:type execution_context: str
|
|
458
|
+
:type execution_context: typing.Union[str, int]
|
|
459
459
|
:type undo: bool
|
|
460
460
|
"""
|
|
461
461
|
|
|
@@ -463,13 +463,13 @@ def pack_all(
|
|
|
463
463
|
|
|
464
464
|
def pack_libraries(
|
|
465
465
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
466
|
-
execution_context: str = None,
|
|
466
|
+
execution_context: typing.Union[str, int] = None,
|
|
467
467
|
undo: bool = None,
|
|
468
468
|
):
|
|
469
469
|
"""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
|
|
470
470
|
|
|
471
471
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
472
|
-
:type execution_context: str
|
|
472
|
+
:type execution_context: typing.Union[str, int]
|
|
473
473
|
:type undo: bool
|
|
474
474
|
"""
|
|
475
475
|
|
|
@@ -477,13 +477,13 @@ def pack_libraries(
|
|
|
477
477
|
|
|
478
478
|
def parent(
|
|
479
479
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
480
|
-
execution_context: str = None,
|
|
480
|
+
execution_context: typing.Union[str, int] = None,
|
|
481
481
|
undo: bool = None,
|
|
482
482
|
):
|
|
483
483
|
"""Move to parent directory
|
|
484
484
|
|
|
485
485
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
486
|
-
:type execution_context: str
|
|
486
|
+
:type execution_context: typing.Union[str, int]
|
|
487
487
|
:type undo: bool
|
|
488
488
|
"""
|
|
489
489
|
|
|
@@ -491,13 +491,13 @@ def parent(
|
|
|
491
491
|
|
|
492
492
|
def previous(
|
|
493
493
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
494
|
-
execution_context: str = None,
|
|
494
|
+
execution_context: typing.Union[str, int] = None,
|
|
495
495
|
undo: bool = None,
|
|
496
496
|
):
|
|
497
497
|
"""Move to previous folder
|
|
498
498
|
|
|
499
499
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
500
|
-
:type execution_context: str
|
|
500
|
+
:type execution_context: typing.Union[str, int]
|
|
501
501
|
:type undo: bool
|
|
502
502
|
"""
|
|
503
503
|
|
|
@@ -505,13 +505,13 @@ def previous(
|
|
|
505
505
|
|
|
506
506
|
def refresh(
|
|
507
507
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
508
|
-
execution_context: str = None,
|
|
508
|
+
execution_context: typing.Union[str, int] = None,
|
|
509
509
|
undo: bool = None,
|
|
510
510
|
):
|
|
511
511
|
"""Refresh the file list
|
|
512
512
|
|
|
513
513
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
514
|
-
:type execution_context: str
|
|
514
|
+
:type execution_context: typing.Union[str, int]
|
|
515
515
|
:type undo: bool
|
|
516
516
|
"""
|
|
517
517
|
|
|
@@ -519,13 +519,13 @@ def refresh(
|
|
|
519
519
|
|
|
520
520
|
def rename(
|
|
521
521
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
522
|
-
execution_context: str = None,
|
|
522
|
+
execution_context: typing.Union[str, int] = None,
|
|
523
523
|
undo: bool = None,
|
|
524
524
|
):
|
|
525
525
|
"""Rename file or file directory
|
|
526
526
|
|
|
527
527
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
528
|
-
:type execution_context: str
|
|
528
|
+
:type execution_context: typing.Union[str, int]
|
|
529
529
|
:type undo: bool
|
|
530
530
|
"""
|
|
531
531
|
|
|
@@ -533,13 +533,13 @@ def rename(
|
|
|
533
533
|
|
|
534
534
|
def report_missing_files(
|
|
535
535
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
536
|
-
execution_context: str = None,
|
|
536
|
+
execution_context: typing.Union[str, int] = None,
|
|
537
537
|
undo: bool = None,
|
|
538
538
|
):
|
|
539
539
|
"""Report all missing external files
|
|
540
540
|
|
|
541
541
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
542
|
-
:type execution_context: str
|
|
542
|
+
:type execution_context: typing.Union[str, int]
|
|
543
543
|
:type undo: bool
|
|
544
544
|
"""
|
|
545
545
|
|
|
@@ -547,13 +547,13 @@ def report_missing_files(
|
|
|
547
547
|
|
|
548
548
|
def reset_recent(
|
|
549
549
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
550
|
-
execution_context: str = None,
|
|
550
|
+
execution_context: typing.Union[str, int] = None,
|
|
551
551
|
undo: bool = None,
|
|
552
552
|
):
|
|
553
553
|
"""Reset recent files
|
|
554
554
|
|
|
555
555
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
556
|
-
:type execution_context: str
|
|
556
|
+
:type execution_context: typing.Union[str, int]
|
|
557
557
|
:type undo: bool
|
|
558
558
|
"""
|
|
559
559
|
|
|
@@ -561,7 +561,7 @@ def reset_recent(
|
|
|
561
561
|
|
|
562
562
|
def select(
|
|
563
563
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
564
|
-
execution_context: str = None,
|
|
564
|
+
execution_context: typing.Union[str, int] = None,
|
|
565
565
|
undo: bool = None,
|
|
566
566
|
wait_to_deselect_others: typing.Union[bool, typing.Any] = False,
|
|
567
567
|
mouse_x: typing.Any = 0,
|
|
@@ -576,7 +576,7 @@ def select(
|
|
|
576
576
|
"""Handle mouse clicks to select and activate items
|
|
577
577
|
|
|
578
578
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
579
|
-
:type execution_context: str
|
|
579
|
+
:type execution_context: typing.Union[str, int]
|
|
580
580
|
:type undo: bool
|
|
581
581
|
:param wait_to_deselect_others: Wait to Deselect Others
|
|
582
582
|
:type wait_to_deselect_others: typing.Union[bool, typing.Any]
|
|
@@ -602,14 +602,14 @@ def select(
|
|
|
602
602
|
|
|
603
603
|
def select_all(
|
|
604
604
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
605
|
-
execution_context: str = None,
|
|
605
|
+
execution_context: typing.Union[str, int] = None,
|
|
606
606
|
undo: bool = None,
|
|
607
607
|
action: typing.Any = "TOGGLE",
|
|
608
608
|
):
|
|
609
609
|
"""Select or deselect all files
|
|
610
610
|
|
|
611
611
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
612
|
-
:type execution_context: str
|
|
612
|
+
:type execution_context: typing.Union[str, int]
|
|
613
613
|
:type undo: bool
|
|
614
614
|
:param action: Action, Selection action to execute
|
|
615
615
|
|
|
@@ -631,14 +631,14 @@ def select_all(
|
|
|
631
631
|
|
|
632
632
|
def select_bookmark(
|
|
633
633
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
634
|
-
execution_context: str = None,
|
|
634
|
+
execution_context: typing.Union[str, int] = None,
|
|
635
635
|
undo: bool = None,
|
|
636
636
|
dir: typing.Union[str, typing.Any] = "",
|
|
637
637
|
):
|
|
638
638
|
"""Select a bookmarked directory
|
|
639
639
|
|
|
640
640
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
641
|
-
:type execution_context: str
|
|
641
|
+
:type execution_context: typing.Union[str, int]
|
|
642
642
|
:type undo: bool
|
|
643
643
|
:param dir: Directory
|
|
644
644
|
:type dir: typing.Union[str, typing.Any]
|
|
@@ -648,7 +648,7 @@ def select_bookmark(
|
|
|
648
648
|
|
|
649
649
|
def select_box(
|
|
650
650
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
651
|
-
execution_context: str = None,
|
|
651
|
+
execution_context: typing.Union[str, int] = None,
|
|
652
652
|
undo: bool = None,
|
|
653
653
|
xmin: typing.Any = 0,
|
|
654
654
|
xmax: typing.Any = 0,
|
|
@@ -660,7 +660,7 @@ def select_box(
|
|
|
660
660
|
"""Activate/select the file(s) contained in the border
|
|
661
661
|
|
|
662
662
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
663
|
-
:type execution_context: str
|
|
663
|
+
:type execution_context: typing.Union[str, int]
|
|
664
664
|
:type undo: bool
|
|
665
665
|
:param xmin: X Min
|
|
666
666
|
:type xmin: typing.Any
|
|
@@ -689,7 +689,7 @@ def select_box(
|
|
|
689
689
|
|
|
690
690
|
def select_walk(
|
|
691
691
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
692
|
-
execution_context: str = None,
|
|
692
|
+
execution_context: typing.Union[str, int] = None,
|
|
693
693
|
undo: bool = None,
|
|
694
694
|
direction: typing.Any = "UP",
|
|
695
695
|
extend: typing.Union[bool, typing.Any] = False,
|
|
@@ -698,7 +698,7 @@ def select_walk(
|
|
|
698
698
|
"""Select/Deselect files by walking through them
|
|
699
699
|
|
|
700
700
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
701
|
-
:type execution_context: str
|
|
701
|
+
:type execution_context: typing.Union[str, int]
|
|
702
702
|
:type undo: bool
|
|
703
703
|
:param direction: Walk Direction, Select/Deselect element in this direction
|
|
704
704
|
:type direction: typing.Any
|
|
@@ -712,13 +712,13 @@ def select_walk(
|
|
|
712
712
|
|
|
713
713
|
def smoothscroll(
|
|
714
714
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
715
|
-
execution_context: str = None,
|
|
715
|
+
execution_context: typing.Union[str, int] = None,
|
|
716
716
|
undo: bool = None,
|
|
717
717
|
):
|
|
718
718
|
"""Smooth scroll to make editable file visible
|
|
719
719
|
|
|
720
720
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
721
|
-
:type execution_context: str
|
|
721
|
+
:type execution_context: typing.Union[str, int]
|
|
722
722
|
:type undo: bool
|
|
723
723
|
"""
|
|
724
724
|
|
|
@@ -726,13 +726,13 @@ def smoothscroll(
|
|
|
726
726
|
|
|
727
727
|
def sort_column_ui_context(
|
|
728
728
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
729
|
-
execution_context: str = None,
|
|
729
|
+
execution_context: typing.Union[str, int] = None,
|
|
730
730
|
undo: bool = None,
|
|
731
731
|
):
|
|
732
732
|
"""Change sorting to use column under cursor
|
|
733
733
|
|
|
734
734
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
735
|
-
:type execution_context: str
|
|
735
|
+
:type execution_context: typing.Union[str, int]
|
|
736
736
|
:type undo: bool
|
|
737
737
|
"""
|
|
738
738
|
|
|
@@ -740,13 +740,13 @@ def sort_column_ui_context(
|
|
|
740
740
|
|
|
741
741
|
def start_filter(
|
|
742
742
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
743
|
-
execution_context: str = None,
|
|
743
|
+
execution_context: typing.Union[str, int] = None,
|
|
744
744
|
undo: bool = None,
|
|
745
745
|
):
|
|
746
746
|
"""Start entering filter text
|
|
747
747
|
|
|
748
748
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
749
|
-
:type execution_context: str
|
|
749
|
+
:type execution_context: typing.Union[str, int]
|
|
750
750
|
:type undo: bool
|
|
751
751
|
"""
|
|
752
752
|
|
|
@@ -754,14 +754,14 @@ def start_filter(
|
|
|
754
754
|
|
|
755
755
|
def unpack_all(
|
|
756
756
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
757
|
-
execution_context: str = None,
|
|
757
|
+
execution_context: typing.Union[str, int] = None,
|
|
758
758
|
undo: bool = None,
|
|
759
759
|
method: typing.Any = "USE_LOCAL",
|
|
760
760
|
):
|
|
761
761
|
"""Unpack all files packed into this .blend to external ones
|
|
762
762
|
|
|
763
763
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
764
|
-
:type execution_context: str
|
|
764
|
+
:type execution_context: typing.Union[str, int]
|
|
765
765
|
:type undo: bool
|
|
766
766
|
:param method: Method, How to unpack
|
|
767
767
|
:type method: typing.Any
|
|
@@ -771,7 +771,7 @@ def unpack_all(
|
|
|
771
771
|
|
|
772
772
|
def unpack_item(
|
|
773
773
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
774
|
-
execution_context: str = None,
|
|
774
|
+
execution_context: typing.Union[str, int] = None,
|
|
775
775
|
undo: bool = None,
|
|
776
776
|
method: typing.Any = "USE_LOCAL",
|
|
777
777
|
id_name: typing.Union[str, typing.Any] = "",
|
|
@@ -780,7 +780,7 @@ def unpack_item(
|
|
|
780
780
|
"""Unpack this file to an external file
|
|
781
781
|
|
|
782
782
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
783
|
-
:type execution_context: str
|
|
783
|
+
:type execution_context: typing.Union[str, int]
|
|
784
784
|
:type undo: bool
|
|
785
785
|
:param method: Method, How to unpack
|
|
786
786
|
:type method: typing.Any
|
|
@@ -794,13 +794,13 @@ def unpack_item(
|
|
|
794
794
|
|
|
795
795
|
def unpack_libraries(
|
|
796
796
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
797
|
-
execution_context: str = None,
|
|
797
|
+
execution_context: typing.Union[str, int] = None,
|
|
798
798
|
undo: bool = None,
|
|
799
799
|
):
|
|
800
800
|
"""Restore all packed linked data-blocks to their original locations
|
|
801
801
|
|
|
802
802
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
803
|
-
:type execution_context: str
|
|
803
|
+
:type execution_context: typing.Union[str, int]
|
|
804
804
|
:type undo: bool
|
|
805
805
|
"""
|
|
806
806
|
|
|
@@ -808,13 +808,13 @@ def unpack_libraries(
|
|
|
808
808
|
|
|
809
809
|
def view_selected(
|
|
810
810
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
811
|
-
execution_context: str = None,
|
|
811
|
+
execution_context: typing.Union[str, int] = None,
|
|
812
812
|
undo: bool = None,
|
|
813
813
|
):
|
|
814
814
|
"""Scroll the selected files into view
|
|
815
815
|
|
|
816
816
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
817
|
-
:type execution_context: str
|
|
817
|
+
:type execution_context: typing.Union[str, int]
|
|
818
818
|
:type undo: bool
|
|
819
819
|
"""
|
|
820
820
|
|