fake-bpy-module 20241207__py3-none-any.whl → 20241209__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 (115) hide show
  1. addon_utils/__init__.pyi +2 -1
  2. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +5 -2
  3. bl_console_utils/autocomplete/complete_import/__init__.pyi +6 -3
  4. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +2 -1
  5. bl_console_utils/autocomplete/intellisense/__init__.pyi +8 -2
  6. blf/__init__.pyi +2 -1
  7. bmesh/ops/__init__.pyi +110 -53
  8. bmesh/types/__init__.pyi +18 -10
  9. bmesh/utils/__init__.pyi +14 -4
  10. bpy/app/icons/__init__.pyi +4 -1
  11. bpy/app/translations/__init__.pyi +4 -1
  12. bpy/msgbus/__init__.pyi +8 -5
  13. bpy/ops/action/__init__.pyi +38 -138
  14. bpy/ops/anim/__init__.pyi +61 -179
  15. bpy/ops/armature/__init__.pyi +48 -147
  16. bpy/ops/asset/__init__.pyi +16 -71
  17. bpy/ops/boid/__init__.pyi +8 -41
  18. bpy/ops/brush/__init__.pyi +13 -39
  19. bpy/ops/buttons/__init__.pyi +6 -29
  20. bpy/ops/cachefile/__init__.pyi +5 -19
  21. bpy/ops/camera/__init__.pyi +2 -5
  22. bpy/ops/clip/__init__.pyi +92 -290
  23. bpy/ops/cloth/__init__.pyi +1 -3
  24. bpy/ops/collection/__init__.pyi +9 -25
  25. bpy/ops/console/__init__.pyi +21 -79
  26. bpy/ops/constraint/__init__.pyi +18 -45
  27. bpy/ops/curve/__init__.pyi +51 -180
  28. bpy/ops/curves/__init__.pyi +28 -100
  29. bpy/ops/cycles/__init__.pyi +3 -9
  30. bpy/ops/dpaint/__init__.pyi +5 -19
  31. bpy/ops/ed/__init__.pyi +12 -53
  32. bpy/ops/export_anim/__init__.pyi +1 -3
  33. bpy/ops/export_scene/__init__.pyi +2 -5
  34. bpy/ops/extensions/__init__.pyi +34 -110
  35. bpy/ops/file/__init__.pyi +40 -167
  36. bpy/ops/fluid/__init__.pyi +14 -77
  37. bpy/ops/font/__init__.pyi +23 -85
  38. bpy/ops/geometry/__init__.pyi +10 -27
  39. bpy/ops/gizmogroup/__init__.pyi +2 -9
  40. bpy/ops/gpencil/__init__.pyi +8 -32
  41. bpy/ops/graph/__init__.pyi +65 -184
  42. bpy/ops/grease_pencil/__init__.pyi +108 -290
  43. bpy/ops/image/__init__.pyi +49 -154
  44. bpy/ops/import_anim/__init__.pyi +1 -3
  45. bpy/ops/import_curve/__init__.pyi +1 -3
  46. bpy/ops/import_scene/__init__.pyi +2 -4
  47. bpy/ops/info/__init__.pyi +7 -29
  48. bpy/ops/lattice/__init__.pyi +8 -29
  49. bpy/ops/marker/__init__.pyi +11 -31
  50. bpy/ops/mask/__init__.pyi +39 -132
  51. bpy/ops/material/__init__.pyi +3 -19
  52. bpy/ops/mball/__init__.pyi +8 -19
  53. bpy/ops/mesh/__init__.pyi +164 -401
  54. bpy/ops/nla/__init__.pyi +39 -147
  55. bpy/ops/node/__init__.pyi +115 -390
  56. bpy/ops/object/__init__.pyi +237 -630
  57. bpy/ops/outliner/__init__.pyi +71 -263
  58. bpy/ops/paint/__init__.pyi +54 -140
  59. bpy/ops/paintcurve/__init__.pyi +8 -33
  60. bpy/ops/palette/__init__.pyi +7 -27
  61. bpy/ops/particle/__init__.pyi +36 -134
  62. bpy/ops/pose/__init__.pyi +51 -169
  63. bpy/ops/poselib/__init__.pyi +9 -33
  64. bpy/ops/preferences/__init__.pyi +35 -94
  65. bpy/ops/ptcache/__init__.pyi +7 -33
  66. bpy/ops/render/__init__.pyi +13 -37
  67. bpy/ops/rigidbody/__init__.pyi +13 -45
  68. bpy/ops/scene/__init__.pyi +37 -121
  69. bpy/ops/screen/__init__.pyi +39 -137
  70. bpy/ops/script/__init__.pyi +3 -11
  71. bpy/ops/sculpt/__init__.pyi +37 -94
  72. bpy/ops/sculpt_curves/__init__.pyi +4 -10
  73. bpy/ops/sequencer/__init__.pyi +89 -284
  74. bpy/ops/sound/__init__.pyi +7 -23
  75. bpy/ops/spreadsheet/__init__.pyi +4 -15
  76. bpy/ops/surface/__init__.pyi +6 -13
  77. bpy/ops/text/__init__.pyi +43 -175
  78. bpy/ops/text_editor/__init__.pyi +1 -3
  79. bpy/ops/texture/__init__.pyi +4 -21
  80. bpy/ops/transform/__init__.pyi +27 -61
  81. bpy/ops/ui/__init__.pyi +34 -117
  82. bpy/ops/uilist/__init__.pyi +3 -7
  83. bpy/ops/uv/__init__.pyi +49 -134
  84. bpy/ops/view2d/__init__.pyi +14 -39
  85. bpy/ops/view3d/__init__.pyi +67 -232
  86. bpy/ops/wm/__init__.pyi +114 -298
  87. bpy/ops/workspace/__init__.pyi +7 -33
  88. bpy/ops/world/__init__.pyi +2 -11
  89. bpy/path/__init__.pyi +4 -2
  90. bpy/types/__init__.pyi +68 -32
  91. bpy/utils/__init__.pyi +18 -9
  92. bpy_extras/bmesh_utils/__init__.pyi +2 -1
  93. bpy_extras/io_utils/__init__.pyi +7 -2
  94. bpy_extras/mesh_utils/__init__.pyi +19 -7
  95. bpy_extras/view3d_utils/__init__.pyi +2 -2
  96. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
  97. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +115 -115
  98. freestyle/functions/__init__.pyi +16 -4
  99. freestyle/types/__init__.pyi +60 -23
  100. freestyle/utils/ContextFunctions/__init__.pyi +2 -2
  101. gpu/capabilities/__init__.pyi +2 -1
  102. gpu/state/__init__.pyi +2 -2
  103. gpu/types/__init__.pyi +2 -2
  104. gpu_extras/batch/__init__.pyi +6 -3
  105. idprop/types/__init__.pyi +4 -3
  106. imbuf/__init__.pyi +2 -1
  107. imbuf/types/__init__.pyi +5 -2
  108. mathutils/__init__.pyi +25 -14
  109. mathutils/bvhtree/__init__.pyi +8 -7
  110. mathutils/geometry/__init__.pyi +38 -17
  111. mathutils/interpolate/__init__.pyi +2 -1
  112. mathutils/kdtree/__init__.pyi +11 -6
  113. mathutils/noise/__init__.pyi +2 -1
  114. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
  115. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
