fake-bpy-module 20240515__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.

@@ -1275,6 +1275,9 @@ class _defs_grease_pencil_paint:
1275
1275
  erase: typing.Any
1276
1276
  """ """
1277
1277
 
1278
+ fill: typing.Any
1279
+ """ """
1280
+
1278
1281
  line: typing.Any
1279
1282
  """ """
1280
1283
 
@@ -658,10 +658,10 @@ class USERPREF_MT_interface_theme_presets(bpy_types.Menu, bpy_types._GenericUI):
658
658
  """ """
659
659
  ...
660
660
 
661
- def draw(self, _context):
661
+ def draw(self, context):
662
662
  """
663
663
 
664
- :param _context:
664
+ :param context:
665
665
  """
666
666
  ...
667
667
 
@@ -8273,10 +8273,10 @@ class VIEW3D_MT_edit_greasepencil_cleanup(bpy_types.Menu, bpy_types._GenericUI):
8273
8273
  """ """
8274
8274
  ...
8275
8275
 
8276
- def draw(self, _context):
8276
+ def draw(self, context):
8277
8277
  """
8278
8278
 
8279
- :param _context:
8279
+ :param context:
8280
8280
  """
8281
8281
  ...
8282
8282
 
bmesh/utils/__init__.pyi CHANGED
@@ -173,7 +173,7 @@ def vert_dissolve(vert: bmesh.types.BMVert) -> bool:
173
173
 
174
174
  def vert_separate(
175
175
  vert: bmesh.types.BMVert, edges: bmesh.types.BMEdge
176
- ) -> typing.Tuple[bmesh.types.BMVert]:
176
+ ) -> typing.Tuple[bmesh.types.BMVert, ...]:
177
177
  """Separate this vertex at every edge.
178
178
 
179
179
  :param vert: The vert to be separated.
@@ -181,7 +181,7 @@ def vert_separate(
181
181
  :param edges: The edges to separated.
182
182
  :type edges: bmesh.types.BMEdge
183
183
  :return: The newly separated verts (including the vertex passed).
184
- :rtype: typing.Tuple[bmesh.types.BMVert]
184
+ :rtype: typing.Tuple[bmesh.types.BMVert, ...]
185
185
  """
186
186
 
187
187
  ...
bpy/ops/__init__.pyi CHANGED
@@ -154,6 +154,7 @@ from . import action
154
154
  from . import anim
155
155
  from . import armature
156
156
  from . import asset
157
+ from . import bl_pkg
157
158
  from . import boid
158
159
  from . import brush
159
160
  from . import buttons
@@ -170,7 +171,6 @@ from . import cycles
170
171
  from . import dpaint
171
172
  from . import ed
172
173
  from . import export_anim
173
- from . import export_mesh
174
174
  from . import export_scene
175
175
  from . import file
176
176
  from . import fluid
@@ -183,7 +183,6 @@ from . import grease_pencil
183
183
  from . import image
184
184
  from . import import_anim
185
185
  from . import import_curve
186
- from . import import_mesh
187
186
  from . import import_scene
188
187
  from . import info
189
188
  from . import lattice
@@ -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,12 +22,12 @@ 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
- '"CAMERA"',
26
- '"MESH"',
25
+ '"EMPTY"',
27
26
  '"LIGHT"',
27
+ '"CAMERA"',
28
28
  '"ARMATURE"',
29
+ '"MESH"',
29
30
  '"OTHER"',
30
- '"EMPTY"',
31
31
  },
32
32
  use_mesh_modifiers: typing.Optional[typing.Union[bool, typing.Any]] = True,
33
33
  use_mesh_modifiers_render: 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
- ...