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