bpy/ops/ui/__init__.pyi CHANGED
@@ -1,31 +1,26 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bpy.types
5
4
  import mathutils
6
5
 
7
6
  def assign_default_button(
8
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
9
- execution_context: int | str | None = None,
10
- undo: bool | None = None,
7
+ execution_context: int | str | None = None, undo: bool | None = None
11
8
  ):
12
9
  """Set this property's current value as the new default
13
10
 
14
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
15
11
  :type execution_context: int | str | None
16
12
  :type undo: bool | None
17
13
  """
18
14
 
19
15
  def button_execute(
20
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
21
16
  execution_context: int | str | None = None,
22
17
  undo: bool | None = None,
18
+ /,
23
19
  *,
24
20
  skip_depressed: bool | None = False,
25
21
  ):
26
22
  """Presses active button
27
23
 
28
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
29
24
  :type execution_context: int | str | None
30
25
  :type undo: bool | None
31
26
  :param skip_depressed: Skip Depressed
@@ -33,39 +28,32 @@ def button_execute(
33
28
  """
34
29
 
35
30
  def button_string_clear(
36
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
37
- execution_context: int | str | None = None,
38
- undo: bool | None = None,
31
+ execution_context: int | str | None = None, undo: bool | None = None
39
32
  ):
40
33
  """Unsets the text of the active button
41
34
 
42
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
43
35
  :type execution_context: int | str | None
44
36
  :type undo: bool | None
45
37
  """
