fake-bpy-module 20240707__py3-none-any.whl → 20240709__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 (118) 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 +49 -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 -13
  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. bmesh/types/__init__.pyi +48 -0
  101. bpy/ops/brush/__init__.pyi +185 -11
  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 +2544 -1063
  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-20240707.dist-info → fake_bpy_module-20240709.dist-info}/METADATA +4 -4
  112. {fake_bpy_module-20240707.dist-info → fake_bpy_module-20240709.dist-info}/RECORD +118 -115
  113. mathutils/__init__.pyi +0 -44
  114. rna_info/__init__.pyi +1 -0
  115. rna_prop_ui/__init__.pyi +2 -1
  116. rna_xml/__init__.pyi +2 -2
  117. {fake_bpy_module-20240707.dist-info → fake_bpy_module-20240709.dist-info}/WHEEL +0 -0
  118. {fake_bpy_module-20240707.dist-info → fake_bpy_module-20240709.dist-info}/top_level.txt +0 -0
@@ -196,6 +196,7 @@ class CAMERA_PT_presets(bl_ui.utils.PresetPanel, bpy_types._GenericUI):
196
196
  self,
197
197
  searchpaths: list[str],
198
198
  operator: str,
199
+ *,
199
200
  props_default: dict = None,
200
201
  prop_filepath: str | None = "filepath",
201
202
  filter_ext: collections.abc.Callable | None = None,
