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
@@ -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,279 @@ class NODE_MT_geometry_node_GEO_INPUT_CONSTANT(bpy_types._GenericUI):
8326
8356
  self,
8327
8357
  searchpaths: list[str],
8328
8358
  operator: str,
8359
+ *,
8360
+ props_default: dict = None,
8361
+ prop_filepath: str | None = "filepath",
8362
+ filter_ext: collections.abc.Callable | None = None,
8363
+ filter_path=None,
8364
+ display_name: collections.abc.Callable | None = None,
8365
+ add_operator=None,
8366
+ add_operator_props=None,
8367
+ ):
8368
+ """Populate a menu from a list of paths.
8369
+
8370
+ :param searchpaths: Paths to scan.
8371
+ :type searchpaths: list[str]
8372
+ :param operator: The operator id to use with each file.
8373
+ :type operator: str
8374
+ :param props_default: Properties to assign to each operator.
8375
+ :type props_default: dict
8376
+ :param prop_filepath: Optional operator filepath property (defaults to "filepath").
8377
+ :type prop_filepath: str | None
8378
+ :param filter_ext: Optional callback that takes the file extensions.
8379
+
8380
+ Returning false excludes the file from the list.
8381
+ :type filter_ext: collections.abc.Callable | None
8382
+ :param filter_path:
8383
+ :param display_name: Optional callback that takes the full path, returns the name to display.
8384
+ :type display_name: collections.abc.Callable | None
8385
+ :param add_operator:
8386
+ :param add_operator_props:
8387
+ """
8388
+ ...
8389
+
8390
+ def path_resolve(self):
8391
+ """Returns the property from the path, raise an exception when not found."""
8392
+ ...
8393
+
8394
+ def pop(self):
8395
+ """Remove and return the value of the custom property assigned to key or default
8396
+ when not found (matches Python's dictionary function of the same name).
8397
+
8398
+ """
8399
+ ...
8400
+
8401
+ def prepend(self, draw_func):
8402
+ """Prepend a draw function to this menu, takes the same arguments as
8403
+ the menus draw function
8404
+
8405
+ :param draw_func:
8406
+ """
8407
+ ...
8408
+
8409
+ def property_overridable_library_set(self) -> bool:
8410
+ """Define a property as overridable or not (only for custom properties!).
8411
+
8412
+ :return: True when the overridable status of the property was successfully set.
8413
+ :rtype: bool
8414
+ """
8415
+ ...
8416
+
8417
+ def property_unset(self):
8418
+ """Unset a property, will use default value afterward."""
8419
+ ...
8420
+
8421
+ def remove(self, draw_func):
8422
+ """Remove a draw function that has been added to this menu
8423
+
8424
+ :param draw_func:
8425
+ """
8426
+ ...
8427
+
8428
+ def type_recast(self):
8429
+ """Return a new instance, this is needed because types
8430
+ such as textures can be changed at runtime.
8431
+
8432
+ :return: a new instance of this object with the type initialized again.
8433
+ """
8434
+ ...
8435
+
8436
+ def values(self):
8437
+ """Returns the values of this objects custom properties (matches Python's
8438
+ dictionary function of the same name).
8439
+
8440
+ :return: custom property values.
8441
+ """
8442
+ ...
8443
+
8444
+ class NODE_MT_geometry_node_GEO_INPUT_GIZMO(bpy_types._GenericUI):
8445
+ bl_idname: typing.Any
8446
+ bl_label: typing.Any
8447
+ bl_rna: typing.Any
8448
+ id_data: typing.Any
8449
+
8450
+ def append(self, draw_func):
8451
+ """Append a draw function to this menu,
8452
+ takes the same arguments as the menus draw function
8453
+
8454
+ :param draw_func:
8455
+ """
8456
+ ...
8457
+
8458
+ def as_pointer(self) -> int:
8459
+ """Returns the memory address which holds a pointer to Blender's internal data
8460
+
8461
+ :return: int (memory address).
8462
+ :rtype: int
8463
+ """
8464
+ ...
8465
+
8466
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
8467
+ """
8468
+
8469
+ :return: The RNA type or default when not found.
8470
+ :rtype: bpy.types.Struct
8471
+ """
8472
+ ...
8473
+
8474
+ def bl_rna_get_subclass_py(self) -> typing.Any:
8475
+ """
8476
+
8477
+ :return: The class or default when not found.
8478
+ :rtype: typing.Any
8479
+ """
8480
+ ...
8481
+
8482
+ def draw(self, context):
8483
+ """
8484
+
8485
+ :param context:
8486
+ """
8487
+ ...
8488
+
8489
+ def draw_collapsible(self, context, layout):
8490
+ """
8491
+
8492
+ :param context:
8493
+ :param layout:
8494
+ """
8495
+ ...
8496
+
8497
+ def draw_preset(self, _context):
8498
+ """Define these on the subclass:
8499
+ - preset_operator (string)
8500
+ - preset_subdir (string)Optionally:
8501
+ - preset_add_operator (string)
8502
+ - preset_extensions (set of strings)
8503
+ - preset_operator_defaults (dict of keyword args)
8504
+
8505
+ :param _context:
8506
+ """
8507
+ ...
8508
+
8509
+ def driver_add(self) -> bpy.types.FCurve:
8510
+ """Adds driver(s) to the given property
8511
+
8512
+ :return: The driver(s) added.
8513
+ :rtype: bpy.types.FCurve
8514
+ """
8515
+ ...
8516
+
8517
+ def driver_remove(self) -> bool:
8518
+ """Remove driver(s) from the given property
8519
+
8520
+ :return: Success of driver removal.
8521
+ :rtype: bool
8522
+ """
8523
+ ...
8524
+
8525
+ def get(self):
8526
+ """Returns the value of the custom property assigned to key or default
8527
+ when not found (matches Python's dictionary function of the same name).
8528
+
8529
+ """
8530
+ ...
8531
+
8532
+ def id_properties_clear(self):
8533
+ """
8534
+
8535
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
8536
+ """
8537
+ ...
8538
+
8539
+ def id_properties_ensure(self):
8540
+ """
8541
+
8542
+ :return: the parent group for an RNA struct's custom IDProperties.
8543
+ """
8544
+ ...
8545
+
8546
+ def id_properties_ui(self):
8547
+ """
8548
+
8549
+ :return: Return an object used to manage an IDProperty's UI data.
8550
+ """
8551
+ ...
8552
+
8553
+ def is_extended(self): ...
8554
+ def is_property_hidden(self) -> bool:
8555
+ """Check if a property is hidden.
8556
+
8557
+ :return: True when the property is hidden.
8558
+ :rtype: bool
8559
+ """
8560
+ ...
8561
+
8562
+ def is_property_overridable_library(self) -> bool:
8563
+ """Check if a property is overridable.
8564
+
8565
+ :return: True when the property is overridable.
8566
+ :rtype: bool
8567
+ """
8568
+ ...
8569
+
8570
+ def is_property_readonly(self) -> bool:
8571
+ """Check if a property is readonly.
8572
+
8573
+ :return: True when the property is readonly (not writable).
8574
+ :rtype: bool
8575
+ """
8576
+ ...
8577
+
8578
+ def is_property_set(self) -> bool:
8579
+ """Check if a property is set, use for testing operator properties.
8580
+
8581
+ :return: True when the property has been set.
8582
+ :rtype: bool
8583
+ """
8584
+ ...
8585
+
8586
+ def items(self):
8587
+ """Returns the items of this objects custom properties (matches Python's
8588
+ dictionary function of the same name).
8589
+
8590
+ :return: custom property key, value pairs.
8591
+ """
8592
+ ...
8593
+
8594
+ def keyframe_delete(self) -> bool:
8595
+ """Remove a keyframe from this properties fcurve.
8596
+
8597
+ :return: Success of keyframe deletion.
8598
+ :rtype: bool
8599
+ """
8600
+ ...
8601
+
8602
+ def keyframe_insert(self) -> bool:
8603
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
8604
+
8605
+ :return: Success of keyframe insertion.
8606
+ :rtype: bool
8607
+ """
8608
+ ...
8609
+
8610
+ def keys(self):
8611
+ """Returns the keys of this objects custom properties (matches Python's
8612
+ dictionary function of the same name).
8613
+
8614
+ :return: custom property keys.
8615
+ """
8616
+ ...
8617
+
8618
+ def path_from_id(self) -> str:
8619
+ """Returns the data path from the ID to this object (string).
8620
+
8621
+ :return: The path from `bpy.types.bpy_struct.id_data`
8622
+ to this struct and property (when given).
8623
+ :rtype: str
8624
+ """
8625
+ ...
8626
+
8627
+ def path_menu(
8628
+ self,
8629
+ searchpaths: list[str],
8630
+ operator: str,
8631
+ *,
8329
8632
  props_default: dict = None,
8330
8633
  prop_filepath: str | None = "filepath",
8331
8634
  filter_ext: collections.abc.Callable | None = None,
@@ -8597,6 +8900,7 @@ class NODE_MT_geometry_node_GEO_INPUT_GROUP(bpy_types._GenericUI):
8597
8900
  self,
8598
8901
  searchpaths: list[str],
8599
8902
  operator: str,
8903
+ *,
8600
8904
  props_default: dict = None,
8601
8905
  prop_filepath: str | None = "filepath",
8602
8906
  filter_ext: collections.abc.Callable | None = None,
@@ -8868,6 +9172,7 @@ class NODE_MT_geometry_node_GEO_INPUT_SCENE(bpy_types._GenericUI):
8868
9172
  self,
8869
9173
  searchpaths: list[str],
8870
9174
  operator: str,
9175
+ *,
8871
9176
  props_default: dict = None,
8872
9177
  prop_filepath: str | None = "filepath",
8873
9178
  filter_ext: collections.abc.Callable | None = None,
@@ -9139,6 +9444,7 @@ class NODE_MT_geometry_node_GEO_INSTANCE(bpy_types._GenericUI):
9139
9444
  self,
9140
9445
  searchpaths: list[str],
9141
9446
  operator: str,
9447
+ *,
9142
9448
  props_default: dict = None,
9143
9449
  prop_filepath: str | None = "filepath",
9144
9450
  filter_ext: collections.abc.Callable | None = None,
@@ -9410,6 +9716,7 @@ class NODE_MT_geometry_node_GEO_MATERIAL(bpy_types._GenericUI):
9410
9716
  self,
9411
9717
  searchpaths: list[str],
9412
9718
  operator: str,
9719
+ *,
9413
9720
  props_default: dict = None,
9414
9721
  prop_filepath: str | None = "filepath",
9415
9722
  filter_ext: collections.abc.Callable | None = None,
@@ -9681,6 +9988,7 @@ class NODE_MT_geometry_node_GEO_MESH(bpy_types._GenericUI):
9681
9988
  self,
9682
9989
  searchpaths: list[str],
9683
9990
  operator: str,
9991
+ *,
9684
9992
  props_default: dict = None,
9685
9993
  prop_filepath: str | None = "filepath",
9686
9994
  filter_ext: collections.abc.Callable | None = None,
@@ -9952,6 +10260,7 @@ class NODE_MT_geometry_node_GEO_MESH_OPERATIONS(bpy_types._GenericUI):
9952
10260
  self,
9953
10261
  searchpaths: list[str],
9954
10262
  operator: str,
10263
+ *,
9955
10264
  props_default: dict = None,
9956
10265
  prop_filepath: str | None = "filepath",
9957
10266
  filter_ext: collections.abc.Callable | None = None,
@@ -10223,6 +10532,7 @@ class NODE_MT_geometry_node_GEO_MESH_READ(bpy_types._GenericUI):
10223
10532
  self,
10224
10533
  searchpaths: list[str],
10225
10534
  operator: str,
10535
+ *,
10226
10536
  props_default: dict = None,
10227
10537
  prop_filepath: str | None = "filepath",
10228
10538
  filter_ext: collections.abc.Callable | None = None,
@@ -10494,6 +10804,7 @@ class NODE_MT_geometry_node_GEO_MESH_SAMPLE(bpy_types._GenericUI):
10494
10804
  self,
10495
10805
  searchpaths: list[str],
10496
10806
  operator: str,
10807
+ *,
10497
10808
  props_default: dict = None,
10498
10809
  prop_filepath: str | None = "filepath",
10499
10810
  filter_ext: collections.abc.Callable | None = None,
@@ -10765,6 +11076,7 @@ class NODE_MT_geometry_node_GEO_MESH_WRITE(bpy_types._GenericUI):
10765
11076
  self,
10766
11077
  searchpaths: list[str],
10767
11078
  operator: str,
11079
+ *,
10768
11080
  props_default: dict = None,
10769
11081
  prop_filepath: str | None = "filepath",
10770
11082
  filter_ext: collections.abc.Callable | None = None,
@@ -11036,6 +11348,7 @@ class NODE_MT_geometry_node_GEO_PRIMITIVES_CURVE(bpy_types._GenericUI):
11036
11348
  self,
11037
11349
  searchpaths: list[str],
11038
11350
  operator: str,
11351
+ *,
11039
11352
  props_default: dict = None,
11040
11353
  prop_filepath: str | None = "filepath",
11041
11354
  filter_ext: collections.abc.Callable | None = None,
@@ -11307,6 +11620,7 @@ class NODE_MT_geometry_node_GEO_VOLUME_OPERATIONS(bpy_types._GenericUI):
11307
11620
  self,
11308
11621
  searchpaths: list[str],
11309
11622
  operator: str,
11623
+ *,
11310
11624
  props_default: dict = None,
11311
11625
  prop_filepath: str | None = "filepath",
11312
11626
  filter_ext: collections.abc.Callable | None = None,
@@ -11578,6 +11892,7 @@ class NODE_MT_geometry_node_GEO_VOLUME_PRIMITIVES(bpy_types._GenericUI):
11578
11892
  self,
11579
11893
  searchpaths: list[str],
11580
11894
  operator: str,
11895
+ *,
11581
11896
  props_default: dict = None,
11582
11897
  prop_filepath: str | None = "filepath",
11583
11898
  filter_ext: collections.abc.Callable | None = None,
@@ -11849,6 +12164,7 @@ class NODE_MT_geometry_node_GEO_VOLUME_READ(bpy_types._GenericUI):
11849
12164
  self,
11850
12165
  searchpaths: list[str],
11851
12166
  operator: str,
12167
+ *,
11852
12168
  props_default: dict = None,
11853
12169
  prop_filepath: str | None = "filepath",
11854
12170
  filter_ext: collections.abc.Callable | None = None,
@@ -12120,6 +12436,7 @@ class NODE_MT_geometry_node_GEO_VOLUME_WRITE(bpy_types._GenericUI):
12120
12436
  self,
12121
12437
  searchpaths: list[str],
12122
12438
  operator: str,
12439
+ *,
12123
12440
  props_default: dict = None,
12124
12441
  prop_filepath: str | None = "filepath",
12125
12442
  filter_ext: collections.abc.Callable | None = None,
@@ -12391,6 +12708,7 @@ class NODE_MT_geometry_node_add_all(bpy_types._GenericUI):
12391
12708
  self,
12392
12709
  searchpaths: list[str],
12393
12710
  operator: str,
12711
+ *,
12394
12712
  props_default: dict = None,
12395
12713
  prop_filepath: str | None = "filepath",
12396
12714
  filter_ext: collections.abc.Callable | None = None,
@@ -12662,6 +12980,7 @@ class NODE_MT_geometry_node_curve_topology(bpy_types._GenericUI):
12662
12980
  self,
12663
12981
  searchpaths: list[str],
12664
12982
  operator: str,
12983
+ *,
12665
12984
  props_default: dict = None,
12666
12985
  prop_filepath: str | None = "filepath",
12667
12986
  filter_ext: collections.abc.Callable | None = None,
@@ -12933,6 +13252,7 @@ class NODE_MT_geometry_node_mesh_topology(bpy_types._GenericUI):
12933
13252
  self,
12934
13253
  searchpaths: list[str],
12935
13254
  operator: str,
13255
+ *,
12936
13256
  props_default: dict = None,
12937
13257
  prop_filepath: str | None = "filepath",
12938
13258
  filter_ext: collections.abc.Callable | None = None,
@@ -13204,6 +13524,7 @@ class NODE_MT_geometry_node_volume_sample(bpy_types._GenericUI):
13204
13524
  self,
13205
13525
  searchpaths: list[str],
13206
13526
  operator: str,
13527
+ *,
13207
13528
  props_default: dict = None,
13208
13529
  prop_filepath: str | None = "filepath",
13209
13530
  filter_ext: collections.abc.Callable | None = None,