46
38
 
47
39
  def copy_as_driver_button(
48
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
49
- execution_context: int | str | None = None,
50
- undo: bool | None = None,
40
+ execution_context: int | str | None = None, undo: bool | None = None
51
41
  ):
52
42
  """Create a new driver with this property as input, and copy it to the internal clipboard. Use Paste Driver to add it to the target property, or Paste Driver Variables to extend an existing driver
53
43
 
54
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
55
44
  :type execution_context: int | str | None
56
45
  :type undo: bool | None
57
46
  """
58
47
 
59
48
  def copy_data_path_button(
60
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
61
49
  execution_context: int | str | None = None,
62
50
  undo: bool | None = None,
51
+ /,
63
52
  *,
64
53
  full_path: bool | None = False,
65
54
  ):
66
55
  """Copy the RNA data path for this property to the clipboard
67
56
 
68
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
69
57
  :type execution_context: int | str | None
70
58
  :type undo: bool | None
71
59
  :param full_path: full_path, Copy full data path
@@ -73,15 +61,14 @@ def copy_data_path_button(
73
61
  """
74
62
 
75
63
  def copy_driver_to_selected_button(
76
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
77
64
  execution_context: int | str | None = None,
78
65
  undo: bool | None = None,
66
+ /,
79
67
  *,
80
68
  all: bool | None = False,
81
69
  ):
82
70
  """Copy the property's driver from the active item to the same property of all selected items, if the same property exists
83
71
 
84
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
85
72
  :type execution_context: int | str | None
86
73
  :type undo: bool | None
87
74
  :param all: All, Copy to selected the drivers of all elements of the array
@@ -89,27 +76,23 @@ def copy_driver_to_selected_button(
89
76
  """
90
77
 
91
78
  def copy_python_command_button(
92
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
93
- execution_context: int | str | None = None,
94
- undo: bool | None = None,
79
+ execution_context: int | str | None = None, undo: bool | None = None
95
80
  ):
96
81
  """Copy the Python command matching this button
97
82
 
98
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
99
83
  :type execution_context: int | str | None
100
84
  :type undo: bool | None
101
85
  """
102
86
 
103
87
  def copy_to_selected_button(
104
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
105
88
  execution_context: int | str | None = None,
106
89
  undo: bool | None = None,
90
+ /,
107
91
  *,
108
92
  all: bool | None = True,
109
93
  ):
110
94
  """Copy the property's value from the active item to the same property of all selected items if the same property exists
111
95
 
112
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
113
96
  :type execution_context: int | str | None
114
97
  :type undo: bool | None
115
98
  :param all: All, Copy to selected all elements of the array
@@ -117,16 +100,15 @@ def copy_to_selected_button(
117
100
  """
118
101
 
119
102
  def drop_color(
120
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
121
103
  execution_context: int | str | None = None,
122
104
  undo: bool | None = None,
105
+ /,
123
106
  *,
124
107
  color: collections.abc.Sequence[float] | mathutils.Color | None = (0.0, 0.0, 0.0),
125
108
  gamma: bool | None = False,
126
109
  ):
127
110
  """Drop colors to buttons
128
111
 
129
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
130
112
  :type execution_context: int | str | None
131
113
  :type undo: bool | None
132
114
  :param color: Color, Source color
@@ -136,15 +118,14 @@ def drop_color(
136
118
  """
137
119
 
138
120
  def drop_material(
139
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
140
121
  execution_context: int | str | None = None,
141
122
  undo: bool | None = None,
123
+ /,
142
124
  *,
143
125
  session_uid: int | None = 0,
144
126
  ):
145
127
  """Drag material to Material slots in Properties
146
128
 
147
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
148
129
  :type execution_context: int | str | None
149
130
  :type undo: bool | None
150
131
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
@@ -152,55 +133,45 @@ def drop_material(
152
133
  """
153
134
 
154
135
  def drop_name(
155
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
156
136
  execution_context: int | str | None = None,
157
137
  undo: bool | None = None,
138
+ /,
158
139
  *,
159
140
  string: str = "",
160
141
  ):