@@ -467,6 +468,7 @@ class CAMERA_PT_safe_areas_presets(bl_ui.utils.PresetPanel, bpy_types._GenericUI
467
468
  self,
468
469
  searchpaths: list[str],
469
470
  operator: str,
471
+ *,
470
472
  props_default: dict = None,
471
473
  prop_filepath: str | None = "filepath",
472
474
  filter_ext: collections.abc.Callable | None = None,
@@ -205,6 +205,7 @@ class CURVES_MT_add_attribute(bpy_types._GenericUI):
205
205
  self,
206
206
  searchpaths: list[str],
207
207
  operator: str,
208
+ *,
208
209
  props_default: dict = None,
209
210
  prop_filepath: str | None = "filepath",
210
211
  filter_ext: collections.abc.Callable | None = None,
@@ -3670,6 +3670,7 @@ class GPENCIL_MT_gpencil_vertex_group(bpy_types._GenericUI):
3670
3670
  self,
3671
3671
  searchpaths: list[str],
3672
3672
  operator: str,
3673
+ *,
3673
3674
  props_default: dict = None,
3674
3675
  prop_filepath: str | None = "filepath",
3675
3676
  filter_ext: collections.abc.Callable | None = None,
@@ -3940,6 +3941,7 @@ class GPENCIL_MT_layer_context_menu(bpy_types._GenericUI):
3940
3941
  self,
3941
3942
  searchpaths: list[str],
3942
3943
  operator: str,
3944
+ *,
3943
3945
  props_default: dict = None,
3944
3946
  prop_filepath: str | None = "filepath",
3945
3947
  filter_ext: collections.abc.Callable | None = None,
@@ -2509,6 +2509,7 @@ class GREASE_PENCIL_MT_grease_pencil_add_layer_extra(bpy_types._GenericUI):
2509
2509
  self,
2510
2510
  searchpaths: list[str],
2511
2511
  operator: str,
2512
+ *,
2512
2513
  props_default: dict = None,
2513
2514
  prop_filepath: str | None = "filepath",
2514
2515
  filter_ext: collections.abc.Callable | None = None,
@@ -2779,6 +2780,7 @@ class GREASE_PENCIL_MT_group_context_menu(bpy_types._GenericUI):
2779
2780
  self,
2780
2781
  searchpaths: list[str],
2781
2782
  operator: str,
2783
+ *,
2782
2784
  props_default: dict = None,
2783
2785
  prop_filepath: str | None = "filepath",
2784
2786
  filter_ext: collections.abc.Callable | None = None,
@@ -3049,6 +3051,7 @@ class GREASE_PENCIL_MT_layer_mask_add(bpy_types._GenericUI):
3049
3051
  self,
3050
3052
  searchpaths: list[str],
3051
3053
  operator: str,
3054
+ *,
3052
3055
  props_default: dict = None,
3053
3056
  prop_filepath: str | None = "filepath",
3054
3057
  filter_ext: collections.abc.Callable | None = None,
@@ -2493,6 +2493,7 @@ class MESH_MT_attribute_context_menu(bpy_types._GenericUI):
2493
2493
  self,
2494
2494
  searchpaths: list[str],
2495
2495
  operator: str,
2496
+ *,
2496
2497
  props_default: dict = None,
2497
2498
  prop_filepath: str | None = "filepath",
2498
2499
  filter_ext: collections.abc.Callable | None = None,
@@ -2763,6 +2764,7 @@ class MESH_MT_color_attribute_context_menu(bpy_types._GenericUI):
2763
2764
  self,
2764
2765
  searchpaths: list[str],
2765
2766
  operator: str,
2767
+ *,
2766
2768
  props_default: dict = None,
2767
2769
  prop_filepath: str | None = "filepath",
2768
2770
  filter_ext: collections.abc.Callable | None = None,
@@ -3033,6 +3035,7 @@ class MESH_MT_shape_key_context_menu(bpy_types._GenericUI):
3033
3035
  self,
3034
3036
  searchpaths: list[str],
3035
3037
  operator: str,
3038
+ *,
3036
3039
  props_default: dict = None,
3037
3040
  prop_filepath: str | None = "filepath",
3038
3041
  filter_ext: collections.abc.Callable | None = None,
@@ -3303,6 +3306,7 @@ class MESH_MT_vertex_group_context_menu(bpy_types._GenericUI):
3303
3306
  self,
3304
3307
  searchpaths: list[str],
3305
3308
  operator: str,
3309
+ *,
3306
3310
  props_default: dict = None,
3307
3311
  prop_filepath: str | None = "filepath",
3308
3312
  filter_ext: collections.abc.Callable | None = None,
@@ -13,7 +13,7 @@ class AddModifierMenu:
13
13
  bl_rna: typing.Any
14
14
  id_data: typing.Any
15
15
 
16
- def as_keywords(self, ignore=()):
16
+ def as_keywords(self, *, ignore=()):
17
17
  """Return a copy of the properties as a dictionary
18
18
 
19
19
  :param ignore:
@@ -890,6 +890,7 @@ class OBJECT_MT_modifier_add(ModifierAddMenu, bpy_types._GenericUI):
890
890
  self,
891
891
  searchpaths: list[str],
892
892
  operator: str,
893
+ *,
893
894
  props_default: dict = None,
894
895
  prop_filepath: str | None = "filepath",
895
896
  filter_ext: collections.abc.Callable | None = None,
@@ -1172,6 +1173,7 @@ class OBJECT_MT_modifier_add_color(ModifierAddMenu, bpy_types._GenericUI):
1172
1173
  self,
1173
1174
  searchpaths: list[str],
1174
1175
  operator: str,
1176
+ *,
1175
1177
  props_default: dict = None,
1176
1178
  prop_filepath: str | None = "filepath",
1177
1179
  filter_ext: collections.abc.Callable | None = None,
@@ -1454,6 +1456,7 @@ class OBJECT_MT_modifier_add_deform(ModifierAddMenu, bpy_types._GenericUI):
1454
1456
  self,
1455
1457
  searchpaths: list[str],
1456
1458
  operator: str,
1459
+ *,
1457
1460
  props_default: dict = None,
1458
1461
  prop_filepath: str | None = "filepath",
1459
1462
  filter_ext: collections.abc.Callable | None = None,
@@ -1736,6 +1739,7 @@ class OBJECT_MT_modifier_add_edit(ModifierAddMenu, bpy_types._GenericUI):
1736
1739
  self,
1737
1740
  searchpaths: list[str],
1738
1741
  operator: str,
1742
+ *,
1739
1743
  props_default: dict = None,
1740
1744
  prop_filepath: str | None = "filepath",
1741
1745
  filter_ext: collections.abc.Callable | None = None,
@@ -2018,6 +2022,7 @@ class OBJECT_MT_modifier_add_generate(ModifierAddMenu, bpy_types._GenericUI):
2018
2022
  self,
2019
2023
  searchpaths: list[str],
2020
2024
  operator: str,
2025
+ *,
2021
2026
  props_default: dict = None,
2022
2027
  prop_filepath: str | None = "filepath",
2023
2028
  filter_ext: collections.abc.Callable | None = None,
@@ -2300,6 +2305,7 @@ class OBJECT_MT_modifier_add_normals(ModifierAddMenu, bpy_types._GenericUI):
2300
2305
  self,
2301
2306
  searchpaths: list[str],
2302
2307
  operator: str,
2308
+ *,
2303
2309
  props_default: dict = None,
2304
2310
  prop_filepath: str | None = "filepath",
2305
2311
  filter_ext: collections.abc.Callable | None = None,
@@ -2582,6 +2588,7 @@ class OBJECT_MT_modifier_add_physics(ModifierAddMenu, bpy_types._GenericUI):
2582
2588
  self,
2583
2589
  searchpaths: list[str],
2584
2590
  operator: str,
2591
+ *,
2585
2592
  props_default: dict = None,
2586
2593
  prop_filepath: str | None = "filepath",
2587
2594
  filter_ext: collections.abc.Callable | None = None,
@@ -907,6 +907,7 @@ class POINTCLOUD_MT_add_attribute(bpy_types._GenericUI):
907
907
  self,
908
908
  searchpaths: list[str],
909
909
  operator: str,
910
+ *,
910
911
  props_default: dict = None,
911
912
  prop_filepath: str | None = "filepath",
912
913
  filter_ext: collections.abc.Callable | None = None,
@@ -433,6 +433,7 @@ class RENDER_MT_lineset_context_menu(bpy_types._GenericUI):
433
433
  self,
434
434
  searchpaths: list[str],
435
435
  operator: str,
436
+ *,
436
437
  props_default: dict = None,
437
438
  prop_filepath: str | None = "filepath",
438
439
  filter_ext: collections.abc.Callable | None = None,
@@ -259,6 +259,7 @@ class GPENCIL_MT_cleanup(bpy_types._GenericUI):
259
259
  self,
260
260
  searchpaths: list[str],
261
261
  operator: str,
262
+ *,
262
263
  props_default: dict = None,
263
264
  prop_filepath: str | None = "filepath",
264
265
  filter_ext: collections.abc.Callable | None = None,
@@ -529,6 +530,7 @@ class GPENCIL_MT_gpencil_draw_delete(bpy_types._GenericUI):
529
530
  self,
530
531
  searchpaths: list[str],
531
532
  operator: str,
533
+ *,
532
534
  props_default: dict = None,
533
535
  prop_filepath: str | None = "filepath",
534
536
  filter_ext: collections.abc.Callable | None = None,
@@ -799,6 +801,7 @@ class GPENCIL_MT_layer_active(bpy_types._GenericUI):
799
801
  self,
800
802
  searchpaths: list[str],
801
803
  operator: str,
804
+ *,
802
805
  props_default: dict = None,
803
806
  prop_filepath: str | None = "filepath",
804
807
  filter_ext: collections.abc.Callable | None = None,
@@ -1069,6 +1072,7 @@ class GPENCIL_MT_layer_mask_menu(bpy_types._GenericUI):
1069
1072
  self,
1070
1073
  searchpaths: list[str],
1071
1074
  operator: str,
1075
+ *,
1072
1076
  props_default: dict = None,
1073
1077
  prop_filepath: str | None = "filepath",
1074
1078
  filter_ext: collections.abc.Callable | None = None,
@@ -1339,6 +1343,7 @@ class GPENCIL_MT_material_active(bpy_types._GenericUI):
1339
1343
  self,
1340
1344
  searchpaths: list[str],
1341
1345
  operator: str,
1346
+ *,
1342
1347
  props_default: dict = None,
1343
1348
  prop_filepath: str | None = "filepath",
1344
1349
  filter_ext: collections.abc.Callable | None = None,
@@ -1616,6 +1621,7 @@ class GPENCIL_MT_move_to_layer(bpy_types._GenericUI):
1616
1621
  self,
1617
1622
  searchpaths: list[str],
1618
1623
  operator: str,
1624
+ *,
1619
1625
  props_default: dict = None,
1620
1626
  prop_filepath: str | None = "filepath",
1621
1627
  filter_ext: collections.abc.Callable | None = None,
@@ -1886,6 +1892,7 @@ class GPENCIL_MT_snap(bpy_types._GenericUI):
1886
1892
  self,
1887
1893
  searchpaths: list[str],
1888
1894
  operator: str,
1895
+ *,
1889
1896
  props_default: dict = None,
1890
1897
  prop_filepath: str | None = "filepath",
1891
1898
  filter_ext: collections.abc.Callable | None = None,
@@ -2156,6 +2163,7 @@ class GPENCIL_MT_snap_pie(bpy_types._GenericUI):
2156
2163
  self,
2157
2164
  searchpaths: list[str],
2158
2165
  operator: str,
2166
+ *,
2159
2167
  props_default: dict = None,
2160
2168
  prop_filepath: str | None = "filepath",
2161
2169
  filter_ext: collections.abc.Callable | None = None,
@@ -3122,6 +3130,7 @@ class GREASE_PENCIL_MT_layer_active(bpy_types._GenericUI):
3122
3130
  self,
3123
3131
  searchpaths: list[str],
3124
3132
  operator: str,
3133
+ *,
3125
3134
  props_default: dict = None,
3126
3135
  prop_filepath: str | None = "filepath",
3127
3136
  filter_ext: collections.abc.Callable | None = None,
@@ -3392,6 +3401,7 @@ class GREASE_PENCIL_MT_move_to_layer(bpy_types._GenericUI):
3392
3401
  self,
3393
3402
  searchpaths: list[str],
3394
3403
  operator: str,
3404
+ *,
3395
3405
  props_default: dict = None,
3396
3406
  prop_filepath: str | None = "filepath",
3397
3407
  filter_ext: collections.abc.Callable | None = None,
@@ -3662,6 +3672,7 @@ class GREASE_PENCIL_MT_snap(bpy_types._GenericUI):
3662
3672
  self,
3663
3673
  searchpaths: list[str],
3664
3674
  operator: str,
3675
+ *,
3665
3676
  props_default: dict = None,
3666
3677
  prop_filepath: str | None = "filepath",
3667
3678
  filter_ext: collections.abc.Callable | None = None,
@@ -3932,6 +3943,7 @@ class GREASE_PENCIL_MT_snap_pie(bpy_types._GenericUI):
3932
3943
  self,
3933
3944
  searchpaths: list[str],
3934
3945
  operator: str,
3946
+ *,
3935
3947
  props_default: dict = None,
3936
3948
  prop_filepath: str | None = "filepath",
3937
3949
  filter_ext: collections.abc.Callable | None = None,
@@ -4060,7 +4072,7 @@ class GreasePencilFlipTintColors:
4060
4072
  bl_rna: typing.Any
4061
4073
  id_data: typing.Any
4062
4074
 
4063
- def as_keywords(self, ignore=()):
4075
+ def as_keywords(self, *, ignore=()):
4064
4076
  """Return a copy of the properties as a dictionary
4065
4077
 
4066
4078
  :param ignore:
@@ -195,6 +195,7 @@ class MASK_MT_add(bpy_types._GenericUI):
195
195
  self,
196
196
  searchpaths: list[str],
197
197
  operator: str,
198
+ *,
198
199
  props_default: dict = None,
199
200
  prop_filepath: str | None = "filepath",
200
201
  filter_ext: collections.abc.Callable | None = None,
@@ -465,6 +466,7 @@ class MASK_MT_animation(bpy_types._GenericUI):
465
466
  self,
466
467
  searchpaths: list[str],
467
468
  operator: str,
469
+ *,
468
470
  props_default: dict = None,
469
471
  prop_filepath: str | None = "filepath",
470
472
  filter_ext: collections.abc.Callable | None = None,
@@ -735,6 +737,7 @@ class MASK_MT_mask(bpy_types._GenericUI):
735
737
  self,
736
738
  searchpaths: list[str],
737
739
  operator: str,
740
+ *,
738
741
  props_default: dict = None,
739
742
  prop_filepath: str | None = "filepath",
740
743
  filter_ext: collections.abc.Callable | None = None,
@@ -1005,6 +1008,7 @@ class MASK_MT_select(bpy_types._GenericUI):
1005
1008
  self,
1006
1009
  searchpaths: list[str],
1007
1010
  operator: str,
1011
+ *,
1008
1012
  props_default: dict = None,
1009
1013
  prop_filepath: str | None = "filepath",
1010
1014
  filter_ext: collections.abc.Callable | None = None,
@@ -1275,6 +1279,7 @@ class MASK_MT_transform(bpy_types._GenericUI):
1275
1279
  self,
1276
1280
  searchpaths: list[str],
1277
1281
  operator: str,
1282
+ *,
1278
1283
  props_default: dict = None,
1279
1284
  prop_filepath: str | None = "filepath",
1280
1285
  filter_ext: collections.abc.Callable | None = None,
@@ -1545,6 +1550,7 @@ class MASK_MT_visibility(bpy_types._GenericUI):
1545
1550
  self,
1546
1551
  searchpaths: list[str],
1547
1552
  operator: str,
1553
+ *,
1548
1554
  props_default: dict = None,
1549
1555
  prop_filepath: str | None = "filepath",
1550
1556
  filter_ext: collections.abc.Callable | None = None,
@@ -2477,6 +2477,7 @@ class MATERIAL_MT_context_menu(bpy_types._GenericUI):
2477
2477
  self,
2478
2478
  searchpaths: list[str],
2479
2479
  operator: str,
2480
+ *,
2480
2481
  props_default: dict = None,
2481
2482
  prop_filepath: str | None = "filepath",
2482
2483
  filter_ext: collections.abc.Callable | None = None,
@@ -196,6 +196,7 @@ class GPENCIL_MT_material_context_menu(bpy_types._GenericUI):
196
196
  self,
197
197
  searchpaths: list[str],
198
198
  operator: str,
199
+ *,
199
200
  props_default: dict = None,
200
201
  prop_filepath: str | None = "filepath",
201
202
  filter_ext: collections.abc.Callable | None = None,
@@ -1183,6 +1184,7 @@ class MATERIAL_PT_gpencil_material_presets(
1183
1184
  self,
1184
1185
  searchpaths: list[str],
1185
1186
  operator: str,
1187
+ *,
1186
1188
  props_default: dict = None,
1187
1189
  prop_filepath: str | None = "filepath",
1188
1190
  filter_ext: collections.abc.Callable | None = None,
@@ -195,6 +195,7 @@ class COLLECTION_MT_context_menu(bpy_types._GenericUI):
195
195
  self,
196
196
  searchpaths: list[str],
197
197
  operator: str,
198
+ *,
198
199
  props_default: dict = None,
199
200
  prop_filepath: str | None = "filepath",
200
201
  filter_ext: collections.abc.Callable | None = None,
@@ -201,6 +201,7 @@ class RENDER_MT_framerate_presets(bpy_types._GenericUI):
201
201
  self,
202
202
  searchpaths: list[str],
203
203
  operator: str,
204
+ *,
204
205
  props_default: dict = None,
205
206
  prop_filepath: str | None = "filepath",
206
207
  filter_ext: collections.abc.Callable | None = None,
@@ -1169,6 +1170,7 @@ class RENDER_PT_ffmpeg_presets(bl_ui.utils.PresetPanel, bpy_types._GenericUI):
1169
1170
  self,
1170
1171
  searchpaths: list[str],
1171
1172
  operator: str,
1173
+ *,
1172
1174
  props_default: dict = None,
1173
1175
  prop_filepath: str | None = "filepath",
1174
1176
  filter_ext: collections.abc.Callable | None = None,
@@ -1681,6 +1683,7 @@ class RENDER_PT_format_presets(bl_ui.utils.PresetPanel, bpy_types._GenericUI):
1681
1683
  self,
1682
1684
  searchpaths: list[str],
1683
1685
  operator: str,
1686
+ *,
1684
1687
  props_default: dict = None,
1685
1688
  prop_filepath: str | None = "filepath",
1686
1689
  filter_ext: collections.abc.Callable | None = None,
@@ -8,6 +8,7 @@ GenericType1 = typing.TypeVar("GenericType1")
8
8
  GenericType2 = typing.TypeVar("GenericType2")
9
9
 
10
10
  class BrushAssetShelf:
11
+ bl_activate_operator: typing.Any
11
12
  bl_default_preview_size: typing.Any
12
13
  bl_options: typing.Any
13
14
 
@@ -18,6 +19,33 @@ class BrushAssetShelf:
18
19
  """
19
20
  ...
20
21
 
22
+ def draw_context_menu(self, context, asset, layout):
23
+ """
24
+
25
+ :param context:
26
+ :param asset:
27
+ :param layout:
28
+ """
29
+ ...
30
+
31
+ def draw_popup_selector(self, layout, context, brush, show_name=True):
32
+ """
33
+
34
+ :param layout:
35
+ :param context:
36
+ :param brush:
37
+ :param show_name:
38
+ """
39
+ ...
40
+
41
+ def get_active_asset(self): ...
42
+ def get_shelf_name_from_context(self, context):
43
+ """
44
+
45
+ :param context:
46
+ """
47
+ ...
48
+
21
49
  def poll(self, context):
22
50
  """
23
51
 
@@ -70,7 +98,7 @@ class UnifiedPaintPanel:
70
98
  """
71
99
  ...
72
100
 
73
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
101
+ def prop_unified_color(self, parent, context, brush, prop_name, *, text=None):
74
102
  """
75
103
 
76
104
  :param parent:
@@ -280,6 +308,7 @@ class VIEW3D_MT_tools_projectpaint_clone(bpy_types._GenericUI):
280
308
  self,
281
309
  searchpaths: list[str],
282
310
  operator: str,
311
+ *,
283
312
  props_default: dict = None,
284
313
  prop_filepath: str | None = "filepath",
285
314
  filter_ext: collections.abc.Callable | None = None,
@@ -416,7 +445,7 @@ class BrushPanel(UnifiedPaintPanel):
416
445
  """
417
446
  ...
418
447
 
419
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
448
+ def prop_unified_color(self, parent, context, brush, prop_name, *, text=None):
420
449
  """
421
450
 
422
451
  :param parent:
@@ -501,7 +530,7 @@ class BrushSelectPanel(BrushPanel, UnifiedPaintPanel):
501
530
  """
502
531
  ...
503
532
 
504
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
533
+ def prop_unified_color(self, parent, context, brush, prop_name, *, text=None):
505
534
  """
506
535
 
507
536
  :param parent:
@@ -594,7 +623,7 @@ class ClonePanel(BrushPanel, UnifiedPaintPanel):
594
623
  """
595
624
  ...
596
625
 
597
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
626
+ def prop_unified_color(self, parent, context, brush, prop_name, *, text=None):
598
627
  """
599
628
 
600
629
  :param parent:
@@ -680,7 +709,7 @@ class ColorPalettePanel(BrushPanel, UnifiedPaintPanel):
680
709
  """
681
710
  ...
682
711
 
683
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
712
+ def prop_unified_color(self, parent, context, brush, prop_name, *, text=None):
684
713
  """
685
714
 
686
715
  :param parent:
@@ -773,7 +802,7 @@ class DisplayPanel(BrushPanel, UnifiedPaintPanel):
773
802
  """
774
803
  ...
775
804
 
776
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
805
+ def prop_unified_color(self, parent, context, brush, prop_name, *, text=None):
777
806
  """
778
807
 
779
808
  :param parent:
@@ -859,7 +888,7 @@ class FalloffPanel(BrushPanel, UnifiedPaintPanel):
859
888
  """
860
889
  ...
861
890
 
862
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
891
+ def prop_unified_color(self, parent, context, brush, prop_name, *, text=None):
863
892
  """
864
893
 
865
894
  :param parent:
@@ -952,7 +981,7 @@ class SmoothStrokePanel(BrushPanel, UnifiedPaintPanel):
952
981
  """
953
982
  ...
954
983
 
955
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
984
+ def prop_unified_color(self, parent, context, brush, prop_name, *, text=None):
956
985
  """
957
986
 
958
987
  :param parent:
@@ -1039,7 +1068,7 @@ class StrokePanel(BrushPanel, UnifiedPaintPanel):
1039
1068
  """
1040
1069
  ...
1041
1070
 
1042
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
1071
+ def prop_unified_color(self, parent, context, brush, prop_name, *, text=None):
1043
1072
  """
1044
1073
 
1045
1074
  :param parent:
@@ -1125,7 +1154,7 @@ class TextureMaskPanel(BrushPanel, UnifiedPaintPanel):
1125
1154
  """
1126
1155
  ...
1127
1156
 
1128
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
1157
+ def prop_unified_color(self, parent, context, brush, prop_name, *, text=None):
1129
1158
  """
1130
1159
 
1131
1160
  :param parent:
@@ -1150,15 +1179,17 @@ class TextureMaskPanel(BrushPanel, UnifiedPaintPanel):
1150
1179
  ...
1151
1180
 
1152
1181
  def brush_basic__draw_color_selector(context, layout, brush, gp_settings, props): ...
1153
- def brush_basic_gpencil_paint_settings(layout, context, brush, compact=False): ...
1154
- def brush_basic_gpencil_sculpt_settings(layout, _context, brush, compact=False): ...
1155
- def brush_basic_gpencil_vertex_settings(layout, _context, brush, compact=False): ...
1156
- def brush_basic_gpencil_weight_settings(layout, _context, brush, compact=False): ...
1157
- def brush_basic_grease_pencil_paint_settings(layout, context, brush, compact=False): ...
1182
+ def brush_basic_gpencil_paint_settings(layout, context, brush, *, compact=False): ...
1183
+ def brush_basic_gpencil_sculpt_settings(layout, _context, brush, *, compact=False): ...
1184
+ def brush_basic_gpencil_vertex_settings(layout, _context, brush, *, compact=False): ...
1185
+ def brush_basic_gpencil_weight_settings(layout, _context, brush, *, compact=False): ...
1186
+ def brush_basic_grease_pencil_paint_settings(
1187
+ layout, context, brush, *, compact=False
1188
+ ): ...
1158
1189
  def brush_basic_grease_pencil_weight_settings(
1159
- layout, context, brush, compact=False
1190
+ layout, context, brush, *, compact=False
1160
1191
  ): ...
1161
- def brush_basic_texpaint_settings(layout, context, brush, compact=False):
1192
+ def brush_basic_texpaint_settings(layout, context, brush, *, compact=False):
1162
1193
  """Draw Tool Settings header for Vertex Paint and 2D and 3D Texture Paint modes."""
1163
1194
 
1164
1195
  ...
@@ -196,6 +196,7 @@ class PARTICLE_MT_context_menu(bpy_types._GenericUI):
196
196
  self,
197
197
  searchpaths: list[str],
198
198
  operator: str,
199
+ *,
199
200
  props_default: dict = None,
200
201
  prop_filepath: str | None = "filepath",
201
202
  filter_ext: collections.abc.Callable | None = None,
@@ -5299,6 +5300,7 @@ class PARTICLE_PT_hair_dynamics_presets(bl_ui.utils.PresetPanel, bpy_types._Gene
5299
5300
  self,
5300
5301
  searchpaths: list[str],
5301
5302
  operator: str,
5303
+ *,
5302
5304
  props_default: dict = None,
5303
5305
  prop_filepath: str | None = "filepath",
5304
5306
  filter_ext: collections.abc.Callable | None = None,
@@ -194,6 +194,7 @@ class CLOTH_PT_presets(bl_ui.utils.PresetPanel, bpy_types._GenericUI):
194
194
  self,
195
195
  searchpaths: list[str],
196
196
  operator: str,
197
+ *,
197
198
  props_default: dict = None,
198
199
  prop_filepath: str | None = "filepath",
199
200
  filter_ext: collections.abc.Callable | None = None,
@@ -194,6 +194,7 @@ class FLUID_PT_presets(bl_ui.utils.PresetPanel, bpy_types._GenericUI):
194
194
  self,
195
195
  searchpaths: list[str],
196
196
  operator: str,
197
+ *,
197
198
  props_default: dict = None,
198
199
  prop_filepath: str | None = "filepath",
199
200
  filter_ext: collections.abc.Callable | None = None,
@@ -1148,6 +1148,7 @@ class RENDER_PT_color_management_white_balance_presets(
1148
1148
  self,
1149
1149
  searchpaths: list[str],
1150
1150
  operator: str,
1151
+ *,
1151
1152
  props_default: dict = None,
1152
1153
  prop_filepath: str | None = "filepath",
1153
1154
  filter_ext: collections.abc.Callable | None = None,
@@ -5805,6 +5806,7 @@ class RENDER_PT_eevee_next_raytracing_presets(
5805
5806
  self,
5806
5807
  searchpaths: list[str],
5807
5808
  operator: str,
5809
+ *,
5808
5810
  props_default: dict = None,
5809
5811
  prop_filepath: str | None = "filepath",
5810
5812
  filter_ext: collections.abc.Callable | None = None,
@@ -195,6 +195,7 @@ class TEXTURE_MT_context_menu(bpy_types._GenericUI):
195
195
  self,
196
196
  searchpaths: list[str],
197
197
  operator: str,
198
+ *,
198
199
  props_default: dict = None,
199
200
  prop_filepath: str | None = "filepath",
200
201
  filter_ext: collections.abc.Callable | None = None,
@@ -194,6 +194,7 @@ class VIEWLAYER_MT_lightgroup_sync(bpy_types._GenericUI):
194
194
  self,
195
195
  searchpaths: list[str],
196
196
  operator: str,
197
+ *,
197
198
  props_default: dict = None,
198
199
  prop_filepath: str | None = "filepath",
199
200
  filter_ext: collections.abc.Callable | None = None,