fake-bpy-module 20240514__py3-none-any.whl → 20240516__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/properties_render/__init__.pyi +183 -0
- bl_ui/properties_world/__init__.pyi +499 -2
- bl_ui/space_toolsystem_toolbar/__init__.pyi +3 -0
- bl_ui/space_userpref/__init__.pyi +2 -2
- bl_ui/space_view3d/__init__.pyi +329 -2
- bl_ui/space_view3d_toolbar/__init__.pyi +170 -0
- bmesh/utils/__init__.pyi +2 -2
- bpy/app/__init__.pyi +2 -2
- bpy/ops/__init__.pyi +1 -2
- bpy/ops/bl_pkg/__init__.pyi +511 -0
- bpy/ops/export_scene/__init__.pyi +2 -81
- bpy/ops/grease_pencil/__init__.pyi +41 -0
- bpy/ops/import_scene/__init__.pyi +0 -28
- bpy/ops/nla/__init__.pyi +2 -2
- bpy/ops/preferences/__init__.pyi +6 -3
- bpy/types/__init__.pyi +50845 -50660
- {fake_bpy_module-20240514.dist-info → fake_bpy_module-20240516.dist-info}/METADATA +2 -1
- {fake_bpy_module-20240514.dist-info → fake_bpy_module-20240516.dist-info}/RECORD +23 -25
- mathutils/__init__.pyi +72 -71
- mathutils/geometry/__init__.pyi +4 -4
- bpy/ops/export_mesh/__init__.pyi +0 -67
- bpy/ops/import_mesh/__init__.pyi +0 -49
- bpy/ops/import_mesh/py.typed +0 -0
- /bpy/ops/{export_mesh → bl_pkg}/py.typed +0 -0
- {fake_bpy_module-20240514.dist-info → fake_bpy_module-20240516.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240514.dist-info → fake_bpy_module-20240516.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,511 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
import bpy.types
|
|
3
|
+
|
|
4
|
+
GenericType = typing.TypeVar("GenericType")
|
|
5
|
+
|
|
6
|
+
def dummy_progress(
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
10
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
11
|
+
undo: typing.Optional[bool] = None,
|
|
12
|
+
):
|
|
13
|
+
"""Undocumented, consider contributing.
|
|
14
|
+
|
|
15
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
16
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
17
|
+
:type undo: typing.Optional[bool]
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
...
|
|
21
|
+
|
|
22
|
+
def extension_disable(
|
|
23
|
+
override_context: typing.Optional[
|
|
24
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
25
|
+
] = None,
|
|
26
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
27
|
+
undo: typing.Optional[bool] = None,
|
|
28
|
+
):
|
|
29
|
+
"""Turn off this extension
|
|
30
|
+
|
|
31
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
32
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
33
|
+
:type undo: typing.Optional[bool]
|
|
34
|
+
"""
|
|
35
|
+
|
|
36
|
+
...
|
|
37
|
+
|
|
38
|
+
def extension_online_access(
|
|
39
|
+
override_context: typing.Optional[
|
|
40
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
41
|
+
] = None,
|
|
42
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
43
|
+
undo: typing.Optional[bool] = None,
|
|
44
|
+
enable: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
45
|
+
):
|
|
46
|
+
"""Handle online access
|
|
47
|
+
|
|
48
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
49
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
50
|
+
:type undo: typing.Optional[bool]
|
|
51
|
+
:param enable: Enable
|
|
52
|
+
:type enable: typing.Optional[typing.Union[bool, typing.Any]]
|
|
53
|
+
"""
|
|
54
|
+
|
|
55
|
+
...
|
|
56
|
+
|
|
57
|
+
def extension_theme_disable(
|
|
58
|
+
override_context: typing.Optional[
|
|
59
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
60
|
+
] = None,
|
|
61
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
62
|
+
undo: typing.Optional[bool] = None,
|
|
63
|
+
pkg_id: typing.Union[str, typing.Any] = "",
|
|
64
|
+
repo_index: typing.Optional[typing.Any] = -1,
|
|
65
|
+
):
|
|
66
|
+
"""Turn off this theme
|
|
67
|
+
|
|
68
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
69
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
70
|
+
:type undo: typing.Optional[bool]
|
|
71
|
+
:param pkg_id: Package ID
|
|
72
|
+
:type pkg_id: typing.Union[str, typing.Any]
|
|
73
|
+
:param repo_index: Repo Index
|
|
74
|
+
:type repo_index: typing.Optional[typing.Any]
|
|
75
|
+
"""
|
|
76
|
+
|
|
77
|
+
...
|
|
78
|
+
|
|
79
|
+
def extension_theme_enable(
|
|
80
|
+
override_context: typing.Optional[
|
|
81
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
82
|
+
] = None,
|
|
83
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
84
|
+
undo: typing.Optional[bool] = None,
|
|
85
|
+
pkg_id: typing.Union[str, typing.Any] = "",
|
|
86
|
+
repo_index: typing.Optional[typing.Any] = -1,
|
|
87
|
+
):
|
|
88
|
+
"""Turn off this theme
|
|
89
|
+
|
|
90
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
91
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
92
|
+
:type undo: typing.Optional[bool]
|
|
93
|
+
:param pkg_id: Package ID
|
|
94
|
+
:type pkg_id: typing.Union[str, typing.Any]
|
|
95
|
+
:param repo_index: Repo Index
|
|
96
|
+
:type repo_index: typing.Optional[typing.Any]
|
|
97
|
+
"""
|
|
98
|
+
|
|
99
|
+
...
|
|
100
|
+
|
|
101
|
+
def extensions_enable_not_installed(
|
|
102
|
+
override_context: typing.Optional[
|
|
103
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
104
|
+
] = None,
|
|
105
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
106
|
+
undo: typing.Optional[bool] = None,
|
|
107
|
+
):
|
|
108
|
+
"""Turn on this extension
|
|
109
|
+
|
|
110
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
111
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
112
|
+
:type undo: typing.Optional[bool]
|
|
113
|
+
"""
|
|
114
|
+
|
|
115
|
+
...
|
|
116
|
+
|
|
117
|
+
def extensions_show_for_update(
|
|
118
|
+
override_context: typing.Optional[
|
|
119
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
120
|
+
] = None,
|
|
121
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
122
|
+
undo: typing.Optional[bool] = None,
|
|
123
|
+
):
|
|
124
|
+
"""Show add-on preferences
|
|
125
|
+
|
|
126
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
127
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
128
|
+
:type undo: typing.Optional[bool]
|
|
129
|
+
"""
|
|
130
|
+
|
|
131
|
+
...
|
|
132
|
+
|
|
133
|
+
def obsolete_marked(
|
|
134
|
+
override_context: typing.Optional[
|
|
135
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
136
|
+
] = None,
|
|
137
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
138
|
+
undo: typing.Optional[bool] = None,
|
|
139
|
+
):
|
|
140
|
+
"""Zeroes package versions, useful for development - to test upgrading
|
|
141
|
+
|
|
142
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
143
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
144
|
+
:type undo: typing.Optional[bool]
|
|
145
|
+
"""
|
|
146
|
+
|
|
147
|
+
...
|
|
148
|
+
|
|
149
|
+
def pkg_display_errors_clear(
|
|
150
|
+
override_context: typing.Optional[
|
|
151
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
152
|
+
] = None,
|
|
153
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
154
|
+
undo: typing.Optional[bool] = None,
|
|
155
|
+
):
|
|
156
|
+
"""Undocumented, consider contributing.
|
|
157
|
+
|
|
158
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
159
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
160
|
+
:type undo: typing.Optional[bool]
|
|
161
|
+
"""
|
|
162
|
+
|
|
163
|
+
...
|
|
164
|
+
|
|
165
|
+
def pkg_install(
|
|
166
|
+
override_context: typing.Optional[
|
|
167
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
168
|
+
] = None,
|
|
169
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
170
|
+
undo: typing.Optional[bool] = None,
|
|
171
|
+
repo_directory: typing.Union[str, typing.Any] = "",
|
|
172
|
+
repo_index: typing.Optional[typing.Any] = -1,
|
|
173
|
+
pkg_id: typing.Union[str, typing.Any] = "",
|
|
174
|
+
enable_on_install: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
175
|
+
url: typing.Union[str, typing.Any] = "",
|
|
176
|
+
):
|
|
177
|
+
"""Undocumented, consider contributing.
|
|
178
|
+
|
|
179
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
180
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
181
|
+
:type undo: typing.Optional[bool]
|
|
182
|
+
:param repo_directory: Repo Directory
|
|
183
|
+
:type repo_directory: typing.Union[str, typing.Any]
|
|
184
|
+
:param repo_index: Repo Index
|
|
185
|
+
:type repo_index: typing.Optional[typing.Any]
|
|
186
|
+
:param pkg_id: Package ID
|
|
187
|
+
:type pkg_id: typing.Union[str, typing.Any]
|
|
188
|
+
:param enable_on_install: Enable on Install, Enable after installing
|
|
189
|
+
:type enable_on_install: typing.Optional[typing.Union[bool, typing.Any]]
|
|
190
|
+
:param url: URL
|
|
191
|
+
:type url: typing.Union[str, typing.Any]
|
|
192
|
+
"""
|
|
193
|
+
|
|
194
|
+
...
|
|
195
|
+
|
|
196
|
+
def pkg_install_files(
|
|
197
|
+
override_context: typing.Optional[
|
|
198
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
199
|
+
] = None,
|
|
200
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
201
|
+
undo: typing.Optional[bool] = None,
|
|
202
|
+
filter_glob: typing.Union[str, typing.Any] = "*.zip",
|
|
203
|
+
directory: typing.Union[str, typing.Any] = "",
|
|
204
|
+
files: typing.Optional[
|
|
205
|
+
bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
206
|
+
] = None,
|
|
207
|
+
filepath: typing.Union[str, typing.Any] = "",
|
|
208
|
+
repo: typing.Optional[typing.Union[str, int, typing.Any]] = "",
|
|
209
|
+
enable_on_install: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
210
|
+
url: typing.Union[str, typing.Any] = "",
|
|
211
|
+
):
|
|
212
|
+
"""Install an extension from a file into a locally managed repository
|
|
213
|
+
|
|
214
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
215
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
216
|
+
:type undo: typing.Optional[bool]
|
|
217
|
+
:param filter_glob: filter_glob
|
|
218
|
+
:type filter_glob: typing.Union[str, typing.Any]
|
|
219
|
+
:param directory: Directory
|
|
220
|
+
:type directory: typing.Union[str, typing.Any]
|
|
221
|
+
:param files: files
|
|
222
|
+
:type files: typing.Optional[bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]]
|
|
223
|
+
:param filepath: filepath
|
|
224
|
+
:type filepath: typing.Union[str, typing.Any]
|
|
225
|
+
:param repo: Local Repository, The local repository to install extensions into
|
|
226
|
+
:type repo: typing.Optional[typing.Union[str, int, typing.Any]]
|
|
227
|
+
:param enable_on_install: Enable on Install, Enable after installing
|
|
228
|
+
:type enable_on_install: typing.Optional[typing.Union[bool, typing.Any]]
|
|
229
|
+
:param url: URL
|
|
230
|
+
:type url: typing.Union[str, typing.Any]
|
|
231
|
+
"""
|
|
232
|
+
|
|
233
|
+
...
|
|
234
|
+
|
|
235
|
+
def pkg_install_marked(
|
|
236
|
+
override_context: typing.Optional[
|
|
237
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
238
|
+
] = None,
|
|
239
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
240
|
+
undo: typing.Optional[bool] = None,
|
|
241
|
+
enable_on_install: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
242
|
+
):
|
|
243
|
+
"""Undocumented, consider contributing.
|
|
244
|
+
|
|
245
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
246
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
247
|
+
:type undo: typing.Optional[bool]
|
|
248
|
+
:param enable_on_install: Enable on Install, Enable after installing
|
|
249
|
+
:type enable_on_install: typing.Optional[typing.Union[bool, typing.Any]]
|
|
250
|
+
"""
|
|
251
|
+
|
|
252
|
+
...
|
|
253
|
+
|
|
254
|
+
def pkg_mark_clear(
|
|
255
|
+
override_context: typing.Optional[
|
|
256
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
257
|
+
] = None,
|
|
258
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
259
|
+
undo: typing.Optional[bool] = None,
|
|
260
|
+
pkg_id: typing.Union[str, typing.Any] = "",
|
|
261
|
+
repo_index: typing.Optional[typing.Any] = -1,
|
|
262
|
+
):
|
|
263
|
+
"""Undocumented, consider contributing.
|
|
264
|
+
|
|
265
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
266
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
267
|
+
:type undo: typing.Optional[bool]
|
|
268
|
+
:param pkg_id: Package ID
|
|
269
|
+
:type pkg_id: typing.Union[str, typing.Any]
|
|
270
|
+
:param repo_index: Repo Index
|
|
271
|
+
:type repo_index: typing.Optional[typing.Any]
|
|
272
|
+
"""
|
|
273
|
+
|
|
274
|
+
...
|
|
275
|
+
|
|
276
|
+
def pkg_mark_set(
|
|
277
|
+
override_context: typing.Optional[
|
|
278
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
279
|
+
] = None,
|
|
280
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
281
|
+
undo: typing.Optional[bool] = None,
|
|
282
|
+
pkg_id: typing.Union[str, typing.Any] = "",
|
|
283
|
+
repo_index: typing.Optional[typing.Any] = -1,
|
|
284
|
+
):
|
|
285
|
+
"""Undocumented, consider contributing.
|
|
286
|
+
|
|
287
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
288
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
289
|
+
:type undo: typing.Optional[bool]
|
|
290
|
+
:param pkg_id: Package ID
|
|
291
|
+
:type pkg_id: typing.Union[str, typing.Any]
|
|
292
|
+
:param repo_index: Repo Index
|
|
293
|
+
:type repo_index: typing.Optional[typing.Any]
|
|
294
|
+
"""
|
|
295
|
+
|
|
296
|
+
...
|
|
297
|
+
|
|
298
|
+
def pkg_show_clear(
|
|
299
|
+
override_context: typing.Optional[
|
|
300
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
301
|
+
] = None,
|
|
302
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
303
|
+
undo: typing.Optional[bool] = None,
|
|
304
|
+
pkg_id: typing.Union[str, typing.Any] = "",
|
|
305
|
+
repo_index: typing.Optional[typing.Any] = -1,
|
|
306
|
+
):
|
|
307
|
+
"""Undocumented, consider contributing.
|
|
308
|
+
|
|
309
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
310
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
311
|
+
:type undo: typing.Optional[bool]
|
|
312
|
+
:param pkg_id: Package ID
|
|
313
|
+
:type pkg_id: typing.Union[str, typing.Any]
|
|
314
|
+
:param repo_index: Repo Index
|
|
315
|
+
:type repo_index: typing.Optional[typing.Any]
|
|
316
|
+
"""
|
|
317
|
+
|
|
318
|
+
...
|
|
319
|
+
|
|
320
|
+
def pkg_show_set(
|
|
321
|
+
override_context: typing.Optional[
|
|
322
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
323
|
+
] = None,
|
|
324
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
325
|
+
undo: typing.Optional[bool] = None,
|
|
326
|
+
pkg_id: typing.Union[str, typing.Any] = "",
|
|
327
|
+
repo_index: typing.Optional[typing.Any] = -1,
|
|
328
|
+
):
|
|
329
|
+
"""Undocumented, consider contributing.
|
|
330
|
+
|
|
331
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
332
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
333
|
+
:type undo: typing.Optional[bool]
|
|
334
|
+
:param pkg_id: Package ID
|
|
335
|
+
:type pkg_id: typing.Union[str, typing.Any]
|
|
336
|
+
:param repo_index: Repo Index
|
|
337
|
+
:type repo_index: typing.Optional[typing.Any]
|
|
338
|
+
"""
|
|
339
|
+
|
|
340
|
+
...
|
|
341
|
+
|
|
342
|
+
def pkg_show_settings(
|
|
343
|
+
override_context: typing.Optional[
|
|
344
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
345
|
+
] = None,
|
|
346
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
347
|
+
undo: typing.Optional[bool] = None,
|
|
348
|
+
pkg_id: typing.Union[str, typing.Any] = "",
|
|
349
|
+
repo_index: typing.Optional[typing.Any] = -1,
|
|
350
|
+
):
|
|
351
|
+
"""Undocumented, consider contributing.
|
|
352
|
+
|
|
353
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
354
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
355
|
+
:type undo: typing.Optional[bool]
|
|
356
|
+
:param pkg_id: Package ID
|
|
357
|
+
:type pkg_id: typing.Union[str, typing.Any]
|
|
358
|
+
:param repo_index: Repo Index
|
|
359
|
+
:type repo_index: typing.Optional[typing.Any]
|
|
360
|
+
"""
|
|
361
|
+
|
|
362
|
+
...
|
|
363
|
+
|
|
364
|
+
def pkg_status_clear(
|
|
365
|
+
override_context: typing.Optional[
|
|
366
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
367
|
+
] = None,
|
|
368
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
369
|
+
undo: typing.Optional[bool] = None,
|
|
370
|
+
):
|
|
371
|
+
"""Undocumented, consider contributing.
|
|
372
|
+
|
|
373
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
374
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
375
|
+
:type undo: typing.Optional[bool]
|
|
376
|
+
"""
|
|
377
|
+
|
|
378
|
+
...
|
|
379
|
+
|
|
380
|
+
def pkg_uninstall(
|
|
381
|
+
override_context: typing.Optional[
|
|
382
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
383
|
+
] = None,
|
|
384
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
385
|
+
undo: typing.Optional[bool] = None,
|
|
386
|
+
repo_directory: typing.Union[str, typing.Any] = "",
|
|
387
|
+
repo_index: typing.Optional[typing.Any] = -1,
|
|
388
|
+
pkg_id: typing.Union[str, typing.Any] = "",
|
|
389
|
+
):
|
|
390
|
+
"""Undocumented, consider contributing.
|
|
391
|
+
|
|
392
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
393
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
394
|
+
:type undo: typing.Optional[bool]
|
|
395
|
+
:param repo_directory: Repo Directory
|
|
396
|
+
:type repo_directory: typing.Union[str, typing.Any]
|
|
397
|
+
:param repo_index: Repo Index
|
|
398
|
+
:type repo_index: typing.Optional[typing.Any]
|
|
399
|
+
:param pkg_id: Package ID
|
|
400
|
+
:type pkg_id: typing.Union[str, typing.Any]
|
|
401
|
+
"""
|
|
402
|
+
|
|
403
|
+
...
|
|
404
|
+
|
|
405
|
+
def pkg_uninstall_marked(
|
|
406
|
+
override_context: typing.Optional[
|
|
407
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
408
|
+
] = None,
|
|
409
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
410
|
+
undo: typing.Optional[bool] = None,
|
|
411
|
+
):
|
|
412
|
+
"""Undocumented, consider contributing.
|
|
413
|
+
|
|
414
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
415
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
416
|
+
:type undo: typing.Optional[bool]
|
|
417
|
+
"""
|
|
418
|
+
|
|
419
|
+
...
|
|
420
|
+
|
|
421
|
+
def pkg_upgrade_all(
|
|
422
|
+
override_context: typing.Optional[
|
|
423
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
424
|
+
] = None,
|
|
425
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
426
|
+
undo: typing.Optional[bool] = None,
|
|
427
|
+
use_active_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
428
|
+
):
|
|
429
|
+
"""Undocumented, consider contributing.
|
|
430
|
+
|
|
431
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
432
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
433
|
+
:type undo: typing.Optional[bool]
|
|
434
|
+
:param use_active_only: Active Only, Only sync the active repository
|
|
435
|
+
:type use_active_only: typing.Optional[typing.Union[bool, typing.Any]]
|
|
436
|
+
"""
|
|
437
|
+
|
|
438
|
+
...
|
|
439
|
+
|
|
440
|
+
def repo_lock(
|
|
441
|
+
override_context: typing.Optional[
|
|
442
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
443
|
+
] = None,
|
|
444
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
445
|
+
undo: typing.Optional[bool] = None,
|
|
446
|
+
):
|
|
447
|
+
"""Lock repositories - to test locking
|
|
448
|
+
|
|
449
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
450
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
451
|
+
:type undo: typing.Optional[bool]
|
|
452
|
+
"""
|
|
453
|
+
|
|
454
|
+
...
|
|
455
|
+
|
|
456
|
+
def repo_sync(
|
|
457
|
+
override_context: typing.Optional[
|
|
458
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
459
|
+
] = None,
|
|
460
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
461
|
+
undo: typing.Optional[bool] = None,
|
|
462
|
+
repo_directory: typing.Union[str, typing.Any] = "",
|
|
463
|
+
repo_index: typing.Optional[typing.Any] = -1,
|
|
464
|
+
):
|
|
465
|
+
"""Undocumented, consider contributing.
|
|
466
|
+
|
|
467
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
468
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
469
|
+
:type undo: typing.Optional[bool]
|
|
470
|
+
:param repo_directory: Repo Directory
|
|
471
|
+
:type repo_directory: typing.Union[str, typing.Any]
|
|
472
|
+
:param repo_index: Repo Index
|
|
473
|
+
:type repo_index: typing.Optional[typing.Any]
|
|
474
|
+
"""
|
|
475
|
+
|
|
476
|
+
...
|
|
477
|
+
|
|
478
|
+
def repo_sync_all(
|
|
479
|
+
override_context: typing.Optional[
|
|
480
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
481
|
+
] = None,
|
|
482
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
483
|
+
undo: typing.Optional[bool] = None,
|
|
484
|
+
use_active_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
485
|
+
):
|
|
486
|
+
"""Undocumented, consider contributing.
|
|
487
|
+
|
|
488
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
489
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
490
|
+
:type undo: typing.Optional[bool]
|
|
491
|
+
:param use_active_only: Active Only, Only sync the active repository
|
|
492
|
+
:type use_active_only: typing.Optional[typing.Union[bool, typing.Any]]
|
|
493
|
+
"""
|
|
494
|
+
|
|
495
|
+
...
|
|
496
|
+
|
|
497
|
+
def repo_unlock(
|
|
498
|
+
override_context: typing.Optional[
|
|
499
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
500
|
+
] = None,
|
|
501
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
502
|
+
undo: typing.Optional[bool] = None,
|
|
503
|
+
):
|
|
504
|
+
"""Unlock repositories - to test unlocking
|
|
505
|
+
|
|
506
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
507
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
508
|
+
:type undo: typing.Optional[bool]
|
|
509
|
+
"""
|
|
510
|
+
|
|
511
|
+
...
|
|
@@ -22,11 +22,11 @@ def fbx(
|
|
|
22
22
|
use_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
23
23
|
bake_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
24
24
|
object_types: typing.Optional[typing.Any] = {
|
|
25
|
+
'"EMPTY"',
|
|
26
|
+
'"LIGHT"',
|
|
25
27
|
'"CAMERA"',
|
|
26
28
|
'"ARMATURE"',
|
|
27
|
-
'"EMPTY"',
|
|
28
29
|
'"MESH"',
|
|
29
|
-
'"LIGHT"',
|
|
30
30
|
'"OTHER"',
|
|
31
31
|
},
|
|
32
32
|
use_mesh_modifiers: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -659,82 +659,3 @@ def gltf(
|
|
|
659
659
|
"""
|
|
660
660
|
|
|
661
661
|
...
|
|
662
|
-
|
|
663
|
-
def x3d(
|
|
664
|
-
override_context: typing.Optional[
|
|
665
|
-
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
666
|
-
] = None,
|
|
667
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
668
|
-
undo: typing.Optional[bool] = None,
|
|
669
|
-
filepath: typing.Union[str, typing.Any] = "",
|
|
670
|
-
check_existing: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
671
|
-
filter_glob: typing.Union[str, typing.Any] = "*.x3d",
|
|
672
|
-
use_selection: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
673
|
-
use_mesh_modifiers: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
674
|
-
use_triangulate: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
675
|
-
use_normals: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
676
|
-
use_compress: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
677
|
-
use_hierarchy: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
678
|
-
name_decorations: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
679
|
-
use_h3d: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
680
|
-
global_scale: typing.Optional[typing.Any] = 1.0,
|
|
681
|
-
path_mode: typing.Optional[typing.Any] = "AUTO",
|
|
682
|
-
axis_forward: typing.Optional[typing.Any] = "Z",
|
|
683
|
-
axis_up: typing.Optional[typing.Any] = "Y",
|
|
684
|
-
):
|
|
685
|
-
"""Export selection to Extensible 3D file (.x3d)
|
|
686
|
-
|
|
687
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
688
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
689
|
-
:type undo: typing.Optional[bool]
|
|
690
|
-
:param filepath: File Path, Filepath used for exporting the file
|
|
691
|
-
:type filepath: typing.Union[str, typing.Any]
|
|
692
|
-
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
693
|
-
:type check_existing: typing.Optional[typing.Union[bool, typing.Any]]
|
|
694
|
-
:param filter_glob: filter_glob
|
|
695
|
-
:type filter_glob: typing.Union[str, typing.Any]
|
|
696
|
-
:param use_selection: Selection Only, Export selected objects only
|
|
697
|
-
:type use_selection: typing.Optional[typing.Union[bool, typing.Any]]
|
|
698
|
-
:param use_mesh_modifiers: Apply Modifiers, Use transformed mesh data from each object
|
|
699
|
-
:type use_mesh_modifiers: typing.Optional[typing.Union[bool, typing.Any]]
|
|
700
|
-
:param use_triangulate: Triangulate, Write quads into 'IndexedTriangleSet'
|
|
701
|
-
:type use_triangulate: typing.Optional[typing.Union[bool, typing.Any]]
|
|
702
|
-
:param use_normals: Normals, Write normals with geometry
|
|
703
|
-
:type use_normals: typing.Optional[typing.Union[bool, typing.Any]]
|
|
704
|
-
:param use_compress: Compress, Compress the exported file
|
|
705
|
-
:type use_compress: typing.Optional[typing.Union[bool, typing.Any]]
|
|
706
|
-
:param use_hierarchy: Hierarchy, Export parent child relationships
|
|
707
|
-
:type use_hierarchy: typing.Optional[typing.Union[bool, typing.Any]]
|
|
708
|
-
:param name_decorations: Name decorations, Add prefixes to the names of exported nodes to indicate their type
|
|
709
|
-
:type name_decorations: typing.Optional[typing.Union[bool, typing.Any]]
|
|
710
|
-
:param use_h3d: H3D Extensions, Export shaders for H3D
|
|
711
|
-
:type use_h3d: typing.Optional[typing.Union[bool, typing.Any]]
|
|
712
|
-
:param global_scale: Scale
|
|
713
|
-
:type global_scale: typing.Optional[typing.Any]
|
|
714
|
-
:param path_mode: Path Mode, Method used to reference paths
|
|
715
|
-
|
|
716
|
-
AUTO
|
|
717
|
-
Auto -- Use relative paths with subdirectories only.
|
|
718
|
-
|
|
719
|
-
ABSOLUTE
|
|
720
|
-
Absolute -- Always write absolute paths.
|
|
721
|
-
|
|
722
|
-
RELATIVE
|
|
723
|
-
Relative -- Always write relative paths (where possible).
|
|
724
|
-
|
|
725
|
-
MATCH
|
|
726
|
-
Match -- Match absolute/relative setting with input path.
|
|
727
|
-
|
|
728
|
-
STRIP
|
|
729
|
-
Strip Path -- Filename only.
|
|
730
|
-
|
|
731
|
-
COPY
|
|
732
|
-
Copy -- Copy the file to the destination path (or subdirectory).
|
|
733
|
-
:type path_mode: typing.Optional[typing.Any]
|
|
734
|
-
:param axis_forward: Forward
|
|
735
|
-
:type axis_forward: typing.Optional[typing.Any]
|
|
736
|
-
:param axis_up: Up
|
|
737
|
-
:type axis_up: typing.Optional[typing.Any]
|
|
738
|
-
"""
|
|
739
|
-
|
|
740
|
-
...
|
|
@@ -267,6 +267,25 @@ def extrude_move(
|
|
|
267
267
|
|
|
268
268
|
...
|
|
269
269
|
|
|
270
|
+
def fill(
|
|
271
|
+
override_context: typing.Optional[
|
|
272
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
273
|
+
] = None,
|
|
274
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
275
|
+
undo: typing.Optional[bool] = None,
|
|
276
|
+
on_back: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
277
|
+
):
|
|
278
|
+
"""Fill with color the shape formed by strokes
|
|
279
|
+
|
|
280
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
281
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
282
|
+
:type undo: typing.Optional[bool]
|
|
283
|
+
:param on_back: Draw on Back, Send new stroke to back
|
|
284
|
+
:type on_back: typing.Optional[typing.Union[bool, typing.Any]]
|
|
285
|
+
"""
|
|
286
|
+
|
|
287
|
+
...
|
|
288
|
+
|
|
270
289
|
def insert_blank_frame(
|
|
271
290
|
override_context: typing.Optional[
|
|
272
291
|
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
@@ -1273,6 +1292,28 @@ def stroke_material_set(
|
|
|
1273
1292
|
|
|
1274
1293
|
...
|
|
1275
1294
|
|
|
1295
|
+
def stroke_merge_by_distance(
|
|
1296
|
+
override_context: typing.Optional[
|
|
1297
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
1298
|
+
] = None,
|
|
1299
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1300
|
+
undo: typing.Optional[bool] = None,
|
|
1301
|
+
threshold: typing.Optional[typing.Any] = 0.001,
|
|
1302
|
+
use_unselected: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
1303
|
+
):
|
|
1304
|
+
"""Merge points by distance
|
|
1305
|
+
|
|
1306
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
1307
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1308
|
+
:type undo: typing.Optional[bool]
|
|
1309
|
+
:param threshold: Threshold
|
|
1310
|
+
:type threshold: typing.Optional[typing.Any]
|
|
1311
|
+
:param use_unselected: Unselected, Use whole stroke, not only selected points
|
|
1312
|
+
:type use_unselected: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1313
|
+
"""
|
|
1314
|
+
|
|
1315
|
+
...
|
|
1316
|
+
|
|
1276
1317
|
def stroke_simplify(
|
|
1277
1318
|
override_context: typing.Optional[
|
|
1278
1319
|
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
@@ -184,31 +184,3 @@ def gltf(
|
|
|
184
184
|
"""
|
|
185
185
|
|
|
186
186
|
...
|
|
187
|
-
|
|
188
|
-
def x3d(
|
|
189
|
-
override_context: typing.Optional[
|
|
190
|
-
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
191
|
-
] = None,
|
|
192
|
-
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
193
|
-
undo: typing.Optional[bool] = None,
|
|
194
|
-
filepath: typing.Union[str, typing.Any] = "",
|
|
195
|
-
filter_glob: typing.Union[str, typing.Any] = "*.x3d;*.wrl",
|
|
196
|
-
axis_forward: typing.Optional[typing.Any] = "Z",
|
|
197
|
-
axis_up: typing.Optional[typing.Any] = "Y",
|
|
198
|
-
):
|
|
199
|
-
"""Import an X3D or VRML2 file
|
|
200
|
-
|
|
201
|
-
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
202
|
-
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
203
|
-
:type undo: typing.Optional[bool]
|
|
204
|
-
:param filepath: File Path, Filepath used for importing the file
|
|
205
|
-
:type filepath: typing.Union[str, typing.Any]
|
|
206
|
-
:param filter_glob: filter_glob
|
|
207
|
-
:type filter_glob: typing.Union[str, typing.Any]
|
|
208
|
-
:param axis_forward: Forward
|
|
209
|
-
:type axis_forward: typing.Optional[typing.Any]
|
|
210
|
-
:param axis_up: Up
|
|
211
|
-
:type axis_up: typing.Optional[typing.Any]
|
|
212
|
-
"""
|
|
213
|
-
|
|
214
|
-
...
|