161
142
  """Drop name to button
162
143
 
163
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
164
144
  :type execution_context: int | str | None
165
145
  :type undo: bool | None
166
146
  :param string: String, The string value to drop into the button
167
147
  :type string: str
168
148
  """
169
149
 
170
- def editsource(
171
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
172
- execution_context: int | str | None = None,
173
- undo: bool | None = None,
174
- ):
150
+ def editsource(execution_context: int | str | None = None, undo: bool | None = None):
175
151
  """Edit UI source code of the active button
176
152
 
177
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
178
153
  :type execution_context: int | str | None
179
154
  :type undo: bool | None
180
155
  """
181
156
 
182
157
  def eyedropper_bone(
183
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
184
- execution_context: int | str | None = None,
185
- undo: bool | None = None,
158
+ execution_context: int | str | None = None, undo: bool | None = None
186
159
  ):
187
160
  """Sample a bone from the 3D View or the Outliner to store in a property
188
161
 
189
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
190
162
  :type execution_context: int | str | None
191
163
  :type undo: bool | None
192
164
  """
193
165
 
194
166
  def eyedropper_color(
195
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
196
167
  execution_context: int | str | None = None,
197
168
  undo: bool | None = None,
169
+ /,
198
170
  *,
199
171
  prop_data_path: str = "",
200
172
  ):
201
173
  """Sample a color from the Blender window to store in a property
202
174
 
203
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
204
175
  :type execution_context: int | str | None
205
176
  :type undo: bool | None
206
177
  :param prop_data_path: Data Path, Path of property to be set with the depth
@@ -208,39 +179,32 @@ def eyedropper_color(
208
179
  """
209
180
 
210
181
  def eyedropper_colorramp(
211
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
212
- execution_context: int | str | None = None,
213
- undo: bool | None = None,
182
+ execution_context: int | str | None = None, undo: bool | None = None
214
183
  ):
215
184
  """Sample a color band
216
185
 
217
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
218
186
  :type execution_context: int | str | None
219
187
  :type undo: bool | None
220
188
  """
221
189
 
222
190
  def eyedropper_colorramp_point(
223
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
224
- execution_context: int | str | None = None,
225
- undo: bool | None = None,
191
+ execution_context: int | str | None = None, undo: bool | None = None
226
192
  ):
227
193
  """Point-sample a color band
228
194
 
229
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
230
195
  :type execution_context: int | str | None
231
196
  :type undo: bool | None
232
197
  """
233
198
 
234
199
  def eyedropper_depth(
235
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
236
200
  execution_context: int | str | None = None,
237
201
  undo: bool | None = None,
202
+ /,
238
203
  *,
239
204
  prop_data_path: str = "",
240
205
  ):
241
206
  """Sample depth from the 3D view
242
207
 
243
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
244
208
  :type execution_context: int | str | None
245
209
  :type undo: bool | None
246
210
  :param prop_data_path: Data Path, Path of property to be set with the depth
@@ -248,9 +212,9 @@ def eyedropper_depth(
248
212
  """
249
213
 
