fake-bpy-module 20240708__py3-none-any.whl → 20240711__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 (119) hide show
  1. _bpy_internal/__init__.pyi +1 -0
  2. _bpy_internal/addons/__init__.pyi +7 -0
  3. _bpy_internal/addons/cli/__init__.pyi +8 -0
  4. _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
  5. _bpy_internal/freedesktop/__init__.pyi +1 -1
  6. addon_utils/__init__.pyi +6 -5
  7. bl_app_override/__init__.pyi +2 -1
  8. bl_app_template_utils/__init__.pyi +4 -4
  9. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +1 -1
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +2 -2
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +3 -1
  12. bl_keymap_utils/io/__init__.pyi +4 -2
  13. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +1 -1
  14. bl_keymap_utils/platform_helpers/__init__.pyi +1 -1
  15. bl_operators/__init__.pyi +1 -0
  16. bl_operators/add_mesh_torus/__init__.pyi +1 -1
  17. bl_operators/anim/__init__.pyi +8 -8
  18. bl_operators/assets/__init__.pyi +3 -3
  19. bl_operators/bone_selection_sets/__init__.pyi +2986 -0
  20. bl_operators/clip/__init__.pyi +11 -11
  21. bl_operators/connect_to_output/__init__.pyi +1 -1
  22. bl_operators/console/__init__.pyi +5 -5
  23. bl_operators/constraint/__init__.pyi +4 -4
  24. bl_operators/file/__init__.pyi +3 -3
  25. bl_operators/freestyle/__init__.pyi +4 -4
  26. bl_operators/geometry_nodes/__init__.pyi +4 -4
  27. bl_operators/image/__init__.pyi +4 -4
  28. bl_operators/image_as_planes/__init__.pyi +2 -2
  29. bl_operators/mesh/__init__.pyi +3 -3
  30. bl_operators/node/__init__.pyi +8 -8
  31. bl_operators/object/__init__.pyi +15 -15
  32. bl_operators/object_align/__init__.pyi +1 -1
  33. bl_operators/object_quick_effects/__init__.pyi +4 -4
  34. bl_operators/object_randomize_transform/__init__.pyi +1 -1
  35. bl_operators/presets/__init__.pyi +25 -23
  36. bl_operators/rigidbody/__init__.pyi +3 -3
  37. bl_operators/screen_play_rendered_anim/__init__.pyi +1 -1
  38. bl_operators/sequencer/__init__.pyi +5 -5
  39. bl_operators/spreadsheet/__init__.pyi +1 -1
  40. bl_operators/userpref/__init__.pyi +25 -25
  41. bl_operators/uvcalc_follow_active/__init__.pyi +1 -1
  42. bl_operators/uvcalc_lightmap/__init__.pyi +2 -2
  43. bl_operators/uvcalc_transform/__init__.pyi +2 -2
  44. bl_operators/vertexpaint_dirt/__init__.pyi +1 -1
  45. bl_operators/view3d/__init__.pyi +5 -5
  46. bl_operators/wm/__init__.pyi +46 -42
  47. bl_operators/world/__init__.pyi +1 -1
  48. bl_ui/__init__.pyi +2 -0
  49. bl_ui/anim/__init__.pyi +1 -0
  50. bl_ui/generic_ui_list/__init__.pyi +5 -4
  51. bl_ui/node_add_menu/__init__.pyi +2 -1
  52. bl_ui/node_add_menu_compositor/__init__.pyi +18 -0
  53. bl_ui/node_add_menu_geometry/__init__.pyi +321 -0
  54. bl_ui/node_add_menu_shader/__init__.pyi +10 -0
  55. bl_ui/node_add_menu_texture/__init__.pyi +9 -0
  56. bl_ui/properties_collection/__init__.pyi +1 -0
  57. bl_ui/properties_data_armature/__init__.pyi +1273 -0
  58. bl_ui/properties_data_camera/__init__.pyi +2 -0
  59. bl_ui/properties_data_curves/__init__.pyi +1 -0
  60. bl_ui/properties_data_gpencil/__init__.pyi +2 -0
  61. bl_ui/properties_data_grease_pencil/__init__.pyi +3 -0
  62. bl_ui/properties_data_mesh/__init__.pyi +4 -0
  63. bl_ui/properties_data_modifier/__init__.pyi +8 -1
  64. bl_ui/properties_data_pointcloud/__init__.pyi +1 -0
  65. bl_ui/properties_freestyle/__init__.pyi +1 -0
  66. bl_ui/properties_grease_pencil_common/__init__.pyi +13 -1
  67. bl_ui/properties_mask_common/__init__.pyi +6 -0
  68. bl_ui/properties_material/__init__.pyi +1 -0
  69. bl_ui/properties_material_gpencil/__init__.pyi +2 -0
  70. bl_ui/properties_object/__init__.pyi +1 -0
  71. bl_ui/properties_output/__init__.pyi +3 -0
  72. bl_ui/properties_paint_common/__init__.pyi +48 -17
  73. bl_ui/properties_particle/__init__.pyi +2 -0
  74. bl_ui/properties_physics_cloth/__init__.pyi +1 -0
  75. bl_ui/properties_physics_fluid/__init__.pyi +1 -0
  76. bl_ui/properties_render/__init__.pyi +2 -0
  77. bl_ui/properties_texture/__init__.pyi +1 -0
  78. bl_ui/properties_view_layer/__init__.pyi +1 -0
  79. bl_ui/space_clip/__init__.pyi +31 -0
  80. bl_ui/space_console/__init__.pyi +5 -0
  81. bl_ui/space_dopesheet/__init__.pyi +14 -0
  82. bl_ui/space_filebrowser/__init__.pyi +13 -0
  83. bl_ui/space_graph/__init__.pyi +16 -0
  84. bl_ui/space_image/__init__.pyi +313 -11
  85. bl_ui/space_info/__init__.pyi +5 -0
  86. bl_ui/space_nla/__init__.pyi +13 -0
  87. bl_ui/space_node/__init__.pyi +12 -0
  88. bl_ui/space_outliner/__init__.pyi +12 -0
  89. bl_ui/space_sequencer/__init__.pyi +34 -0
  90. bl_ui/space_text/__init__.pyi +12 -0
  91. bl_ui/space_time/__init__.pyi +4 -0
  92. bl_ui/space_toolsystem_common/__init__.pyi +7 -6
  93. bl_ui/space_toolsystem_toolbar/__init__.pyi +18 -14
  94. bl_ui/space_topbar/__init__.pyi +20 -1
  95. bl_ui/space_userpref/__init__.pyi +8 -0
  96. bl_ui/space_view3d/__init__.pyi +3477 -1372
  97. bl_ui/space_view3d_toolbar/__init__.pyi +1706 -880
  98. bl_ui/utils/__init__.pyi +1 -0
  99. bl_ui_utils/bug_report_url/__init__.pyi +1 -1
  100. bpy/ops/brush/__init__.pyi +185 -11
  101. bpy/ops/extensions/__init__.pyi +15 -1
  102. bpy/ops/gpencil/__init__.pyi +0 -28
  103. bpy/ops/paint/__init__.pyi +0 -48
  104. bpy/ops/pose/__init__.pyi +176 -0
  105. bpy/ops/wm/__init__.pyi +18 -0
  106. bpy/path/__init__.pyi +6 -6
  107. bpy/types/__init__.pyi +30763 -28505
  108. bpy/utils/__init__.pyi +14 -12
  109. bpy_extras/anim_utils/__init__.pyi +3 -3
  110. bpy_extras/view3d_utils/__init__.pyi +2 -0
  111. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240711.dist-info}/METADATA +1 -1
  112. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240711.dist-info}/RECORD +119 -116
  113. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240711.dist-info}/WHEEL +1 -1
  114. freestyle/utils/__init__.pyi +1 -1
  115. mathutils/__init__.pyi +1687 -679
  116. rna_info/__init__.pyi +1 -0
  117. rna_prop_ui/__init__.pyi +2 -1
  118. rna_xml/__init__.pyi +2 -2
  119. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240711.dist-info}/top_level.txt +0 -0
