fake-bpy-module 20240927__py3-none-any.whl → 20240929__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
- bl_ui/space_dopesheet/__init__.pyi +25 -0
- bl_ui/space_view3d/__init__.pyi +36 -0
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +144 -120
- 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 +220 -200
- 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 +449 -226
- bpy/typing/__init__.pyi +1 -0
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/RECORD +87 -87
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/top_level.txt +0 -0
bpy/ops/extensions/__init__.pyi
CHANGED
|
@@ -4,43 +4,43 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def dummy_progress(
|
|
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
|
"""Undocumented, consider contributing.
|
|
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 package_disable(
|
|
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
|
"""Turn off this extension
|
|
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 package_enable_not_installed(
|
|
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
|
"""Turn on this extension
|
|
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 package_install(
|
|
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
|
*,
|
|
@@ -53,7 +53,7 @@ def package_install(
|
|
|
53
53
|
):
|
|
54
54
|
"""Download and install the extension
|
|
55
55
|
|
|
56
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
56
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
57
57
|
:type execution_context: int | str | None
|
|
58
58
|
:type undo: bool | None
|
|
59
59
|
:param repo_directory: Repo Directory
|
|
@@ -71,7 +71,7 @@ def package_install(
|
|
|
71
71
|
"""
|
|
72
72
|
|
|
73
73
|
def package_install_files(
|
|
74
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
74
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
75
75
|
execution_context: int | str | None = None,
|
|
76
76
|
undo: bool | None = None,
|
|
77
77
|
*,
|
|
@@ -88,7 +88,7 @@ def package_install_files(
|
|
|
88
88
|
):
|
|
89
89
|
"""Install extensions from files into a locally managed repository
|
|
90
90
|
|
|
91
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
91
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
92
92
|
:type execution_context: int | str | None
|
|
93
93
|
:type undo: bool | None
|
|
94
94
|
:param filter_glob: filter_glob
|
|
@@ -112,7 +112,7 @@ def package_install_files(
|
|
|
112
112
|
"""
|
|
113
113
|
|
|
114
114
|
def package_install_marked(
|
|
115
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
115
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
116
116
|
execution_context: int | str | None = None,
|
|
117
117
|
undo: bool | None = None,
|
|
118
118
|
*,
|
|
@@ -120,7 +120,7 @@ def package_install_marked(
|
|
|
120
120
|
):
|
|
121
121
|
"""Undocumented, consider contributing.
|
|
122
122
|
|
|
123
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
123
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
124
124
|
:type execution_context: int | str | None
|
|
125
125
|
:type undo: bool | None
|
|
126
126
|
:param enable_on_install: Enable on Install, Enable after installing
|
|
@@ -128,7 +128,7 @@ def package_install_marked(
|
|
|
128
128
|
"""
|
|
129
129
|
|
|
130
130
|
def package_mark_clear(
|
|
131
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
131
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
132
132
|
execution_context: int | str | None = None,
|
|
133
133
|
undo: bool | None = None,
|
|
134
134
|
*,
|
|
@@ -137,7 +137,7 @@ def package_mark_clear(
|
|
|
137
137
|
):
|
|
138
138
|
"""Undocumented, consider contributing.
|
|
139
139
|
|
|
140
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
140
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
141
141
|
:type execution_context: int | str | None
|
|
142
142
|
:type undo: bool | None
|
|
143
143
|
:param pkg_id: Package ID
|
|
@@ -147,19 +147,19 @@ def package_mark_clear(
|
|
|
147
147
|
"""
|
|
148
148
|
|
|
149
149
|
def package_mark_clear_all(
|
|
150
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
150
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
151
151
|
execution_context: int | str | None = None,
|
|
152
152
|
undo: bool | None = None,
|
|
153
153
|
):
|
|
154
154
|
"""Undocumented, consider contributing.
|
|
155
155
|
|
|
156
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
156
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
157
157
|
:type execution_context: int | str | None
|
|
158
158
|
:type undo: bool | None
|
|
159
159
|
"""
|
|
160
160
|
|
|
161
161
|
def package_mark_set(
|
|
162
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
162
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
163
163
|
execution_context: int | str | None = None,
|
|
164
164
|
undo: bool | None = None,
|
|
165
165
|
*,
|
|
@@ -168,7 +168,7 @@ def package_mark_set(
|
|
|
168
168
|
):
|
|
169
169
|
"""Undocumented, consider contributing.
|
|
170
170
|
|
|
171
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
171
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
172
172
|
:type execution_context: int | str | None
|
|
173
173
|
:type undo: bool | None
|
|
174
174
|
:param pkg_id: Package ID
|
|
@@ -178,31 +178,31 @@ def package_mark_set(
|
|
|
178
178
|
"""
|
|
179
179
|
|
|
180
180
|
def package_mark_set_all(
|
|
181
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
181
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
182
182
|
execution_context: int | str | None = None,
|
|
183
183
|
undo: bool | None = None,
|
|
184
184
|
):
|
|
185
185
|
"""Undocumented, consider contributing.
|
|
186
186
|
|
|
187
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
187
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
188
188
|
:type execution_context: int | str | None
|
|
189
189
|
:type undo: bool | None
|
|
190
190
|
"""
|
|
191
191
|
|
|
192
192
|
def package_obsolete_marked(
|
|
193
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
193
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
194
194
|
execution_context: int | str | None = None,
|
|
195
195
|
undo: bool | None = None,
|
|
196
196
|
):
|
|
197
197
|
"""Zeroes package versions, useful for development - to test upgrading
|
|
198
198
|
|
|
199
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
199
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
200
200
|
:type execution_context: int | str | None
|
|
201
201
|
:type undo: bool | None
|
|
202
202
|
"""
|
|
203
203
|
|
|
204
204
|
def package_show_clear(
|
|
205
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
205
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
206
206
|
execution_context: int | str | None = None,
|
|
207
207
|
undo: bool | None = None,
|
|
208
208
|
*,
|
|
@@ -211,7 +211,7 @@ def package_show_clear(
|
|
|
211
211
|
):
|
|
212
212
|
"""Undocumented, consider contributing.
|
|
213
213
|
|
|
214
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
214
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
215
215
|
:type execution_context: int | str | None
|
|
216
216
|
:type undo: bool | None
|
|
217
217
|
:param pkg_id: Package ID
|
|
@@ -221,7 +221,7 @@ def package_show_clear(
|
|
|
221
221
|
"""
|
|
222
222
|
|
|
223
223
|
def package_show_set(
|
|
224
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
224
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
225
225
|
execution_context: int | str | None = None,
|
|
226
226
|
undo: bool | None = None,
|
|
227
227
|
*,
|
|
@@ -230,7 +230,7 @@ def package_show_set(
|
|
|
230
230
|
):
|
|
231
231
|
"""Undocumented, consider contributing.
|
|
232
232
|
|
|
233
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
233
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
234
234
|
:type execution_context: int | str | None
|
|
235
235
|
:type undo: bool | None
|
|
236
236
|
:param pkg_id: Package ID
|
|
@@ -240,7 +240,7 @@ def package_show_set(
|
|
|
240
240
|
"""
|
|
241
241
|
|
|
242
242
|
def package_show_settings(
|
|
243
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
243
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
244
244
|
execution_context: int | str | None = None,
|
|
245
245
|
undo: bool | None = None,
|
|
246
246
|
*,
|
|
@@ -249,7 +249,7 @@ def package_show_settings(
|
|
|
249
249
|
):
|
|
250
250
|
"""Undocumented, consider contributing.
|
|
251
251
|
|
|
252
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
252
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
253
253
|
:type execution_context: int | str | None
|
|
254
254
|
:type undo: bool | None
|
|
255
255
|
:param pkg_id: Package ID
|
|
@@ -259,7 +259,7 @@ def package_show_settings(
|
|
|
259
259
|
"""
|
|
260
260
|
|
|
261
261
|
def package_theme_disable(
|
|
262
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
262
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
263
263
|
execution_context: int | str | None = None,
|
|
264
264
|
undo: bool | None = None,
|
|
265
265
|
*,
|
|
@@ -268,7 +268,7 @@ def package_theme_disable(
|
|
|
268
268
|
):
|
|
269
269
|
"""Turn off this theme
|
|
270
270
|
|
|
271
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
271
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
272
272
|
:type execution_context: int | str | None
|
|
273
273
|
:type undo: bool | None
|
|
274
274
|
:param pkg_id: Package ID
|
|
@@ -278,7 +278,7 @@ def package_theme_disable(
|
|
|
278
278
|
"""
|
|
279
279
|
|
|
280
280
|
def package_theme_enable(
|
|
281
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
281
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
282
282
|
execution_context: int | str | None = None,
|
|
283
283
|
undo: bool | None = None,
|
|
284
284
|
*,
|
|
@@ -287,7 +287,7 @@ def package_theme_enable(
|
|
|
287
287
|
):
|
|
288
288
|
"""Turn off this theme
|
|
289
289
|
|
|
290
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
290
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
291
291
|
:type execution_context: int | str | None
|
|
292
292
|
:type undo: bool | None
|
|
293
293
|
:param pkg_id: Package ID
|
|
@@ -297,7 +297,7 @@ def package_theme_enable(
|
|
|
297
297
|
"""
|
|
298
298
|
|
|
299
299
|
def package_uninstall(
|
|
300
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
300
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
301
301
|
execution_context: int | str | None = None,
|
|
302
302
|
undo: bool | None = None,
|
|
303
303
|
*,
|
|
@@ -307,7 +307,7 @@ def package_uninstall(
|
|
|
307
307
|
):
|
|
308
308
|
"""Disable and uninstall the extension
|
|
309
309
|
|
|
310
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
310
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
311
311
|
:type execution_context: int | str | None
|
|
312
312
|
:type undo: bool | None
|
|
313
313
|
:param repo_directory: Repo Directory
|
|
@@ -319,31 +319,31 @@ def package_uninstall(
|
|
|
319
319
|
"""
|
|
320
320
|
|
|
321
321
|
def package_uninstall_marked(
|
|
322
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
322
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
323
323
|
execution_context: int | str | None = None,
|
|
324
324
|
undo: bool | None = None,
|
|
325
325
|
):
|
|
326
326
|
"""Undocumented, consider contributing.
|
|
327
327
|
|
|
328
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
328
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
329
329
|
:type execution_context: int | str | None
|
|
330
330
|
:type undo: bool | None
|
|
331
331
|
"""
|
|
332
332
|
|
|
333
333
|
def package_uninstall_system(
|
|
334
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
334
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
335
335
|
execution_context: int | str | None = None,
|
|
336
336
|
undo: bool | None = None,
|
|
337
337
|
):
|
|
338
338
|
"""Undocumented, consider contributing.
|
|
339
339
|
|
|
340
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
340
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
341
341
|
:type execution_context: int | str | None
|
|
342
342
|
:type undo: bool | None
|
|
343
343
|
"""
|
|
344
344
|
|
|
345
345
|
def package_upgrade_all(
|
|
346
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
346
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
347
347
|
execution_context: int | str | None = None,
|
|
348
348
|
undo: bool | None = None,
|
|
349
349
|
*,
|
|
@@ -351,7 +351,7 @@ def package_upgrade_all(
|
|
|
351
351
|
):
|
|
352
352
|
"""Upgrade all the extensions to their latest version for all the remote repositories
|
|
353
353
|
|
|
354
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
354
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
355
355
|
:type execution_context: int | str | None
|
|
356
356
|
:type undo: bool | None
|
|
357
357
|
:param use_active_only: Active Only, Only sync the active repository
|
|
@@ -359,7 +359,7 @@ def package_upgrade_all(
|
|
|
359
359
|
"""
|
|
360
360
|
|
|
361
361
|
def repo_enable_from_drop(
|
|
362
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
362
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
363
363
|
execution_context: int | str | None = None,
|
|
364
364
|
undo: bool | None = None,
|
|
365
365
|
*,
|
|
@@ -367,7 +367,7 @@ def repo_enable_from_drop(
|
|
|
367
367
|
):
|
|
368
368
|
"""Undocumented, consider contributing.
|
|
369
369
|
|
|
370
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
370
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
371
371
|
:type execution_context: int | str | None
|
|
372
372
|
:type undo: bool | None
|
|
373
373
|
:param repo_index: Repo Index
|
|
@@ -375,31 +375,31 @@ def repo_enable_from_drop(
|
|
|
375
375
|
"""
|
|
376
376
|
|
|
377
377
|
def repo_lock_all(
|
|
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
|
"""Lock repositories - to test locking
|
|
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 repo_refresh_all(
|
|
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
|
"""Scan extension & legacy add-ons for changes to modules & meta-data (similar to restarting). Any issues are reported as warnings
|
|
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 repo_sync(
|
|
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
|
*,
|
|
@@ -408,7 +408,7 @@ def repo_sync(
|
|
|
408
408
|
):
|
|
409
409
|
"""Undocumented, consider contributing.
|
|
410
410
|
|
|
411
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
411
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
412
412
|
:type execution_context: int | str | None
|
|
413
413
|
:type undo: bool | None
|
|
414
414
|
:param repo_directory: Repo Directory
|
|
@@ -418,7 +418,7 @@ def repo_sync(
|
|
|
418
418
|
"""
|
|
419
419
|
|
|
420
420
|
def repo_sync_all(
|
|
421
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
421
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
422
422
|
execution_context: int | str | None = None,
|
|
423
423
|
undo: bool | None = None,
|
|
424
424
|
*,
|
|
@@ -426,7 +426,7 @@ def repo_sync_all(
|
|
|
426
426
|
):
|
|
427
427
|
"""Refresh the list of extensions for all the remote repositories
|
|
428
428
|
|
|
429
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
429
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
430
430
|
:type execution_context: int | str | None
|
|
431
431
|
:type undo: bool | None
|
|
432
432
|
:param use_active_only: Active Only, Only sync the active repository
|
|
@@ -434,103 +434,103 @@ def repo_sync_all(
|
|
|
434
434
|
"""
|
|
435
435
|
|
|
436
436
|
def repo_unlock(
|
|
437
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
437
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
438
438
|
execution_context: int | str | None = None,
|
|
439
439
|
undo: bool | None = None,
|
|
440
440
|
):
|
|
441
441
|
"""Remove the repository file-system lock
|
|
442
442
|
|
|
443
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
443
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
444
444
|
:type execution_context: int | str | None
|
|
445
445
|
:type undo: bool | None
|
|
446
446
|
"""
|
|
447
447
|
|
|
448
448
|
def repo_unlock_all(
|
|
449
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
449
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
450
450
|
execution_context: int | str | None = None,
|
|
451
451
|
undo: bool | None = None,
|
|
452
452
|
):
|
|
453
453
|
"""Unlock repositories - to test unlocking
|
|
454
454
|
|
|
455
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
455
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
456
456
|
:type execution_context: int | str | None
|
|
457
457
|
:type undo: bool | None
|
|
458
458
|
"""
|
|
459
459
|
|
|
460
460
|
def status_clear(
|
|
461
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
461
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
462
462
|
execution_context: int | str | None = None,
|
|
463
463
|
undo: bool | None = None,
|
|
464
464
|
):
|
|
465
465
|
"""Undocumented, consider contributing.
|
|
466
466
|
|
|
467
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
467
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
468
468
|
:type execution_context: int | str | None
|
|
469
469
|
:type undo: bool | None
|
|
470
470
|
"""
|
|
471
471
|
|
|
472
472
|
def status_clear_errors(
|
|
473
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
473
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
474
474
|
execution_context: int | str | None = None,
|
|
475
475
|
undo: bool | None = None,
|
|
476
476
|
):
|
|
477
477
|
"""Undocumented, consider contributing.
|
|
478
478
|
|
|
479
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
479
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
480
480
|
:type execution_context: int | str | None
|
|
481
481
|
:type undo: bool | None
|
|
482
482
|
"""
|
|
483
483
|
|
|
484
484
|
def userpref_allow_online(
|
|
485
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
485
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
486
486
|
execution_context: int | str | None = None,
|
|
487
487
|
undo: bool | None = None,
|
|
488
488
|
):
|
|
489
489
|
"""Allow internet access. Blender may access configured online extension repositories. Installed third party add-ons may access the internet for their own functionality
|
|
490
490
|
|
|
491
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
491
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
492
492
|
:type execution_context: int | str | None
|
|
493
493
|
:type undo: bool | None
|
|
494
494
|
"""
|
|
495
495
|
|
|
496
496
|
def userpref_allow_online_popup(
|
|
497
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
497
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
498
498
|
execution_context: int | str | None = None,
|
|
499
499
|
undo: bool | None = None,
|
|
500
500
|
):
|
|
501
501
|
"""Allow internet access. Blender may access configured online extension repositories. Installed third party add-ons may access the internet for their own functionality
|
|
502
502
|
|
|
503
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
503
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
504
504
|
:type execution_context: int | str | None
|
|
505
505
|
:type undo: bool | None
|
|
506
506
|
"""
|
|
507
507
|
|
|
508
508
|
def userpref_show_for_update(
|
|
509
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
509
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
510
510
|
execution_context: int | str | None = None,
|
|
511
511
|
undo: bool | None = None,
|
|
512
512
|
):
|
|
513
513
|
"""Open extensions preferences
|
|
514
514
|
|
|
515
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
515
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
516
516
|
:type execution_context: int | str | None
|
|
517
517
|
:type undo: bool | None
|
|
518
518
|
"""
|
|
519
519
|
|
|
520
520
|
def userpref_show_online(
|
|
521
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
521
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
522
522
|
execution_context: int | str | None = None,
|
|
523
523
|
undo: bool | None = None,
|
|
524
524
|
):
|
|
525
525
|
"""Show system preferences "Network" panel to allow online access
|
|
526
526
|
|
|
527
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
527
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
528
528
|
:type execution_context: int | str | None
|
|
529
529
|
:type undo: bool | None
|
|
530
530
|
"""
|
|
531
531
|
|
|
532
532
|
def userpref_tags_set(
|
|
533
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
533
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
534
534
|
execution_context: int | str | None = None,
|
|
535
535
|
undo: bool | None = None,
|
|
536
536
|
*,
|
|
@@ -539,7 +539,7 @@ def userpref_tags_set(
|
|
|
539
539
|
):
|
|
540
540
|
"""Set the value of all tags
|
|
541
541
|
|
|
542
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
542
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
543
543
|
:type execution_context: int | str | None
|
|
544
544
|
:type undo: bool | None
|
|
545
545
|
:param value: Value, Enable or disable all tags
|