fake-bpy-module 20240507__py3-none-any.whl → 20240509__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.

Files changed (83) hide show
  1. bpy/ops/action/__init__.pyi +152 -76
  2. bpy/ops/anim/__init__.pyi +212 -106
  3. bpy/ops/armature/__init__.pyi +192 -96
  4. bpy/ops/asset/__init__.pyi +64 -32
  5. bpy/ops/boid/__init__.pyi +32 -16
  6. bpy/ops/brush/__init__.pyi +36 -18
  7. bpy/ops/buttons/__init__.pyi +24 -12
  8. bpy/ops/cachefile/__init__.pyi +20 -10
  9. bpy/ops/camera/__init__.pyi +8 -4
  10. bpy/ops/clip/__init__.pyi +368 -184
  11. bpy/ops/cloth/__init__.pyi +4 -2
  12. bpy/ops/collection/__init__.pyi +36 -18
  13. bpy/ops/console/__init__.pyi +84 -42
  14. bpy/ops/constraint/__init__.pyi +72 -36
  15. bpy/ops/curve/__init__.pyi +204 -102
  16. bpy/ops/curves/__init__.pyi +108 -54
  17. bpy/ops/cycles/__init__.pyi +12 -6
  18. bpy/ops/dpaint/__init__.pyi +20 -10
  19. bpy/ops/ed/__init__.pyi +48 -24
  20. bpy/ops/export_anim/__init__.pyi +4 -2
  21. bpy/ops/export_mesh/__init__.pyi +4 -2
  22. bpy/ops/export_scene/__init__.pyi +14 -8
  23. bpy/ops/file/__init__.pyi +160 -80
  24. bpy/ops/fluid/__init__.pyi +56 -28
  25. bpy/ops/font/__init__.pyi +92 -46
  26. bpy/ops/geometry/__init__.pyi +40 -20
  27. bpy/ops/gizmogroup/__init__.pyi +8 -4
  28. bpy/ops/gpencil/__init__.pyi +600 -300
  29. bpy/ops/graph/__init__.pyi +260 -130
  30. bpy/ops/grease_pencil/__init__.pyi +268 -134
  31. bpy/ops/image/__init__.pyi +188 -94
  32. bpy/ops/import_anim/__init__.pyi +4 -2
  33. bpy/ops/import_curve/__init__.pyi +4 -2
  34. bpy/ops/import_mesh/__init__.pyi +4 -2
  35. bpy/ops/import_scene/__init__.pyi +12 -6
  36. bpy/ops/info/__init__.pyi +28 -14
  37. bpy/ops/lattice/__init__.pyi +32 -16
  38. bpy/ops/marker/__init__.pyi +44 -22
  39. bpy/ops/mask/__init__.pyi +156 -78
  40. bpy/ops/material/__init__.pyi +12 -6
  41. bpy/ops/mball/__init__.pyi +32 -16
  42. bpy/ops/mesh/__init__.pyi +652 -326
  43. bpy/ops/nla/__init__.pyi +158 -80
  44. bpy/ops/node/__init__.pyi +404 -202
  45. bpy/ops/object/__init__.pyi +1002 -490
  46. bpy/ops/outliner/__init__.pyi +276 -138
  47. bpy/ops/paint/__init__.pyi +212 -106
  48. bpy/ops/paintcurve/__init__.pyi +32 -16
  49. bpy/ops/palette/__init__.pyi +28 -14
  50. bpy/ops/particle/__init__.pyi +144 -72
  51. bpy/ops/pose/__init__.pyi +156 -78
  52. bpy/ops/poselib/__init__.pyi +36 -18
  53. bpy/ops/preferences/__init__.pyi +152 -76
  54. bpy/ops/ptcache/__init__.pyi +28 -14
  55. bpy/ops/render/__init__.pyi +48 -24
  56. bpy/ops/rigidbody/__init__.pyi +52 -26
  57. bpy/ops/scene/__init__.pyi +156 -78
  58. bpy/ops/screen/__init__.pyi +156 -78
  59. bpy/ops/script/__init__.pyi +12 -6
  60. bpy/ops/sculpt/__init__.pyi +134 -68
  61. bpy/ops/sculpt_curves/__init__.pyi +16 -8
  62. bpy/ops/sequencer/__init__.pyi +340 -170
  63. bpy/ops/sound/__init__.pyi +28 -14
  64. bpy/ops/spreadsheet/__init__.pyi +16 -8
  65. bpy/ops/surface/__init__.pyi +24 -12
  66. bpy/ops/text/__init__.pyi +172 -86
  67. bpy/ops/text_editor/__init__.pyi +4 -2
  68. bpy/ops/texture/__init__.pyi +16 -8
  69. bpy/ops/transform/__init__.pyi +108 -54
  70. bpy/ops/ui/__init__.pyi +132 -66
  71. bpy/ops/uilist/__init__.pyi +12 -6
  72. bpy/ops/uv/__init__.pyi +196 -98
  73. bpy/ops/view2d/__init__.pyi +56 -28
  74. bpy/ops/view3d/__init__.pyi +268 -134
  75. bpy/ops/wm/__init__.pyi +493 -224
  76. bpy/ops/workspace/__init__.pyi +28 -14
  77. bpy/ops/world/__init__.pyi +4 -2
  78. bpy/types/__init__.pyi +1250 -631
  79. {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/METADATA +1 -1
  80. {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/RECORD +83 -83
  81. mathutils/__init__.pyi +20 -0
  82. {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/WHEEL +0 -0
  83. {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/top_level.txt +0 -0
bpy/ops/file/__init__.pyi CHANGED
@@ -4,13 +4,15 @@ import bpy.types
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
6
  def autopack_toggle(
7
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
7
+ override_context: typing.Optional[
8
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
9
+ ] = None,
8
10
  execution_context: typing.Optional[typing.Union[str, int]] = None,
9
11
  undo: typing.Optional[bool] = None,
10
12
  ):
11
13
  """Automatically pack all external files into the .blend file
12
14
 
13
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
15
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
14
16
  :type execution_context: typing.Optional[typing.Union[str, int]]
15
17
  :type undo: typing.Optional[bool]
16
18
  """
@@ -18,13 +20,15 @@ def autopack_toggle(
18
20
  ...
19
21
 
20
22
  def bookmark_add(
21
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
23
+ override_context: typing.Optional[
24
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
25
+ ] = None,
22
26
  execution_context: typing.Optional[typing.Union[str, int]] = None,
23
27
  undo: typing.Optional[bool] = None,
24
28
  ):
25
29
  """Add a bookmark for the selected/active directory
26
30
 
27
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
31
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
28
32
  :type execution_context: typing.Optional[typing.Union[str, int]]
29
33
  :type undo: typing.Optional[bool]
30
34
  """
@@ -32,13 +36,15 @@ def bookmark_add(
32
36
  ...
33
37
 
34
38
  def bookmark_cleanup(
35
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
39
+ override_context: typing.Optional[
40
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
41
+ ] = None,
36
42
  execution_context: typing.Optional[typing.Union[str, int]] = None,
37
43
  undo: typing.Optional[bool] = None,
38
44
  ):
39
45
  """Delete all invalid bookmarks
40
46
 
41
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
47
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
42
48
  :type execution_context: typing.Optional[typing.Union[str, int]]
43
49
  :type undo: typing.Optional[bool]
44
50
  """
@@ -46,14 +52,16 @@ def bookmark_cleanup(
46
52
  ...
47
53
 
48
54
  def bookmark_delete(
49
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
55
+ override_context: typing.Optional[
56
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
57
+ ] = None,
50
58
  execution_context: typing.Optional[typing.Union[str, int]] = None,
51
59
  undo: typing.Optional[bool] = None,
52
60
  index: typing.Optional[typing.Any] = -1,
53
61
  ):
54
62
  """Delete selected bookmark
55
63
 
56
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
64
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
57
65
  :type execution_context: typing.Optional[typing.Union[str, int]]
58
66
  :type undo: typing.Optional[bool]
59
67
  :param index: Index
@@ -63,14 +71,16 @@ def bookmark_delete(
63
71
  ...
64
72
 
65
73
  def bookmark_move(
66
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
74
+ override_context: typing.Optional[
75
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
76
+ ] = None,
67
77
  execution_context: typing.Optional[typing.Union[str, int]] = None,
68
78
  undo: typing.Optional[bool] = None,
69
79
  direction: typing.Optional[typing.Any] = "TOP",
70
80
  ):
71
81
  """Move the active bookmark up/down in the list
72
82
 
73
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
83
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
74
84
  :type execution_context: typing.Optional[typing.Union[str, int]]
75
85
  :type undo: typing.Optional[bool]
76
86
  :param direction: Direction, Direction to move the active bookmark towards
@@ -92,13 +102,15 @@ def bookmark_move(
92
102
  ...
93
103
 
94
104
  def cancel(
95
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
105
+ override_context: typing.Optional[
106
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
107
+ ] = None,
96
108
  execution_context: typing.Optional[typing.Union[str, int]] = None,
97
109
  undo: typing.Optional[bool] = None,
98
110
  ):
99
111
  """Cancel loading of selected file
100
112
 
101
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
113
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
102
114
  :type execution_context: typing.Optional[typing.Union[str, int]]
103
115
  :type undo: typing.Optional[bool]
104
116
  """
@@ -106,13 +118,15 @@ def cancel(
106
118
  ...
107
119
 
108
120
  def delete(
109
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
121
+ override_context: typing.Optional[
122
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
123
+ ] = None,
110
124
  execution_context: typing.Optional[typing.Union[str, int]] = None,
111
125
  undo: typing.Optional[bool] = None,
112
126
  ):
113
127
  """Move selected files to the trash or recycle bin
114
128
 
115
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
129
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
116
130
  :type execution_context: typing.Optional[typing.Union[str, int]]
117
131
  :type undo: typing.Optional[bool]
118
132
  """
@@ -120,7 +134,9 @@ def delete(
120
134
  ...
121
135
 
122
136
  def directory_new(
123
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
137
+ override_context: typing.Optional[
138
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
139
+ ] = None,
124
140
  execution_context: typing.Optional[typing.Union[str, int]] = None,
125
141
  undo: typing.Optional[bool] = None,
126
142
  directory: typing.Union[str, typing.Any] = "",
@@ -128,7 +144,7 @@ def directory_new(
128
144
  ):
129
145
  """Create a new directory
130
146
 
131
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
147
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
132
148
  :type execution_context: typing.Optional[typing.Union[str, int]]
133
149
  :type undo: typing.Optional[bool]
134
150
  :param directory: Directory, Name of new directory
@@ -140,13 +156,15 @@ def directory_new(
140
156
  ...
141
157
 
142
158
  def edit_directory_path(
143
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
159
+ override_context: typing.Optional[
160
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
161
+ ] = None,
144
162
  execution_context: typing.Optional[typing.Union[str, int]] = None,
145
163
  undo: typing.Optional[bool] = None,
146
164
  ):
147
165
  """Start editing directory field
148
166
 
149
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
167
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
150
168
  :type execution_context: typing.Optional[typing.Union[str, int]]
151
169
  :type undo: typing.Optional[bool]
152
170
  """
@@ -154,13 +172,15 @@ def edit_directory_path(
154
172
  ...
155
173
 
156
174
  def execute(
157
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
175
+ override_context: typing.Optional[
176
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
177
+ ] = None,
158
178
  execution_context: typing.Optional[typing.Union[str, int]] = None,
159
179
  undo: typing.Optional[bool] = None,
160
180
  ):
161
181
  """Execute selected file
162
182
 
163
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
183
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
164
184
  :type execution_context: typing.Optional[typing.Union[str, int]]
165
185
  :type undo: typing.Optional[bool]
166
186
  """
@@ -168,7 +188,9 @@ def execute(
168
188
  ...
169
189
 
170
190
  def external_operation(
171
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
191
+ override_context: typing.Optional[
192
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
193
+ ] = None,
172
194
  execution_context: typing.Optional[typing.Union[str, int]] = None,
173
195
  undo: typing.Optional[bool] = None,
174
196
  filepath: typing.Union[str, typing.Any] = "",
@@ -176,7 +198,7 @@ def external_operation(
176
198
  ):
177
199
  """Perform external operation on a file or folder
178
200
 
179
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
201
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
180
202
  :type execution_context: typing.Optional[typing.Union[str, int]]
181
203
  :type undo: typing.Optional[bool]
182
204
  :param filepath: File or folder path
@@ -233,14 +255,16 @@ def external_operation(
233
255
  ...
234
256
 
235
257
  def filenum(
236
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
258
+ override_context: typing.Optional[
259
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
260
+ ] = None,
237
261
  execution_context: typing.Optional[typing.Union[str, int]] = None,
238
262
  undo: typing.Optional[bool] = None,
239
263
  increment: typing.Optional[typing.Any] = 1,
240
264
  ):
241
265
  """Increment number in filename
242
266
 
243
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
267
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
244
268
  :type execution_context: typing.Optional[typing.Union[str, int]]
245
269
  :type undo: typing.Optional[bool]
246
270
  :param increment: Increment
@@ -250,14 +274,16 @@ def filenum(
250
274
  ...
251
275
 
252
276
  def filepath_drop(
253
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
277
+ override_context: typing.Optional[
278
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
279
+ ] = None,
254
280
  execution_context: typing.Optional[typing.Union[str, int]] = None,
255
281
  undo: typing.Optional[bool] = None,
256
282
  filepath: typing.Union[str, typing.Any] = "Path",
257
283
  ):
258
284
  """Undocumented, consider contributing.
259
285
 
260
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
286
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
261
287
  :type execution_context: typing.Optional[typing.Union[str, int]]
262
288
  :type undo: typing.Optional[bool]
263
289
  :type filepath: typing.Union[str, typing.Any]
@@ -266,7 +292,9 @@ def filepath_drop(
266
292
  ...
267
293
 
268
294
  def find_missing_files(
269
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
295
+ override_context: typing.Optional[
296
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
297
+ ] = None,
270
298
  execution_context: typing.Optional[typing.Union[str, int]] = None,
271
299
  undo: typing.Optional[bool] = None,
272
300
  find_all: typing.Optional[typing.Union[bool, typing.Any]] = False,
@@ -296,7 +324,7 @@ def find_missing_files(
296
324
  ):
297
325
  """Try to find missing external files
298
326
 
299
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
327
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
300
328
  :type execution_context: typing.Optional[typing.Union[str, int]]
301
329
  :type undo: typing.Optional[bool]
302
330
  :param find_all: Find All, Find all files in the search path (not just missing)
@@ -364,13 +392,15 @@ def find_missing_files(
364
392
  ...
365
393
 
366
394
  def hidedot(
367
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
395
+ override_context: typing.Optional[
396
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
397
+ ] = None,
368
398
  execution_context: typing.Optional[typing.Union[str, int]] = None,
369
399
  undo: typing.Optional[bool] = None,
370
400
  ):
371
401
  """Toggle hide hidden dot files
372
402
 
373
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
403
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
374
404
  :type execution_context: typing.Optional[typing.Union[str, int]]
375
405
  :type undo: typing.Optional[bool]
376
406
  """
@@ -378,13 +408,15 @@ def hidedot(
378
408
  ...
379
409
 
380
410
  def highlight(
381
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
411
+ override_context: typing.Optional[
412
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
413
+ ] = None,
382
414
  execution_context: typing.Optional[typing.Union[str, int]] = None,
383
415
  undo: typing.Optional[bool] = None,
384
416
  ):
385
417
  """Highlight selected file(s)
386
418
 
387
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
419
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
388
420
  :type execution_context: typing.Optional[typing.Union[str, int]]
389
421
  :type undo: typing.Optional[bool]
390
422
  """
@@ -392,13 +424,15 @@ def highlight(
392
424
  ...
393
425
 
394
426
  def make_paths_absolute(
395
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
427
+ override_context: typing.Optional[
428
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
429
+ ] = None,
396
430
  execution_context: typing.Optional[typing.Union[str, int]] = None,
397
431
  undo: typing.Optional[bool] = None,
398
432
  ):
399
433
  """Make all paths to external files absolute
400
434
 
401
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
435
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
402
436
  :type execution_context: typing.Optional[typing.Union[str, int]]
403
437
  :type undo: typing.Optional[bool]
404
438
  """
@@ -406,13 +440,15 @@ def make_paths_absolute(
406
440
  ...
407
441
 
408
442
  def make_paths_relative(
409
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
443
+ override_context: typing.Optional[
444
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
445
+ ] = None,
410
446
  execution_context: typing.Optional[typing.Union[str, int]] = None,
411
447
  undo: typing.Optional[bool] = None,
412
448
  ):
413
449
  """Make all paths to external files relative to current .blend
414
450
 
415
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
451
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
416
452
  :type execution_context: typing.Optional[typing.Union[str, int]]
417
453
  :type undo: typing.Optional[bool]
418
454
  """
@@ -420,13 +456,15 @@ def make_paths_relative(
420
456
  ...
421
457
 
422
458
  def mouse_execute(
423
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
459
+ override_context: typing.Optional[
460
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
461
+ ] = None,
424
462
  execution_context: typing.Optional[typing.Union[str, int]] = None,
425
463
  undo: typing.Optional[bool] = None,
426
464
  ):
427
465
  """Perform the current execute action for the file under the cursor (e.g. open the file)
428
466
 
429
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
467
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
430
468
  :type execution_context: typing.Optional[typing.Union[str, int]]
431
469
  :type undo: typing.Optional[bool]
432
470
  """
@@ -434,13 +472,15 @@ def mouse_execute(
434
472
  ...
435
473
 
436
474
  def next(
437
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
475
+ override_context: typing.Optional[
476
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
477
+ ] = None,
438
478
  execution_context: typing.Optional[typing.Union[str, int]] = None,
439
479
  undo: typing.Optional[bool] = None,
440
480
  ):
441
481
  """Move to next folder
442
482
 
443
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
483
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
444
484
  :type execution_context: typing.Optional[typing.Union[str, int]]
445
485
  :type undo: typing.Optional[bool]
446
486
  """
@@ -448,13 +488,15 @@ def next(
448
488
  ...
449
489
 
450
490
  def pack_all(
451
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
491
+ override_context: typing.Optional[
492
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
493
+ ] = None,
452
494
  execution_context: typing.Optional[typing.Union[str, int]] = None,
453
495
  undo: typing.Optional[bool] = None,
454
496
  ):
455
497
  """Pack all used external files into this .blend
456
498
 
457
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
499
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
458
500
  :type execution_context: typing.Optional[typing.Union[str, int]]
459
501
  :type undo: typing.Optional[bool]
460
502
  """
@@ -462,13 +504,15 @@ def pack_all(
462
504
  ...
463
505
 
464
506
  def pack_libraries(
465
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
507
+ override_context: typing.Optional[
508
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
509
+ ] = None,
466
510
  execution_context: typing.Optional[typing.Union[str, int]] = None,
467
511
  undo: typing.Optional[bool] = None,
468
512
  ):
469
513
  """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
514
 
471
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
515
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
472
516
  :type execution_context: typing.Optional[typing.Union[str, int]]
473
517
  :type undo: typing.Optional[bool]
474
518
  """
@@ -476,13 +520,15 @@ def pack_libraries(
476
520
  ...
477
521
 
478
522
  def parent(
479
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
523
+ override_context: typing.Optional[
524
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
525
+ ] = None,
480
526
  execution_context: typing.Optional[typing.Union[str, int]] = None,
481
527
  undo: typing.Optional[bool] = None,
482
528
  ):
483
529
  """Move to parent directory
484
530
 
485
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
531
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
486
532
  :type execution_context: typing.Optional[typing.Union[str, int]]
487
533
  :type undo: typing.Optional[bool]
488
534
  """
@@ -490,13 +536,15 @@ def parent(
490
536
  ...
491
537
 
492
538
  def previous(
493
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
539
+ override_context: typing.Optional[
540
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
541
+ ] = None,
494
542
  execution_context: typing.Optional[typing.Union[str, int]] = None,
495
543
  undo: typing.Optional[bool] = None,
496
544
  ):
497
545
  """Move to previous folder
498
546
 
499
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
547
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
500
548
  :type execution_context: typing.Optional[typing.Union[str, int]]
501
549
  :type undo: typing.Optional[bool]
502
550
  """
@@ -504,13 +552,15 @@ def previous(
504
552
  ...
505
553
 
506
554
  def refresh(
507
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
555
+ override_context: typing.Optional[
556
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
557
+ ] = None,
508
558
  execution_context: typing.Optional[typing.Union[str, int]] = None,
509
559
  undo: typing.Optional[bool] = None,
510
560
  ):
511
561
  """Refresh the file list
512
562
 
513
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
563
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
514
564
  :type execution_context: typing.Optional[typing.Union[str, int]]
515
565
  :type undo: typing.Optional[bool]
516
566
  """
@@ -518,13 +568,15 @@ def refresh(
518
568
  ...
519
569
 
520
570
  def rename(
521
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
571
+ override_context: typing.Optional[
572
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
573
+ ] = None,
522
574
  execution_context: typing.Optional[typing.Union[str, int]] = None,
523
575
  undo: typing.Optional[bool] = None,
524
576
  ):
525
577
  """Rename file or file directory
526
578
 
527
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
579
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
528
580
  :type execution_context: typing.Optional[typing.Union[str, int]]
529
581
  :type undo: typing.Optional[bool]
530
582
  """
@@ -532,13 +584,15 @@ def rename(
532
584
  ...
533
585
 
534
586
  def report_missing_files(
535
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
587
+ override_context: typing.Optional[
588
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
589
+ ] = None,
536
590
  execution_context: typing.Optional[typing.Union[str, int]] = None,
537
591
  undo: typing.Optional[bool] = None,
538
592
  ):
539
593
  """Report all missing external files
540
594
 
541
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
595
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
542
596
  :type execution_context: typing.Optional[typing.Union[str, int]]
543
597
  :type undo: typing.Optional[bool]
544
598
  """
@@ -546,13 +600,15 @@ def report_missing_files(
546
600
  ...
547
601
 
548
602
  def reset_recent(
549
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
603
+ override_context: typing.Optional[
604
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
605
+ ] = None,
550
606
  execution_context: typing.Optional[typing.Union[str, int]] = None,
551
607
  undo: typing.Optional[bool] = None,
552
608
  ):
553
609
  """Reset recent files
554
610
 
555
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
611
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
556
612
  :type execution_context: typing.Optional[typing.Union[str, int]]
557
613
  :type undo: typing.Optional[bool]
558
614
  """
@@ -560,7 +616,9 @@ def reset_recent(
560
616
  ...
561
617
 
562
618
  def select(
563
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
619
+ override_context: typing.Optional[
620
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
621
+ ] = None,
564
622
  execution_context: typing.Optional[typing.Union[str, int]] = None,
565
623
  undo: typing.Optional[bool] = None,
566
624
  wait_to_deselect_others: typing.Optional[typing.Union[bool, typing.Any]] = False,
@@ -575,7 +633,7 @@ def select(
575
633
  ):
576
634
  """Handle mouse clicks to select and activate items
577
635
 
578
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
636
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
579
637
  :type execution_context: typing.Optional[typing.Union[str, int]]
580
638
  :type undo: typing.Optional[bool]
581
639
  :param wait_to_deselect_others: Wait to Deselect Others
@@ -601,14 +659,16 @@ def select(
601
659
  ...
602
660
 
603
661
  def select_all(
604
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
662
+ override_context: typing.Optional[
663
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
664
+ ] = None,
605
665
  execution_context: typing.Optional[typing.Union[str, int]] = None,
606
666
  undo: typing.Optional[bool] = None,
607
667
  action: typing.Optional[typing.Any] = "TOGGLE",
608
668
  ):
609
669
  """Select or deselect all files
610
670
 
611
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
671
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
612
672
  :type execution_context: typing.Optional[typing.Union[str, int]]
613
673
  :type undo: typing.Optional[bool]
614
674
  :param action: Action, Selection action to execute
@@ -630,14 +690,16 @@ def select_all(
630
690
  ...
631
691
 
632
692
  def select_bookmark(
633
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
693
+ override_context: typing.Optional[
694
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
695
+ ] = None,
634
696
  execution_context: typing.Optional[typing.Union[str, int]] = None,
635
697
  undo: typing.Optional[bool] = None,
636
698
  dir: typing.Union[str, typing.Any] = "",
637
699
  ):
638
700
  """Select a bookmarked directory
639
701
 
640
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
702
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
641
703
  :type execution_context: typing.Optional[typing.Union[str, int]]
642
704
  :type undo: typing.Optional[bool]
643
705
  :param dir: Directory
@@ -647,7 +709,9 @@ def select_bookmark(
647
709
  ...
648
710
 
649
711
  def select_box(
650
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
712
+ override_context: typing.Optional[
713
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
714
+ ] = None,
651
715
  execution_context: typing.Optional[typing.Union[str, int]] = None,
652
716
  undo: typing.Optional[bool] = None,
653
717
  xmin: typing.Optional[typing.Any] = 0,
@@ -659,7 +723,7 @@ def select_box(
659
723
  ):
660
724
  """Activate/select the file(s) contained in the border
661
725
 
662
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
726
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
663
727
  :type execution_context: typing.Optional[typing.Union[str, int]]
664
728
  :type undo: typing.Optional[bool]
665
729
  :param xmin: X Min
@@ -688,7 +752,9 @@ def select_box(
688
752
  ...
689
753
 
690
754
  def select_walk(
691
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
755
+ override_context: typing.Optional[
756
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
757
+ ] = None,
692
758
  execution_context: typing.Optional[typing.Union[str, int]] = None,
693
759
  undo: typing.Optional[bool] = None,
694
760
  direction: typing.Optional[typing.Any] = "UP",
@@ -697,7 +763,7 @@ def select_walk(
697
763
  ):
698
764
  """Select/Deselect files by walking through them
699
765
 
700
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
766
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
701
767
  :type execution_context: typing.Optional[typing.Union[str, int]]
702
768
  :type undo: typing.Optional[bool]
703
769
  :param direction: Walk Direction, Select/Deselect element in this direction
@@ -711,13 +777,15 @@ def select_walk(
711
777
  ...
712
778
 
713
779
  def smoothscroll(
714
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
780
+ override_context: typing.Optional[
781
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
782
+ ] = None,
715
783
  execution_context: typing.Optional[typing.Union[str, int]] = None,
716
784
  undo: typing.Optional[bool] = None,
717
785
  ):
718
786
  """Smooth scroll to make editable file visible
719
787
 
720
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
788
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
721
789
  :type execution_context: typing.Optional[typing.Union[str, int]]
722
790
  :type undo: typing.Optional[bool]
723
791
  """
@@ -725,13 +793,15 @@ def smoothscroll(
725
793
  ...
726
794
 
727
795
  def sort_column_ui_context(
728
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
796
+ override_context: typing.Optional[
797
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
798
+ ] = None,
729
799
  execution_context: typing.Optional[typing.Union[str, int]] = None,
730
800
  undo: typing.Optional[bool] = None,
731
801
  ):
732
802
  """Change sorting to use column under cursor
733
803
 
734
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
804
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
735
805
  :type execution_context: typing.Optional[typing.Union[str, int]]
736
806
  :type undo: typing.Optional[bool]
737
807
  """
@@ -739,13 +809,15 @@ def sort_column_ui_context(
739
809
  ...
740
810
 
741
811
  def start_filter(
742
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
812
+ override_context: typing.Optional[
813
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
814
+ ] = None,
743
815
  execution_context: typing.Optional[typing.Union[str, int]] = None,
744
816
  undo: typing.Optional[bool] = None,
745
817
  ):
746
818
  """Start entering filter text
747
819
 
748
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
820
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
749
821
  :type execution_context: typing.Optional[typing.Union[str, int]]
750
822
  :type undo: typing.Optional[bool]
751
823
  """
@@ -753,14 +825,16 @@ def start_filter(
753
825
  ...
754
826
 
755
827
  def unpack_all(
756
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
828
+ override_context: typing.Optional[
829
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
830
+ ] = None,
757
831
  execution_context: typing.Optional[typing.Union[str, int]] = None,
758
832
  undo: typing.Optional[bool] = None,
759
833
  method: typing.Optional[typing.Any] = "USE_LOCAL",
760
834
  ):
761
835
  """Unpack all files packed into this .blend to external ones
762
836
 
763
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
837
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
764
838
  :type execution_context: typing.Optional[typing.Union[str, int]]
765
839
  :type undo: typing.Optional[bool]
766
840
  :param method: Method, How to unpack
@@ -770,7 +844,9 @@ def unpack_all(
770
844
  ...
771
845
 
772
846
  def unpack_item(
773
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
847
+ override_context: typing.Optional[
848
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
849
+ ] = None,
774
850
  execution_context: typing.Optional[typing.Union[str, int]] = None,
775
851
  undo: typing.Optional[bool] = None,
776
852
  method: typing.Optional[typing.Any] = "USE_LOCAL",
@@ -779,7 +855,7 @@ def unpack_item(
779
855
  ):
780
856
  """Unpack this file to an external file
781
857
 
782
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
858
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
783
859
  :type execution_context: typing.Optional[typing.Union[str, int]]
784
860
  :type undo: typing.Optional[bool]
785
861
  :param method: Method, How to unpack
@@ -793,13 +869,15 @@ def unpack_item(
793
869
  ...
794
870
 
795
871
  def unpack_libraries(
796
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
872
+ override_context: typing.Optional[
873
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
874
+ ] = None,
797
875
  execution_context: typing.Optional[typing.Union[str, int]] = None,
798
876
  undo: typing.Optional[bool] = None,
799
877
  ):
800
878
  """Restore all packed linked data-blocks to their original locations
801
879
 
802
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
880
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
803
881
  :type execution_context: typing.Optional[typing.Union[str, int]]
804
882
  :type undo: typing.Optional[bool]
805
883
  """
@@ -807,13 +885,15 @@ def unpack_libraries(
807
885
  ...
808
886
 
809
887
  def view_selected(
810
- override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
888
+ override_context: typing.Optional[
889
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
890
+ ] = None,
811
891
  execution_context: typing.Optional[typing.Union[str, int]] = None,
812
892
  undo: typing.Optional[bool] = None,
813
893
  ):
814
894
  """Scroll the selected files into view
815
895
 
816
- :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
896
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
817
897
  :type execution_context: typing.Optional[typing.Union[str, int]]
818
898
  :type undo: typing.Optional[bool]
819
899
  """