@@ -66,7 +66,7 @@ class BrushButtonsPanel(bl_ui.properties_paint_common.UnifiedPaintPanel):
66
66
  """
67
67
  ...
68
68
 
69
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
69
+ def prop_unified_color(self, parent, context, brush, prop_name, *, text=None):
70
70
  """
71
71
 
72
72
  :param parent:
@@ -90,6 +90,238 @@ class BrushButtonsPanel(bl_ui.properties_paint_common.UnifiedPaintPanel):
90
90
  """
91
91
  ...
92
92
 
93
+ class IMAGE_AST_brush_paint(
94
+ bl_ui.properties_paint_common.BrushAssetShelf, ImageAssetShelf
95
+ ):
96
+ bl_activate_operator: typing.Any
97
+ bl_default_preview_size: typing.Any
98
+ bl_options: typing.Any
99
+ bl_rna: typing.Any
100
+ bl_space_type: typing.Any
101
+ id_data: typing.Any
102
+ mode_prop: typing.Any
103
+
104
+ def as_pointer(self) -> int:
105
+ """Returns the memory address which holds a pointer to Blender's internal data
106
+
107
+ :return: int (memory address).
108
+ :rtype: int
109
+ """
110
+ ...
111
+
112
+ def asset_poll(self, asset):
113
+ """
114
+
115
+ :param asset:
116
+ """
117
+ ...
118
+
119
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
120
+ """
121
+
122
+ :return: The RNA type or default when not found.
123
+ :rtype: bpy.types.Struct
124
+ """
125
+ ...
126
+
127
+ def bl_rna_get_subclass_py(self) -> typing.Any:
128
+ """
129
+
130
+ :return: The class or default when not found.
131
+ :rtype: typing.Any
132
+ """
133
+ ...
134
+
135
+ def draw_context_menu(self, context, asset, layout):
136
+ """
137
+
138
+ :param context:
139
+ :param asset:
140
+ :param layout:
141
+ """
142
+ ...
143
+
144
+ def draw_popup_selector(self, layout, context, brush, show_name=True):
145
+ """
146
+
147
+ :param layout:
148
+ :param context:
149
+ :param brush:
150
+ :param show_name:
151
+ """
152
+ ...
153
+
154
+ def driver_add(self) -> bpy.types.FCurve:
155
+ """Adds driver(s) to the given property
156
+
157
+ :return: The driver(s) added.
158
+ :rtype: bpy.types.FCurve
159
+ """
160
+ ...
161
+
162
+ def driver_remove(self) -> bool:
163
+ """Remove driver(s) from the given property
164
+
165
+ :return: Success of driver removal.
166
+ :rtype: bool
167
+ """
168
+ ...
169
+
170
+ def get(self):
171
+ """Returns the value of the custom property assigned to key or default
172
+ when not found (matches Python's dictionary function of the same name).
173
+
174
+ """
175
+ ...
176
+
177
+ def get_active_asset(self): ...
178
+ def get_shelf_name_from_context(self, context):
179
+ """
180
+
181
+ :param context:
182
+ """
183
+ ...
184
+
185
+ def id_properties_clear(self):
186
+ """
187
+
188
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
189
+ """
190
+ ...
191
+
192
+ def id_properties_ensure(self):
193
+ """
194
+
195
+ :return: the parent group for an RNA struct's custom IDProperties.
196
+ """
197
+ ...
198
+
199
+ def id_properties_ui(self):
200
+ """
201
+
202
+ :return: Return an object used to manage an IDProperty's UI data.
203
+ """
204
+ ...
205
+
206
+ def is_property_hidden(self) -> bool:
207
+ """Check if a property is hidden.
208
+
209
+ :return: True when the property is hidden.
210
+ :rtype: bool
211
+ """
212
+ ...
213
+
214
+ def is_property_overridable_library(self) -> bool:
215
+ """Check if a property is overridable.
216
+
217
+ :return: True when the property is overridable.
218
+ :rtype: bool
219
+ """
220
+ ...
221
+
222
+ def is_property_readonly(self) -> bool:
223
+ """Check if a property is readonly.
224
+
225
+ :return: True when the property is readonly (not writable).
226
+ :rtype: bool
227
+ """
228
+ ...
229
+
230
+ def is_property_set(self) -> bool:
231
+ """Check if a property is set, use for testing operator properties.
232
+
233
+ :return: True when the property has been set.
234
+ :rtype: bool
235
+ """
236
+ ...
237
+
238
+ def items(self):
239
+ """Returns the items of this objects custom properties (matches Python's
240
+ dictionary function of the same name).
241
+
242
+ :return: custom property key, value pairs.
243
+ """
244
+ ...
245
+
246
+ def keyframe_delete(self) -> bool:
247
+ """Remove a keyframe from this properties fcurve.
248
+
249
+ :return: Success of keyframe deletion.
250
+ :rtype: bool
251
+ """
252
+ ...
253
+
254
+ def keyframe_insert(self) -> bool:
255
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
256
+
257
+ :return: Success of keyframe insertion.
258
+ :rtype: bool
259
+ """
260
+ ...
261
+
262
+ def keys(self):
263
+ """Returns the keys of this objects custom properties (matches Python's
264
+ dictionary function of the same name).
265
+
266
+ :return: custom property keys.
267
+ """
268
+ ...
269
+
270
+ def path_from_id(self) -> str:
271
+ """Returns the data path from the ID to this object (string).
272
+
273
+ :return: The path from `bpy.types.bpy_struct.id_data`
274
+ to this struct and property (when given).
275
+ :rtype: str
276
+ """
277
+ ...
278
+
279
+ def path_resolve(self):
280
+ """Returns the property from the path, raise an exception when not found."""
281
+ ...
282
+
283
+ def poll(self, context):
284
+ """
285
+
286
+ :param context:
287
+ """
288
+ ...
289
+
290
+ def pop(self):
291
+ """Remove and return the value of the custom property assigned to key or default
292
+ when not found (matches Python's dictionary function of the same name).
293
+
294
+ """
295
+ ...
296
+
297
+ def property_overridable_library_set(self) -> bool:
298
+ """Define a property as overridable or not (only for custom properties!).
299
+
300
+ :return: True when the overridable status of the property was successfully set.
301
+ :rtype: bool
302
+ """
303
+ ...
304
+
305
+ def property_unset(self):
306
+ """Unset a property, will use default value afterward."""
307
+ ...
308
+
309
+ def type_recast(self):
310
+ """Return a new instance, this is needed because types
311
+ such as textures can be changed at runtime.
312
+
313
+ :return: a new instance of this object with the type initialized again.
314
+ """
315
+ ...
316
+
317
+ def values(self):
318
+ """Returns the values of this objects custom properties (matches Python's
319
+ dictionary function of the same name).
320
+
321
+ :return: custom property values.
322
+ """
323
+ ...
324
+
93
325
  class IMAGE_HT_header(bpy_types._GenericUI):
94
326
  bl_rna: typing.Any
95
327
  bl_space_type: typing.Any
@@ -732,6 +964,7 @@ class IMAGE_MT_editor_menus(bpy_types._GenericUI):
732
964
  self,
733
965
  searchpaths: list[str],
734
966
  operator: str,
967
+ *,
735
968
  props_default: dict = None,
736
969
  prop_filepath: str | None = "filepath",
737
970
  filter_ext: collections.abc.Callable | None = None,
@@ -1002,6 +1235,7 @@ class IMAGE_MT_image(bpy_types._GenericUI):
1002
1235
  self,
1003
1236
  searchpaths: list[str],
1004
1237
  operator: str,
1238
+ *,
1005
1239
  props_default: dict = None,
1006
1240
  prop_filepath: str | None = "filepath",
1007
1241
  filter_ext: collections.abc.Callable | None = None,
@@ -1272,6 +1506,7 @@ class IMAGE_MT_image_invert(bpy_types._GenericUI):
1272
1506
  self,
1273
1507
  searchpaths: list[str],
1274
1508
  operator: str,
1509
+ *,
1275
1510
  props_default: dict = None,
1276
1511
  prop_filepath: str | None = "filepath",
1277
1512
  filter_ext: collections.abc.Callable | None = None,
@@ -1542,6 +1777,7 @@ class IMAGE_MT_image_transform(bpy_types._GenericUI):
1542
1777
  self,
1543
1778
  searchpaths: list[str],
1544
1779
  operator: str,
1780
+ *,
1545
1781
  props_default: dict = None,
1546
1782
  prop_filepath: str | None = "filepath",
1547
1783
  filter_ext: collections.abc.Callable | None = None,
@@ -1812,6 +2048,7 @@ class IMAGE_MT_mask_context_menu(bpy_types._GenericUI):
1812
2048
  self,
1813
2049
  searchpaths: list[str],
1814
2050
  operator: str,
2051
+ *,
1815
2052
  props_default: dict = None,
1816
2053
  prop_filepath: str | None = "filepath",
1817
2054
  filter_ext: collections.abc.Callable | None = None,
@@ -2089,6 +2326,7 @@ class IMAGE_MT_pivot_pie(bpy_types._GenericUI):
2089
2326
  self,
2090
2327
  searchpaths: list[str],
2091
2328
  operator: str,
2329
+ *,
2092
2330
  props_default: dict = None,
2093
2331
  prop_filepath: str | None = "filepath",
2094
2332
  filter_ext: collections.abc.Callable | None = None,
@@ -2359,6 +2597,7 @@ class IMAGE_MT_select(bpy_types._GenericUI):
2359
2597
  self,
2360
2598
  searchpaths: list[str],
2361
2599
  operator: str,
2600
+ *,
2362
2601
  props_default: dict = None,
2363
2602
  prop_filepath: str | None = "filepath",
2364
2603
  filter_ext: collections.abc.Callable | None = None,
@@ -2629,6 +2868,7 @@ class IMAGE_MT_select_linked(bpy_types._GenericUI):
2629
2868
  self,
2630
2869
  searchpaths: list[str],
2631
2870
  operator: str,
2871
+ *,
2632
2872
  props_default: dict = None,
2633
2873
  prop_filepath: str | None = "filepath",
2634
2874
  filter_ext: collections.abc.Callable | None = None,
@@ -2899,6 +3139,7 @@ class IMAGE_MT_uvs(bpy_types._GenericUI):
2899
3139
  self,
2900
3140
  searchpaths: list[str],
2901
3141
  operator: str,
3142
+ *,
2902
3143
  props_default: dict = None,
2903
3144
  prop_filepath: str | None = "filepath",
2904
3145
  filter_ext: collections.abc.Callable | None = None,
@@ -3169,6 +3410,7 @@ class IMAGE_MT_uvs_align(bpy_types._GenericUI):
3169
3410
  self,
3170
3411
  searchpaths: list[str],
3171
3412
  operator: str,
3413
+ *,
3172
3414
  props_default: dict = None,
3173
3415
  prop_filepath: str | None = "filepath",
3174
3416
  filter_ext: collections.abc.Callable | None = None,
@@ -3439,6 +3681,7 @@ class IMAGE_MT_uvs_context_menu(bpy_types._GenericUI):
3439
3681
  self,
3440
3682
  searchpaths: list[str],
3441
3683
  operator: str,
3684
+ *,
3442
3685
  props_default: dict = None,
3443
3686
  prop_filepath: str | None = "filepath",
3444
3687
  filter_ext: collections.abc.Callable | None = None,
@@ -3709,6 +3952,7 @@ class IMAGE_MT_uvs_merge(bpy_types._GenericUI):
3709
3952
  self,
3710
3953
  searchpaths: list[str],
3711
3954
  operator: str,
3955
+ *,
3712
3956
  props_default: dict = None,
3713
3957
  prop_filepath: str | None = "filepath",
3714
3958
  filter_ext: collections.abc.Callable | None = None,
@@ -3979,6 +4223,7 @@ class IMAGE_MT_uvs_mirror(bpy_types._GenericUI):
3979
4223
  self,
3980
4224
  searchpaths: list[str],
3981
4225
  operator: str,
4226
+ *,
3982
4227
  props_default: dict = None,
3983
4228
  prop_filepath: str | None = "filepath",
3984
4229
  filter_ext: collections.abc.Callable | None = None,
@@ -4249,6 +4494,7 @@ class IMAGE_MT_uvs_select_mode(bpy_types._GenericUI):
4249
4494
  self,
4250
4495
  searchpaths: list[str],
4251
4496
  operator: str,
4497
+ *,
4252
4498
  props_default: dict = None,
4253
4499
  prop_filepath: str | None = "filepath",
4254
4500
  filter_ext: collections.abc.Callable | None = None,
@@ -4519,6 +4765,7 @@ class IMAGE_MT_uvs_showhide(bpy_types._GenericUI):
4519
4765
  self,
4520
4766
  searchpaths: list[str],
4521
4767
  operator: str,
4768
+ *,
4522
4769
  props_default: dict = None,
4523
4770
  prop_filepath: str | None = "filepath",
4524
4771
  filter_ext: collections.abc.Callable | None = None,
@@ -4789,6 +5036,7 @@ class IMAGE_MT_uvs_snap(bpy_types._GenericUI):
4789
5036
  self,
4790
5037
  searchpaths: list[str],
4791
5038
  operator: str,
5039
+ *,
4792
5040
  props_default: dict = None,
4793
5041
  prop_filepath: str | None = "filepath",
4794
5042
  filter_ext: collections.abc.Callable | None = None,
@@ -5059,6 +5307,7 @@ class IMAGE_MT_uvs_snap_pie(bpy_types._GenericUI):
5059
5307
  self,
5060
5308
  searchpaths: list[str],
5061
5309
  operator: str,
5310
+ *,
5062
5311
  props_default: dict = None,
5063
5312
  prop_filepath: str | None = "filepath",
5064
5313
  filter_ext: collections.abc.Callable | None = None,
@@ -5329,6 +5578,7 @@ class IMAGE_MT_uvs_split(bpy_types._GenericUI):
5329
5578
  self,
5330
5579
  searchpaths: list[str],
5331
5580
  operator: str,
5581
+ *,
5332
5582
  props_default: dict = None,
5333
5583
  prop_filepath: str | None = "filepath",
5334
5584
  filter_ext: collections.abc.Callable | None = None,
@@ -5599,6 +5849,7 @@ class IMAGE_MT_uvs_transform(bpy_types._GenericUI):
5599
5849
  self,
5600
5850
  searchpaths: list[str],
5601
5851
  operator: str,
5852
+ *,
5602
5853
  props_default: dict = None,
5603
5854
  prop_filepath: str | None = "filepath",
5604
5855
  filter_ext: collections.abc.Callable | None = None,
@@ -5869,6 +6120,7 @@ class IMAGE_MT_uvs_unwrap(bpy_types._GenericUI):
5869
6120
  self,
5870
6121
  searchpaths: list[str],
5871
6122
  operator: str,
6123
+ *,
5872
6124
  props_default: dict = None,
5873
6125
  prop_filepath: str | None = "filepath",
5874
6126
  filter_ext: collections.abc.Callable | None = None,
@@ -6139,6 +6391,7 @@ class IMAGE_MT_view(bpy_types._GenericUI):
6139
6391
  self,
6140
6392
  searchpaths: list[str],
6141
6393
  operator: str,
6394
+ *,
6142
6395
  props_default: dict = None,
6143
6396
  prop_filepath: str | None = "filepath",
6144
6397
  filter_ext: collections.abc.Callable | None = None,
@@ -6409,6 +6662,7 @@ class IMAGE_MT_view_pie(bpy_types._GenericUI):
6409
6662
  self,
6410
6663
  searchpaths: list[str],
6411
6664
  operator: str,
6665
+ *,
6412
6666
  props_default: dict = None,
6413
6667
  prop_filepath: str | None = "filepath",
6414
6668
  filter_ext: collections.abc.Callable | None = None,
@@ -6679,6 +6933,7 @@ class IMAGE_MT_view_zoom(bpy_types._GenericUI):
6679
6933
  self,
6680
6934
  searchpaths: list[str],
6681
6935
  operator: str,
6936
+ *,
6682
6937
  props_default: dict = None,
6683
6938
  prop_filepath: str | None = "filepath",
6684
6939
  filter_ext: collections.abc.Callable | None = None,
@@ -10398,7 +10653,7 @@ class IMAGE_PT_paint_clone(
10398
10653
  """
10399
10654
  ...
10400
10655
 
10401
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
10656
+ def prop_unified_color(self, parent, context, brush, prop_name, *, text=None):
10402
10657
  """
10403
10658
 
10404
10659
  :param parent:
@@ -10705,7 +10960,7 @@ class IMAGE_PT_paint_curve(
10705
10960
  """
10706
10961
  ...
10707
10962
 
10708
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
10963
+ def prop_unified_color(self, parent, context, brush, prop_name, *, text=None):
10709
10964
  """
10710
10965
 
10711
10966
  :param parent:
@@ -11006,7 +11261,7 @@ class IMAGE_PT_paint_select(
11006
11261
  """
11007
11262
  ...
11008
11263
 
11009
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
11264
+ def prop_unified_color(self, parent, context, brush, prop_name, *, text=None):
11010
11265
  """
11011
11266
 
11012
11267
  :param parent:
@@ -11310,7 +11565,7 @@ class IMAGE_PT_paint_stroke(
11310
11565
  """
11311
11566
  ...
11312
11567
 
11313
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
11568
+ def prop_unified_color(self, parent, context, brush, prop_name, *, text=None):
11314
11569
  """
11315
11570
 
11316
11571
  :param parent:
@@ -11620,7 +11875,7 @@ class IMAGE_PT_paint_stroke_smooth_stroke(
11620
11875
  """
11621
11876
  ...
11622
11877
 
11623
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
11878
+ def prop_unified_color(self, parent, context, brush, prop_name, *, text=None):
11624
11879
  """
11625
11880
 
11626
11881
  :param parent:
@@ -11923,7 +12178,7 @@ class IMAGE_PT_paint_swatches(
11923
12178
  """
11924
12179
  ...
11925
12180
 
11926
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
12181
+ def prop_unified_color(self, parent, context, brush, prop_name, *, text=None):
11927
12182
  """
11928
12183
 
11929
12184
  :param parent:
@@ -13350,7 +13605,7 @@ class IMAGE_PT_tools_brush_display(
13350
13605
  """
13351
13606
  ...
13352
13607
 
13353
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
13608
+ def prop_unified_color(self, parent, context, brush, prop_name, *, text=None):
13354
13609
  """
13355
13610
 
13356
13611
  :param parent:
@@ -13651,7 +13906,7 @@ class IMAGE_PT_tools_brush_texture(
13651
13906
  """
13652
13907
  ...
13653
13908
 
13654
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
13909
+ def prop_unified_color(self, parent, context, brush, prop_name, *, text=None):
13655
13910
  """
13656
13911
 
13657
13912
  :param parent:
@@ -13951,7 +14206,7 @@ class IMAGE_PT_tools_imagepaint_symmetry(
13951
14206
  """
13952
14207
  ...
13953
14208
 
13954
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
14209
+ def prop_unified_color(self, parent, context, brush, prop_name, *, text=None):
13955
14210
  """
13956
14211
 
13957
14212
  :param parent:
@@ -14255,7 +14510,7 @@ class IMAGE_PT_tools_mask_texture(
14255
14510
  """
14256
14511
  ...
14257
14512
 
14258
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
14513
+ def prop_unified_color(self, parent, context, brush, prop_name, *, text=None):
14259
14514
  """
14260
14515
 
14261
14516
  :param parent:
@@ -16134,6 +16389,53 @@ class IMAGE_UL_udim_tiles(bpy_types._GenericUI):
16134
16389
  """
16135
16390
  ...
16136
16391
 
16392
+ class ImageAssetShelf(bl_ui.properties_paint_common.BrushAssetShelf):
16393
+ bl_activate_operator: typing.Any
16394
+ bl_default_preview_size: typing.Any
16395
+ bl_options: typing.Any
16396
+ bl_space_type: typing.Any
16397
+
16398
+ def asset_poll(self, asset):
16399
+ """
16400
+
16401
+ :param asset:
16402
+ """
16403
+ ...
16404
+
16405
+ def draw_context_menu(self, context, asset, layout):
16406
+ """
16407
+
16408
+ :param context:
16409
+ :param asset:
16410
+ :param layout:
16411
+ """
16412
+ ...
16413
+
16414
+ def draw_popup_selector(self, layout, context, brush, show_name=True):
16415
+ """
16416
+
16417
+ :param layout:
16418
+ :param context:
16419
+ :param brush:
16420
+ :param show_name:
16421
+ """
16422
+ ...
16423
+
16424
+ def get_active_asset(self): ...
16425
+ def get_shelf_name_from_context(self, context):
16426
+ """
16427
+
16428
+ :param context:
16429
+ """
16430
+ ...
16431
+
16432
+ def poll(self, context):
16433
+ """
16434
+
16435
+ :param context:
16436
+ """
16437
+ ...
16438
+
16137
16439
  class ImageScopesPanel:
16138
16440
  def poll(self, context):
16139
16441
  """
@@ -410,6 +410,7 @@ class INFO_MT_area(bpy_types._GenericUI):
410
410
  self,
411
411
  searchpaths: list[str],
412
412
  operator: str,
413
+ *,
413
414
  props_default: dict = None,
414
415
  prop_filepath: str | None = "filepath",
415
416
  filter_ext: collections.abc.Callable | None = None,
@@ -680,6 +681,7 @@ class INFO_MT_context_menu(bpy_types._GenericUI):
680
681
  self,
681
682
  searchpaths: list[str],
682
683
  operator: str,
684
+ *,
683
685
  props_default: dict = None,
684
686
  prop_filepath: str | None = "filepath",
685
687
  filter_ext: collections.abc.Callable | None = None,
@@ -951,6 +953,7 @@ class INFO_MT_editor_menus(bpy_types._GenericUI):
951
953
  self,
952
954
  searchpaths: list[str],
953
955
  operator: str,
956
+ *,
954
957
  props_default: dict = None,
955
958
  prop_filepath: str | None = "filepath",
956
959
  filter_ext: collections.abc.Callable | None = None,
@@ -1221,6 +1224,7 @@ class INFO_MT_info(bpy_types._GenericUI):
1221
1224
  self,
1222
1225
  searchpaths: list[str],
1223
1226
  operator: str,
1227
+ *,
1224
1228
  props_default: dict = None,
1225
1229
  prop_filepath: str | None = "filepath",
1226
1230
  filter_ext: collections.abc.Callable | None = None,
@@ -1491,6 +1495,7 @@ class INFO_MT_view(bpy_types._GenericUI):
1491
1495
  self,
1492
1496
  searchpaths: list[str],
1493
1497
  operator: str,
1498
+ *,
1494
1499
  props_default: dict = None,
1495
1500
  prop_filepath: str | None = "filepath",
1496
1501
  filter_ext: collections.abc.Callable | None = None,
@@ -411,6 +411,7 @@ class NLA_MT_add(bpy_types._GenericUI):
411
411
  self,
412
412
  searchpaths: list[str],
413
413
  operator: str,
414
+ *,
414
415
  props_default: dict = None,
415
416
  prop_filepath: str | None = "filepath",
416
417
  filter_ext: collections.abc.Callable | None = None,
@@ -681,6 +682,7 @@ class NLA_MT_channel_context_menu(bpy_types._GenericUI):
681
682
  self,
682
683
  searchpaths: list[str],
683
684
  operator: str,
685
+ *,
684
686
  props_default: dict = None,
685
687
  prop_filepath: str | None = "filepath",
686
688
  filter_ext: collections.abc.Callable | None = None,
@@ -951,6 +953,7 @@ class NLA_MT_context_menu(bpy_types._GenericUI):
951
953
  self,
952
954
  searchpaths: list[str],
953
955
  operator: str,
956
+ *,
954
957
  props_default: dict = None,
955
958
  prop_filepath: str | None = "filepath",
956
959
  filter_ext: collections.abc.Callable | None = None,
@@ -1222,6 +1225,7 @@ class NLA_MT_editor_menus(bpy_types._GenericUI):
1222
1225
  self,
1223
1226
  searchpaths: list[str],
1224
1227
  operator: str,
1228
+ *,
1225
1229
  props_default: dict = None,
1226
1230
  prop_filepath: str | None = "filepath",
1227
1231
  filter_ext: collections.abc.Callable | None = None,
@@ -1492,6 +1496,7 @@ class NLA_MT_marker(bpy_types._GenericUI):
1492
1496
  self,
1493
1497
  searchpaths: list[str],
1494
1498
  operator: str,
1499
+ *,
1495
1500
  props_default: dict = None,
1496
1501
  prop_filepath: str | None = "filepath",
1497
1502
  filter_ext: collections.abc.Callable | None = None,
@@ -1762,6 +1767,7 @@ class NLA_MT_marker_select(bpy_types._GenericUI):
1762
1767
  self,
1763
1768
  searchpaths: list[str],
1764
1769
  operator: str,
1770
+ *,
1765
1771
  props_default: dict = None,
1766
1772
  prop_filepath: str | None = "filepath",
1767
1773
  filter_ext: collections.abc.Callable | None = None,
@@ -2032,6 +2038,7 @@ class NLA_MT_select(bpy_types._GenericUI):
2032
2038
  self,
2033
2039
  searchpaths: list[str],
2034
2040
  operator: str,
2041
+ *,
2035
2042
  props_default: dict = None,
2036
2043
  prop_filepath: str | None = "filepath",
2037
2044
  filter_ext: collections.abc.Callable | None = None,
@@ -2302,6 +2309,7 @@ class NLA_MT_snap_pie(bpy_types._GenericUI):
2302
2309
  self,
2303
2310
  searchpaths: list[str],
2304
2311
  operator: str,
2312
+ *,
2305
2313
  props_default: dict = None,
2306
2314
  prop_filepath: str | None = "filepath",
2307
2315
  filter_ext: collections.abc.Callable | None = None,
@@ -2572,6 +2580,7 @@ class NLA_MT_strips(bpy_types._GenericUI):
2572
2580
  self,
2573
2581
  searchpaths: list[str],
2574
2582
  operator: str,
2583
+ *,
2575
2584
  props_default: dict = None,
2576
2585
  prop_filepath: str | None = "filepath",
2577
2586
  filter_ext: collections.abc.Callable | None = None,
@@ -2842,6 +2851,7 @@ class NLA_MT_strips_transform(bpy_types._GenericUI):
2842
2851
  self,
2843
2852
  searchpaths: list[str],
2844
2853
  operator: str,
2854
+ *,
2845
2855
  props_default: dict = None,
2846
2856
  prop_filepath: str | None = "filepath",
2847
2857
  filter_ext: collections.abc.Callable | None = None,
@@ -3113,6 +3123,7 @@ class NLA_MT_tracks(bpy_types._GenericUI):
3113
3123
  self,
3114
3124
  searchpaths: list[str],
3115
3125
  operator: str,
3126
+ *,
3116
3127
  props_default: dict = None,
3117
3128
  prop_filepath: str | None = "filepath",
3118
3129
  filter_ext: collections.abc.Callable | None = None,
@@ -3383,6 +3394,7 @@ class NLA_MT_view(bpy_types._GenericUI):
3383
3394
  self,
3384
3395
  searchpaths: list[str],
3385
3396
  operator: str,
3397
+ *,
3386
3398
  props_default: dict = None,
3387
3399
  prop_filepath: str | None = "filepath",
3388
3400
  filter_ext: collections.abc.Callable | None = None,
@@ -3653,6 +3665,7 @@ class NLA_MT_view_pie(bpy_types._GenericUI):
3653
3665
  self,
3654
3666
  searchpaths: list[str],
3655
3667
  operator: str,
3668
+ *,
3656
3669
  props_default: dict = None,
3657
3670
  prop_filepath: str | None = "filepath",
3658
3671
  filter_ext: collections.abc.Callable | None = None,