250
214
  def eyedropper_driver(
251
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
252
215
  execution_context: int | str | None = None,
253
216
  undo: bool | None = None,
217
+ /,
254
218
  *,
255
219
  mapping_type: typing.Literal[
256
220
  "SINGLE_MANY", "DIRECT", "MATCH", "NONE_ALL", "NONE_SINGLE"
@@ -259,7 +223,6 @@ def eyedropper_driver(
259
223
  ):
260
224
  """Pick a property to use as a driver target
261
225
 
262
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
263
226
  :type execution_context: int | str | None
264
227
  :type undo: bool | None
265
228
  :param mapping_type: Mapping Type, Method used to match target and driven properties
@@ -282,16 +245,15 @@ def eyedropper_driver(
282
245
  """
283
246
 
284
247
  def eyedropper_grease_pencil_color(
285
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
286
248
  execution_context: int | str | None = None,
287
249
  undo: bool | None = None,
250
+ /,
288
251
  *,
289
252
  mode: typing.Literal["MATERIAL", "PALETTE", "BRUSH"] | None = "MATERIAL",
290
253
  material_mode: typing.Literal["STROKE", "FILL", "BOTH"] | None = "STROKE",
291
254
  ):
292
255
  """Sample a color from the Blender Window and create Grease Pencil material
293
256
 
294
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
295
257
  :type execution_context: int | str | None
296
258
  :type undo: bool | None
297
259
  :param mode: Mode
@@ -300,88 +262,67 @@ def eyedropper_grease_pencil_color(
300
262
  :type material_mode: typing.Literal['STROKE','FILL','BOTH'] | None
301
263
  """
302
264
 
303
- def eyedropper_id(
304
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
305
- execution_context: int | str | None = None,
306
- undo: bool | None = None,
307
- ):
265
+ def eyedropper_id(execution_context: int | str | None = None, undo: bool | None = None):
308
266
  """Sample a data-block from the 3D View to store in a property
309
267
 
310
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
311
268
  :type execution_context: int | str | None
312
269
  :type undo: bool | None
313
270
  """
314
271
 
315
272
  def jump_to_target_button(
316
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
317
- execution_context: int | str | None = None,
318
- undo: bool | None = None,
273
+ execution_context: int | str | None = None, undo: bool | None = None
319
274
  ):
320
275
  """Switch to the target object or bone
321
276
 
322
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
323
277
  :type execution_context: int | str | None
324
278
  :type undo: bool | None
325
279
  """
326
280
 
327
281
  def list_start_filter(
328
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
329
- execution_context: int | str | None = None,
330
- undo: bool | None = None,
282
+ execution_context: int | str | None = None, undo: bool | None = None
331
283
  ):
332
284
  """Start entering filter text for the list in focus
333
285
 
334
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
335
286
  :type execution_context: int | str | None
336
287
  :type undo: bool | None
337
288
  """
338
289
 
339
290
  def override_idtemplate_clear(
340
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
341
- execution_context: int | str | None = None,
342
- undo: bool | None = None,
291
+ execution_context: int | str | None = None, undo: bool | None = None
343
292
  ):
344
293
  """Delete the selected local override and relink its usages to the linked data-block if possible, else reset it and mark it as non editable
345
294
 
346
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
347
295
  :type execution_context: int | str | None
348
296
  :type undo: bool | None
349
297
  """
350
298
 
351
299
  def override_idtemplate_make(
352
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
353
- execution_context: int | str | None = None,
354
- undo: bool | None = None,
300
+ execution_context: int | str | None = None, undo: bool | None = None
355
301
  ):
356
302
  """Create a local override of the selected linked data-block, and its hierarchy of dependencies
357
303
 
358
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
359
304
  :type execution_context: int | str | None
360
305
  :type undo: bool | None
361
306
  """
362
307
 
363
308
  def override_idtemplate_reset(
364
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
365
- execution_context: int | str | None = None,
366
- undo: bool | None = None,
309
+ execution_context: int | str | None = None, undo: bool | None = None
367
310
  ):
368
311
  """Reset the selected local override to its linked reference values
369
312
 
370
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
371
313
  :type execution_context: int | str | None
372
314
  :type undo: bool | None
373
315
  """
374
316
 
375
317
  def override_remove_button(
376
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
377
318
  execution_context: int | str | None = None,
378
319
  undo: bool | None = None,
320
+ /,
379
321
  *,
380
322
  all: bool | None = True,
381
323
  ):
382
324
  """Remove an override operation
383
325
 
384
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
385
326
  :type execution_context: int | str | None
386
327
  :type undo: bool | None
387
328
  :param all: All, Reset to default values all elements of the array
@@ -389,16 +330,15 @@ def override_remove_button(
389
330
  """
390
331
 
391
332
  def override_type_set_button(
392
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
393
333
  execution_context: int | str | None = None,
394
334
  undo: bool | None = None,
335
+ /,
395
336
  *,
396
337
  all: bool | None = True,
397
338
  type: typing.Literal["NOOP", "REPLACE", "DIFFERENCE", "FACTOR"] | None = "REPLACE",
398
339
  ):
399
340
  """Create an override operation, or set the type of an existing one
400
341
 
401
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
402
342
  :type execution_context: int | str | None
403
343
  :type undo: bool | None
404
344
  :param all: All, Reset to default values all elements of the array
@@ -420,27 +360,23 @@ def override_type_set_button(
420
360
  """
421
361
 
422
362
  def reloadtranslation(
423
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
424
- execution_context: int | str | None = None,
425
- undo: bool | None = None,
363
+ execution_context: int | str | None = None, undo: bool | None = None
426
364
  ):
427
365
  """Force a full reload of UI translation
428
366
 
429
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
430
367
  :type execution_context: int | str | None
431
368
  :type undo: bool | None
432
369
  """
433
370
 
434
371
  def reset_default_button(
435
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
436
372
  execution_context: int | str | None = None,
437
373
  undo: bool | None = None,
374
+ /,
438
375
  *,
439
376
  all: bool | None = True,
440
377
  ):
441
378
  """Reset this property's value to its default value
442
379
 
443
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
444
380
  :type execution_context: int | str | None
445
381
  :type undo: bool | None
446
382
  :param all: All, Reset to default values all elements of the array
@@ -448,61 +384,42 @@ def reset_default_button(
448
384
  """
449
385
 
450
386
  def unset_property_button(
451
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
452
- execution_context: int | str | None = None,
453
- undo: bool | None = None,
387
+ execution_context: int | str | None = None, undo: bool | None = None
454
388
  ):
455
389
  """Clear the property and use default or generated value in operators
456
390
 
457
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
458
391
  :type execution_context: int | str | None
459
392
  :type undo: bool | None
460
393
  """
461
394
 
462
- def view_drop(
463
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
464
- execution_context: int | str | None = None,
465
- undo: bool | None = None,
466
- ):
395
+ def view_drop(execution_context: int | str | None = None, undo: bool | None = None):
467
396
  """Drag and drop onto a data-set or item within the data-set
468
397
 
469
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
470
398
  :type execution_context: int | str | None
471
399
  :type undo: bool | None
472
400
  """
473
401
 
474
402
  def view_item_rename(
475
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
476
- execution_context: int | str | None = None,
477
- undo: bool | None = None,
403
+ execution_context: int | str | None = None, undo: bool | None = None
478
404
  ):
479
405
  """Rename the active item in the data-set view
480
406
 
481
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
482
407
  :type execution_context: int | str | None
483
408
  :type undo: bool | None
484
409
  """
485
410
 
486
- def view_scroll(
487
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
488
- execution_context: int | str | None = None,
489
- undo: bool | None = None,
490
- ):
411
+ def view_scroll(execution_context: int | str | None = None, undo: bool | None = None):
491
412
  """Undocumented, consider contributing.
492
413
 
493
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
494
414
  :type execution_context: int | str | None
495
415
  :type undo: bool | None
496
416
  """
497
417
 
498
418
  def view_start_filter(
499
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
500
- execution_context: int | str | None = None,
501
- undo: bool | None = None,
419
+ execution_context: int | str | None = None, undo: bool | None = None
502
420
  ):
503
421
  """Start entering filter text for the data-set in focus
504
422
 
505
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
506
423
  :type execution_context: int | str | None
507
424
  :type undo: bool | None
508
425
  """
@@ -1,19 +1,17 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bpy.types
5
4
 
6
5
  def entry_add(
7
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
8
6
  execution_context: int | str | None = None,
9
7
  undo: bool | None = None,
8
+ /,
10
9
  *,
11
10
  list_path: str = "",
12
11
  active_index_path: str = "",
13
12
  ):
14
13
  """Add an entry to the list after the current active item
15
14
 
16
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
17
15
  :type execution_context: int | str | None
18
16
  :type undo: bool | None
19
17
  :param list_path: list_path
@@ -23,9 +21,9 @@ def entry_add(
23
21
  """
24
22
 
25
23
  def entry_move(
26
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
27
24
  execution_context: int | str | None = None,
28
25
  undo: bool | None = None,
26
+ /,
29
27
  *,
30
28
  list_path: str = "",
31
29
  active_index_path: str = "",
@@ -33,7 +31,6 @@ def entry_move(
33
31
  ):
34
32
  """Move an entry in the list up or down
35
33
 
36
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
37
34
  :type execution_context: int | str | None
38
35
  :type undo: bool | None
39
36
  :param list_path: list_path
@@ -51,16 +48,15 @@ def entry_move(
51
48
  """
52
49
 
53
50
  def entry_remove(
54
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
55
51
  execution_context: int | str | None = None,
56
52
  undo: bool | None = None,
53
+ /,
57
54
  *,
58
55
  list_path: str = "",
59
56
  active_index_path: str = "",
60
57
  ):
61
58
  """Remove the selected entry from the list
62
59
 
63
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
64
60
  :type execution_context: int | str | None
65
61
  :type undo: bool | None
66
62
  :param list_path: list_path