fake-bpy-module 20240708__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 (116) 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. bpy/ops/brush/__init__.pyi +185 -11
  101. bpy/ops/gpencil/__init__.pyi +0 -28
  102. bpy/ops/paint/__init__.pyi +0 -48
  103. bpy/ops/pose/__init__.pyi +176 -0
  104. bpy/ops/wm/__init__.pyi +18 -0
  105. bpy/path/__init__.pyi +6 -6
  106. bpy/types/__init__.pyi +2607 -1090
  107. bpy/utils/__init__.pyi +14 -12
  108. bpy_extras/anim_utils/__init__.pyi +3 -3
  109. bpy_extras/view3d_utils/__init__.pyi +2 -0
  110. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240709.dist-info}/METADATA +1 -1
  111. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240709.dist-info}/RECORD +116 -113
  112. rna_info/__init__.pyi +1 -0
  113. rna_prop_ui/__init__.pyi +2 -1
  114. rna_xml/__init__.pyi +2 -2
  115. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240709.dist-info}/WHEEL +0 -0
  116. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240709.dist-info}/top_level.txt +0 -0
@@ -194,6 +194,7 @@ class NODE_MT_category_GEO_GROUP(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,
@@ -465,6 +466,7 @@ class NODE_MT_category_GEO_OUTPUT(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,
@@ -736,6 +738,7 @@ class NODE_MT_category_GEO_POINT(bpy_types._GenericUI):
736
738
  self,
737
739
  searchpaths: list[str],
738
740
  operator: str,
741
+ *,
739
742
  props_default: dict = None,
740
743
  prop_filepath: str | None = "filepath",
741
744
  filter_ext: collections.abc.Callable | None = None,
@@ -1007,6 +1010,7 @@ class NODE_MT_category_GEO_TEXT(bpy_types._GenericUI):
1007
1010
  self,
1008
1011
  searchpaths: list[str],
1009
1012
  operator: str,
1013
+ *,
1010
1014
  props_default: dict = None,
1011
1015
  prop_filepath: str | None = "filepath",
1012
1016
  filter_ext: collections.abc.Callable | None = None,
@@ -1278,6 +1282,7 @@ class NODE_MT_category_GEO_TEXTURE(bpy_types._GenericUI):
1278
1282
  self,
1279
1283
  searchpaths: list[str],
1280
1284
  operator: str,
1285
+ *,
1281
1286
  props_default: dict = None,
1282
1287
  prop_filepath: str | None = "filepath",
1283
1288
  filter_ext: collections.abc.Callable | None = None,
@@ -1549,6 +1554,7 @@ class NODE_MT_category_GEO_UTILITIES(bpy_types._GenericUI):
1549
1554
  self,
1550
1555
  searchpaths: list[str],
1551
1556
  operator: str,
1557
+ *,
1552
1558
  props_default: dict = None,
1553
1559
  prop_filepath: str | None = "filepath",
1554
1560
  filter_ext: collections.abc.Callable | None = None,
@@ -1820,6 +1826,7 @@ class NODE_MT_category_GEO_UTILITIES_DEPRECATED(bpy_types._GenericUI):
1820
1826
  self,
1821
1827
  searchpaths: list[str],
1822
1828
  operator: str,
1829
+ *,
1823
1830
  props_default: dict = None,
1824
1831
  prop_filepath: str | None = "filepath",
1825
1832
  filter_ext: collections.abc.Callable | None = None,
@@ -2091,6 +2098,7 @@ class NODE_MT_category_GEO_UTILITIES_FIELD(bpy_types._GenericUI):
2091
2098
  self,
2092
2099
  searchpaths: list[str],
2093
2100
  operator: str,
2101
+ *,
2094
2102
  props_default: dict = None,
2095
2103
  prop_filepath: str | None = "filepath",
2096
2104
  filter_ext: collections.abc.Callable | None = None,
@@ -2362,6 +2370,7 @@ class NODE_MT_category_GEO_UTILITIES_MATH(bpy_types._GenericUI):
2362
2370
  self,
2363
2371
  searchpaths: list[str],
2364
2372
  operator: str,
2373
+ *,
2365
2374
  props_default: dict = None,
2366
2375
  prop_filepath: str | None = "filepath",
2367
2376
  filter_ext: collections.abc.Callable | None = None,
@@ -2633,6 +2642,7 @@ class NODE_MT_category_GEO_UTILITIES_ROTATION(bpy_types._GenericUI):
2633
2642
  self,
2634
2643
  searchpaths: list[str],
2635
2644
  operator: str,
2645
+ *,
2636
2646
  props_default: dict = None,
2637
2647
  prop_filepath: str | None = "filepath",
2638
2648
  filter_ext: collections.abc.Callable | None = None,
@@ -2904,6 +2914,7 @@ class NODE_MT_category_GEO_UV(bpy_types._GenericUI):
2904
2914
  self,
2905
2915
  searchpaths: list[str],
2906
2916
  operator: str,
2917
+ *,
2907
2918
  props_default: dict = None,
2908
2919
  prop_filepath: str | None = "filepath",
2909
2920
  filter_ext: collections.abc.Callable | None = None,
@@ -3175,6 +3186,7 @@ class NODE_MT_category_GEO_VECTOR(bpy_types._GenericUI):
3175
3186
  self,
3176
3187
  searchpaths: list[str],
3177
3188
  operator: str,
3189
+ *,
3178
3190
  props_default: dict = None,
3179
3191
  prop_filepath: str | None = "filepath",
3180
3192
  filter_ext: collections.abc.Callable | None = None,
@@ -3447,6 +3459,7 @@ class NODE_MT_category_GEO_VOLUME(bpy_types._GenericUI):
3447
3459
  self,
3448
3460
  searchpaths: list[str],
3449
3461
  operator: str,
3462
+ *,
3450
3463
  props_default: dict = None,
3451
3464
  prop_filepath: str | None = "filepath",
3452
3465
  filter_ext: collections.abc.Callable | None = None,
@@ -3718,6 +3731,7 @@ class NODE_MT_category_PRIMITIVES_MESH(bpy_types._GenericUI):
3718
3731
  self,
3719
3732
  searchpaths: list[str],
3720
3733
  operator: str,
3734
+ *,
3721
3735
  props_default: dict = None,
3722
3736
  prop_filepath: str | None = "filepath",
3723
3737
  filter_ext: collections.abc.Callable | None = None,
@@ -3989,6 +4003,7 @@ class NODE_MT_category_import(bpy_types._GenericUI):
3989
4003
  self,
3990
4004
  searchpaths: list[str],
3991
4005
  operator: str,
4006
+ *,
3992
4007
  props_default: dict = None,
3993
4008
  prop_filepath: str | None = "filepath",
3994
4009
  filter_ext: collections.abc.Callable | None = None,
@@ -4260,6 +4275,7 @@ class NODE_MT_category_simulation(bpy_types._GenericUI):
4260
4275
  self,
4261
4276
  searchpaths: list[str],
4262
4277
  operator: str,
4278
+ *,
4263
4279
  props_default: dict = None,
4264
4280
  prop_filepath: str | None = "filepath",
4265
4281
  filter_ext: collections.abc.Callable | None = None,
@@ -4531,6 +4547,7 @@ class NODE_MT_category_utilities_matrix(bpy_types._GenericUI):
4531
4547
  self,
4532
4548
  searchpaths: list[str],
4533
4549
  operator: str,
4550
+ *,
4534
4551
  props_default: dict = None,
4535
4552
  prop_filepath: str | None = "filepath",
4536
4553
  filter_ext: collections.abc.Callable | None = None,
@@ -4802,6 +4819,7 @@ class NODE_MT_geometry_node_GEO_ATTRIBUTE(bpy_types._GenericUI):
4802
4819
  self,
4803
4820
  searchpaths: list[str],
4804
4821
  operator: str,
4822
+ *,
4805
4823
  props_default: dict = None,
4806
4824
  prop_filepath: str | None = "filepath",
4807
4825
  filter_ext: collections.abc.Callable | None = None,
@@ -5073,6 +5091,7 @@ class NODE_MT_geometry_node_GEO_COLOR(bpy_types._GenericUI):
5073
5091
  self,
5074
5092
  searchpaths: list[str],
5075
5093
  operator: str,
5094
+ *,
5076
5095
  props_default: dict = None,
5077
5096
  prop_filepath: str | None = "filepath",
5078
5097
  filter_ext: collections.abc.Callable | None = None,
@@ -5344,6 +5363,7 @@ class NODE_MT_geometry_node_GEO_CURVE(bpy_types._GenericUI):
5344
5363
  self,
5345
5364
  searchpaths: list[str],
5346
5365
  operator: str,
5366
+ *,
5347
5367
  props_default: dict = None,
5348
5368
  prop_filepath: str | None = "filepath",
5349
5369
  filter_ext: collections.abc.Callable | None = None,
@@ -5615,6 +5635,7 @@ class NODE_MT_geometry_node_GEO_CURVE_OPERATIONS(bpy_types._GenericUI):
5615
5635
  self,
5616
5636
  searchpaths: list[str],
5617
5637
  operator: str,
5638
+ *,
5618
5639
  props_default: dict = None,
5619
5640
  prop_filepath: str | None = "filepath",
5620
5641
  filter_ext: collections.abc.Callable | None = None,
@@ -5886,6 +5907,7 @@ class NODE_MT_geometry_node_GEO_CURVE_READ(bpy_types._GenericUI):
5886
5907
  self,
5887
5908
  searchpaths: list[str],
5888
5909
  operator: str,
5910
+ *,
5889
5911
  props_default: dict = None,
5890
5912
  prop_filepath: str | None = "filepath",
5891
5913
  filter_ext: collections.abc.Callable | None = None,
@@ -6157,6 +6179,7 @@ class NODE_MT_geometry_node_GEO_CURVE_SAMPLE(bpy_types._GenericUI):
6157
6179
  self,
6158
6180
  searchpaths: list[str],
6159
6181
  operator: str,
6182
+ *,
6160
6183
  props_default: dict = None,
6161
6184
  prop_filepath: str | None = "filepath",
6162
6185
  filter_ext: collections.abc.Callable | None = None,
@@ -6428,6 +6451,7 @@ class NODE_MT_geometry_node_GEO_CURVE_WRITE(bpy_types._GenericUI):
6428
6451
  self,
6429
6452
  searchpaths: list[str],
6430
6453
  operator: str,
6454
+ *,
6431
6455
  props_default: dict = None,
6432
6456
  prop_filepath: str | None = "filepath",
6433
6457
  filter_ext: collections.abc.Callable | None = None,
@@ -6699,6 +6723,7 @@ class NODE_MT_geometry_node_GEO_GEOMETRY(bpy_types._GenericUI):
6699
6723
  self,
6700
6724
  searchpaths: list[str],
6701
6725
  operator: str,
6726
+ *,
6702
6727
  props_default: dict = None,
6703
6728
  prop_filepath: str | None = "filepath",
6704
6729
  filter_ext: collections.abc.Callable | None = None,
@@ -6970,6 +6995,7 @@ class NODE_MT_geometry_node_GEO_GEOMETRY_OPERATIONS(bpy_types._GenericUI):
6970
6995
  self,
6971
6996
  searchpaths: list[str],
6972
6997
  operator: str,
6998
+ *,
6973
6999
  props_default: dict = None,
6974
7000
  prop_filepath: str | None = "filepath",
6975
7001
  filter_ext: collections.abc.Callable | None = None,
@@ -7241,6 +7267,7 @@ class NODE_MT_geometry_node_GEO_GEOMETRY_READ(bpy_types._GenericUI):
7241
7267
  self,
7242
7268
  searchpaths: list[str],
7243
7269
  operator: str,
7270
+ *,
7244
7271
  props_default: dict = None,
7245
7272
  prop_filepath: str | None = "filepath",
7246
7273
  filter_ext: collections.abc.Callable | None = None,
@@ -7512,6 +7539,7 @@ class NODE_MT_geometry_node_GEO_GEOMETRY_SAMPLE(bpy_types._GenericUI):
7512
7539
  self,
7513
7540
  searchpaths: list[str],
7514
7541
  operator: str,
7542
+ *,
7515
7543
  props_default: dict = None,
7516
7544
  prop_filepath: str | None = "filepath",
7517
7545
  filter_ext: collections.abc.Callable | None = None,
@@ -7783,6 +7811,7 @@ class NODE_MT_geometry_node_GEO_GEOMETRY_WRITE(bpy_types._GenericUI):
7783
7811
  self,
7784
7812
  searchpaths: list[str],
7785
7813
  operator: str,
7814
+ *,
7786
7815
  props_default: dict = None,
7787
7816
  prop_filepath: str | None = "filepath",
7788
7817
  filter_ext: collections.abc.Callable | None = None,
@@ -8054,6 +8083,7 @@ class NODE_MT_geometry_node_GEO_INPUT(bpy_types._GenericUI):
8054
8083
  self,
8055
8084
  searchpaths: list[str],
8056
8085
  operator: str,
8086
+ *,
8057
8087
  props_default: dict = None,
8058
8088
  prop_filepath: str | None = "filepath",
8059
8089
  filter_ext: collections.abc.Callable | None = None,
@@ -8326,6 +8356,7 @@ class NODE_MT_geometry_node_GEO_INPUT_CONSTANT(bpy_types._GenericUI):
8326
8356
  self,
8327
8357
  searchpaths: list[str],
8328
8358
  operator: str,
8359
+ *,
8329
8360
  props_default: dict = None,
8330
8361
  prop_filepath: str | None = "filepath",
8331
8362
  filter_ext: collections.abc.Callable | None = None,
@@ -8597,6 +8628,7 @@ class NODE_MT_geometry_node_GEO_INPUT_GROUP(bpy_types._GenericUI):
8597
8628
  self,
8598
8629
  searchpaths: list[str],
8599
8630
  operator: str,
8631
+ *,
8600
8632
  props_default: dict = None,
8601
8633
  prop_filepath: str | None = "filepath",
8602
8634
  filter_ext: collections.abc.Callable | None = None,
@@ -8868,6 +8900,7 @@ class NODE_MT_geometry_node_GEO_INPUT_SCENE(bpy_types._GenericUI):
8868
8900
  self,
8869
8901
  searchpaths: list[str],
8870
8902
  operator: str,
8903
+ *,
8871
8904
  props_default: dict = None,
8872
8905
  prop_filepath: str | None = "filepath",
8873
8906
  filter_ext: collections.abc.Callable | None = None,
@@ -9139,6 +9172,7 @@ class NODE_MT_geometry_node_GEO_INSTANCE(bpy_types._GenericUI):
9139
9172
  self,
9140
9173
  searchpaths: list[str],
9141
9174
  operator: str,
9175
+ *,
9142
9176
  props_default: dict = None,
9143
9177
  prop_filepath: str | None = "filepath",
9144
9178
  filter_ext: collections.abc.Callable | None = None,
@@ -9410,6 +9444,7 @@ class NODE_MT_geometry_node_GEO_MATERIAL(bpy_types._GenericUI):
9410
9444
  self,
9411
9445
  searchpaths: list[str],
9412
9446
  operator: str,
9447
+ *,
9413
9448
  props_default: dict = None,
9414
9449
  prop_filepath: str | None = "filepath",
9415
9450
  filter_ext: collections.abc.Callable | None = None,
@@ -9681,6 +9716,7 @@ class NODE_MT_geometry_node_GEO_MESH(bpy_types._GenericUI):
9681
9716
  self,
9682
9717
  searchpaths: list[str],
9683
9718
  operator: str,
9719
+ *,
9684
9720
  props_default: dict = None,
9685
9721
  prop_filepath: str | None = "filepath",
9686
9722
  filter_ext: collections.abc.Callable | None = None,
@@ -9952,6 +9988,7 @@ class NODE_MT_geometry_node_GEO_MESH_OPERATIONS(bpy_types._GenericUI):
9952
9988
  self,
9953
9989
  searchpaths: list[str],
9954
9990
  operator: str,
9991
+ *,
9955
9992
  props_default: dict = None,
9956
9993
  prop_filepath: str | None = "filepath",
9957
9994
  filter_ext: collections.abc.Callable | None = None,
@@ -10223,6 +10260,7 @@ class NODE_MT_geometry_node_GEO_MESH_READ(bpy_types._GenericUI):
10223
10260
  self,
10224
10261
  searchpaths: list[str],
10225
10262
  operator: str,
10263
+ *,
10226
10264
  props_default: dict = None,
10227
10265
  prop_filepath: str | None = "filepath",
10228
10266
  filter_ext: collections.abc.Callable | None = None,
@@ -10494,6 +10532,7 @@ class NODE_MT_geometry_node_GEO_MESH_SAMPLE(bpy_types._GenericUI):
10494
10532
  self,
10495
10533
  searchpaths: list[str],
10496
10534
  operator: str,
10535
+ *,
10497
10536
  props_default: dict = None,
10498
10537
  prop_filepath: str | None = "filepath",
10499
10538
  filter_ext: collections.abc.Callable | None = None,
@@ -10765,6 +10804,7 @@ class NODE_MT_geometry_node_GEO_MESH_WRITE(bpy_types._GenericUI):
10765
10804
  self,
10766
10805
  searchpaths: list[str],
10767
10806
  operator: str,
10807
+ *,
10768
10808
  props_default: dict = None,
10769
10809
  prop_filepath: str | None = "filepath",
10770
10810
  filter_ext: collections.abc.Callable | None = None,
@@ -11036,6 +11076,7 @@ class NODE_MT_geometry_node_GEO_PRIMITIVES_CURVE(bpy_types._GenericUI):
11036
11076
  self,
11037
11077
  searchpaths: list[str],
11038
11078
  operator: str,
11079
+ *,
11039
11080
  props_default: dict = None,
11040
11081
  prop_filepath: str | None = "filepath",
11041
11082
  filter_ext: collections.abc.Callable | None = None,
@@ -11307,6 +11348,7 @@ class NODE_MT_geometry_node_GEO_VOLUME_OPERATIONS(bpy_types._GenericUI):
11307
11348
  self,
11308
11349
  searchpaths: list[str],
11309
11350
  operator: str,
11351
+ *,
11310
11352
  props_default: dict = None,
11311
11353
  prop_filepath: str | None = "filepath",
11312
11354
  filter_ext: collections.abc.Callable | None = None,
@@ -11578,6 +11620,7 @@ class NODE_MT_geometry_node_GEO_VOLUME_PRIMITIVES(bpy_types._GenericUI):
11578
11620
  self,
11579
11621
  searchpaths: list[str],
11580
11622
  operator: str,
11623
+ *,
11581
11624
  props_default: dict = None,
11582
11625
  prop_filepath: str | None = "filepath",
11583
11626
  filter_ext: collections.abc.Callable | None = None,
@@ -11849,6 +11892,7 @@ class NODE_MT_geometry_node_GEO_VOLUME_READ(bpy_types._GenericUI):
11849
11892
  self,
11850
11893
  searchpaths: list[str],
11851
11894
  operator: str,
11895
+ *,
11852
11896
  props_default: dict = None,
11853
11897
  prop_filepath: str | None = "filepath",
11854
11898
  filter_ext: collections.abc.Callable | None = None,
@@ -12120,6 +12164,7 @@ class NODE_MT_geometry_node_GEO_VOLUME_WRITE(bpy_types._GenericUI):
12120
12164
  self,
12121
12165
  searchpaths: list[str],
12122
12166
  operator: str,
12167
+ *,
12123
12168
  props_default: dict = None,
12124
12169
  prop_filepath: str | None = "filepath",
12125
12170
  filter_ext: collections.abc.Callable | None = None,
@@ -12391,6 +12436,7 @@ class NODE_MT_geometry_node_add_all(bpy_types._GenericUI):
12391
12436
  self,
12392
12437
  searchpaths: list[str],
12393
12438
  operator: str,
12439
+ *,
12394
12440
  props_default: dict = None,
12395
12441
  prop_filepath: str | None = "filepath",
12396
12442
  filter_ext: collections.abc.Callable | None = None,
@@ -12662,6 +12708,7 @@ class NODE_MT_geometry_node_curve_topology(bpy_types._GenericUI):
12662
12708
  self,
12663
12709
  searchpaths: list[str],
12664
12710
  operator: str,
12711
+ *,
12665
12712
  props_default: dict = None,
12666
12713
  prop_filepath: str | None = "filepath",
12667
12714
  filter_ext: collections.abc.Callable | None = None,
@@ -12933,6 +12980,7 @@ class NODE_MT_geometry_node_mesh_topology(bpy_types._GenericUI):
12933
12980
  self,
12934
12981
  searchpaths: list[str],
12935
12982
  operator: str,
12983
+ *,
12936
12984
  props_default: dict = None,
12937
12985
  prop_filepath: str | None = "filepath",
12938
12986
  filter_ext: collections.abc.Callable | None = None,
@@ -13204,6 +13252,7 @@ class NODE_MT_geometry_node_volume_sample(bpy_types._GenericUI):
13204
13252
  self,
13205
13253
  searchpaths: list[str],
13206
13254
  operator: str,
13255
+ *,
13207
13256
  props_default: dict = None,
13208
13257
  prop_filepath: str | None = "filepath",
13209
13258
  filter_ext: collections.abc.Callable | None = None,
@@ -194,6 +194,7 @@ class NODE_MT_category_shader_color(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,
@@ -465,6 +466,7 @@ class NODE_MT_category_shader_converter(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,
@@ -736,6 +738,7 @@ class NODE_MT_category_shader_group(bpy_types._GenericUI):
736
738
  self,
737
739
  searchpaths: list[str],
738
740
  operator: str,
741
+ *,
739
742
  props_default: dict = None,
740
743
  prop_filepath: str | None = "filepath",
741
744
  filter_ext: collections.abc.Callable | None = None,
@@ -1007,6 +1010,7 @@ class NODE_MT_category_shader_input(bpy_types._GenericUI):
1007
1010
  self,
1008
1011
  searchpaths: list[str],
1009
1012
  operator: str,
1013
+ *,
1010
1014
  props_default: dict = None,
1011
1015
  prop_filepath: str | None = "filepath",
1012
1016
  filter_ext: collections.abc.Callable | None = None,
@@ -1278,6 +1282,7 @@ class NODE_MT_category_shader_output(bpy_types._GenericUI):
1278
1282
  self,
1279
1283
  searchpaths: list[str],
1280
1284
  operator: str,
1285
+ *,
1281
1286
  props_default: dict = None,
1282
1287
  prop_filepath: str | None = "filepath",
1283
1288
  filter_ext: collections.abc.Callable | None = None,
@@ -1549,6 +1554,7 @@ class NODE_MT_category_shader_script(bpy_types._GenericUI):
1549
1554
  self,
1550
1555
  searchpaths: list[str],
1551
1556
  operator: str,
1557
+ *,
1552
1558
  props_default: dict = None,
1553
1559
  prop_filepath: str | None = "filepath",
1554
1560
  filter_ext: collections.abc.Callable | None = None,
@@ -1820,6 +1826,7 @@ class NODE_MT_category_shader_shader(bpy_types._GenericUI):
1820
1826
  self,
1821
1827
  searchpaths: list[str],
1822
1828
  operator: str,
1829
+ *,
1823
1830
  props_default: dict = None,
1824
1831
  prop_filepath: str | None = "filepath",
1825
1832
  filter_ext: collections.abc.Callable | None = None,
@@ -2091,6 +2098,7 @@ class NODE_MT_category_shader_texture(bpy_types._GenericUI):
2091
2098
  self,
2092
2099
  searchpaths: list[str],
2093
2100
  operator: str,
2101
+ *,
2094
2102
  props_default: dict = None,
2095
2103
  prop_filepath: str | None = "filepath",
2096
2104
  filter_ext: collections.abc.Callable | None = None,
@@ -2362,6 +2370,7 @@ class NODE_MT_category_shader_vector(bpy_types._GenericUI):
2362
2370
  self,
2363
2371
  searchpaths: list[str],
2364
2372
  operator: str,
2373
+ *,
2365
2374
  props_default: dict = None,
2366
2375
  prop_filepath: str | None = "filepath",
2367
2376
  filter_ext: collections.abc.Callable | None = None,
@@ -2634,6 +2643,7 @@ class NODE_MT_shader_node_add_all(bpy_types._GenericUI):
2634
2643
  self,
2635
2644
  searchpaths: list[str],
2636
2645
  operator: str,
2646
+ *,
2637
2647
  props_default: dict = None,
2638
2648
  prop_filepath: str | None = "filepath",
2639
2649
  filter_ext: collections.abc.Callable | None = None,
@@ -194,6 +194,7 @@ class NODE_MT_category_texture_color(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,
@@ -465,6 +466,7 @@ class NODE_MT_category_texture_converter(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,
@@ -736,6 +738,7 @@ class NODE_MT_category_texture_distort(bpy_types._GenericUI):
736
738
  self,
737
739
  searchpaths: list[str],
738
740
  operator: str,
741
+ *,
739
742
  props_default: dict = None,
740
743
  prop_filepath: str | None = "filepath",
741
744
  filter_ext: collections.abc.Callable | None = None,
@@ -1007,6 +1010,7 @@ class NODE_MT_category_texture_group(bpy_types._GenericUI):
1007
1010
  self,
1008
1011
  searchpaths: list[str],
1009
1012
  operator: str,
1013
+ *,
1010
1014
  props_default: dict = None,
1011
1015
  prop_filepath: str | None = "filepath",
1012
1016
  filter_ext: collections.abc.Callable | None = None,
@@ -1278,6 +1282,7 @@ class NODE_MT_category_texture_input(bpy_types._GenericUI):
1278
1282
  self,
1279
1283
  searchpaths: list[str],
1280
1284
  operator: str,
1285
+ *,
1281
1286
  props_default: dict = None,
1282
1287
  prop_filepath: str | None = "filepath",
1283
1288
  filter_ext: collections.abc.Callable | None = None,
@@ -1549,6 +1554,7 @@ class NODE_MT_category_texture_output(bpy_types._GenericUI):
1549
1554
  self,
1550
1555
  searchpaths: list[str],
1551
1556
  operator: str,
1557
+ *,
1552
1558
  props_default: dict = None,
1553
1559
  prop_filepath: str | None = "filepath",
1554
1560
  filter_ext: collections.abc.Callable | None = None,
@@ -1820,6 +1826,7 @@ class NODE_MT_category_texture_pattern(bpy_types._GenericUI):
1820
1826
  self,
1821
1827
  searchpaths: list[str],
1822
1828
  operator: str,
1829
+ *,
1823
1830
  props_default: dict = None,
1824
1831
  prop_filepath: str | None = "filepath",
1825
1832
  filter_ext: collections.abc.Callable | None = None,
@@ -2091,6 +2098,7 @@ class NODE_MT_category_texture_texture(bpy_types._GenericUI):
2091
2098
  self,
2092
2099
  searchpaths: list[str],
2093
2100
  operator: str,
2101
+ *,
2094
2102
  props_default: dict = None,
2095
2103
  prop_filepath: str | None = "filepath",
2096
2104
  filter_ext: collections.abc.Callable | None = None,
@@ -2363,6 +2371,7 @@ class NODE_MT_texture_node_add_all(bpy_types._GenericUI):
2363
2371
  self,
2364
2372
  searchpaths: list[str],
2365
2373
  operator: str,
2374
+ *,
2366
2375
  props_default: dict = None,
2367
2376
  prop_filepath: str | None = "filepath",
2368
2377
  filter_ext: collections.abc.Callable | None = None,
@@ -194,6 +194,7 @@ class COLLECTION_MT_context_menu_instance_offset(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,