fake-bpy-module 20240721__py3-none-any.whl → 20240722__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 (71) hide show
  1. bl_operators/add_mesh_torus/__init__.pyi +1 -2
  2. bl_operators/assets/__init__.pyi +2 -2
  3. bl_operators/bone_selection_sets/__init__.pyi +16 -28
  4. bl_operators/connect_to_output/__init__.pyi +1 -4
  5. bl_operators/image_as_planes/__init__.pyi +2 -12
  6. bl_operators/node/__init__.pyi +14 -16
  7. bl_operators/object_quick_effects/__init__.pyi +3 -3
  8. bl_operators/presets/__init__.pyi +22 -25
  9. bl_operators/sequencer/__init__.pyi +76 -76
  10. bl_ui/generic_ui_list/__init__.pyi +3 -3
  11. bl_ui/properties_collection/__init__.pyi +5 -19
  12. bl_ui/properties_constraint/__init__.pyi +79 -289
  13. bl_ui/properties_data_armature/__init__.pyi +9 -33
  14. bl_ui/properties_data_bone/__init__.pyi +10 -17
  15. bl_ui/properties_data_camera/__init__.pyi +14 -32
  16. bl_ui/properties_data_curve/__init__.pyi +69 -88
  17. bl_ui/properties_data_curves/__init__.pyi +4 -9
  18. bl_ui/properties_data_empty/__init__.pyi +2 -2
  19. bl_ui/properties_data_gpencil/__init__.pyi +15 -50
  20. bl_ui/properties_data_grease_pencil/__init__.pyi +10 -36
  21. bl_ui/properties_data_lattice/__init__.pyi +3 -6
  22. bl_ui/properties_data_light/__init__.pyi +12 -25
  23. bl_ui/properties_data_lightprobe/__init__.pyi +13 -35
  24. bl_ui/properties_data_mesh/__init__.pyi +63 -72
  25. bl_ui/properties_data_metaball/__init__.pyi +5 -10
  26. bl_ui/properties_data_modifier/__init__.pyi +9 -23
  27. bl_ui/properties_data_pointcloud/__init__.pyi +3 -10
  28. bl_ui/properties_data_shaderfx/__init__.pyi +1 -1
  29. bl_ui/properties_data_speaker/__init__.pyi +5 -8
  30. bl_ui/properties_data_volume/__init__.pyi +7 -14
  31. bl_ui/properties_freestyle/__init__.pyi +9 -42
  32. bl_ui/properties_material/__init__.pyi +14 -40
  33. bl_ui/properties_material_gpencil/__init__.pyi +8 -32
  34. bl_ui/properties_object/__init__.pyi +13 -31
  35. bl_ui/properties_output/__init__.pyi +16 -43
  36. bl_ui/properties_paint_common/__init__.pyi +17 -17
  37. bl_ui/properties_particle/__init__.pyi +50 -135
  38. bl_ui/properties_physics_cloth/__init__.pyi +14 -35
  39. bl_ui/properties_physics_common/__init__.pyi +1 -1
  40. bl_ui/properties_physics_dynamicpaint/__init__.pyi +21 -57
  41. bl_ui/properties_physics_field/__init__.pyi +10 -26
  42. bl_ui/properties_physics_fluid/__init__.pyi +28 -51
  43. bl_ui/properties_physics_rigidbody/__init__.pyi +8 -18
  44. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +13 -25
  45. bl_ui/properties_physics_softbody/__init__.pyi +15 -43
  46. bl_ui/properties_render/__init__.pyi +54 -150
  47. bl_ui/properties_scene/__init__.pyi +29 -42
  48. bl_ui/properties_texture/__init__.pyi +26 -58
  49. bl_ui/properties_view_layer/__init__.pyi +16 -43
  50. bl_ui/properties_workspace/__init__.pyi +3 -9
  51. bl_ui/properties_world/__init__.pyi +10 -19
  52. bl_ui/space_clip/__init__.pyi +31 -93
  53. bl_ui/space_dopesheet/__init__.pyi +13 -66
  54. bl_ui/space_filebrowser/__init__.pyi +17 -38
  55. bl_ui/space_graph/__init__.pyi +1 -6
  56. bl_ui/space_image/__init__.pyi +190 -235
  57. bl_ui/space_nla/__init__.pyi +2 -11
  58. bl_ui/space_node/__init__.pyi +3 -16
  59. bl_ui/space_sequencer/__init__.pyi +34 -104
  60. bl_ui/space_time/__init__.pyi +3 -7
  61. bl_ui/space_toolsystem_toolbar/__init__.pyi +4 -21
  62. bl_ui/space_userpref/__init__.pyi +76 -215
  63. bl_ui/space_view3d/__init__.pyi +91 -147
  64. bl_ui/space_view3d_toolbar/__init__.pyi +435 -543
  65. bpy_extras/node_shader_utils/__init__.pyi +118 -118
  66. {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/METADATA +1 -1
  67. {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/RECORD +71 -71
  68. {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/WHEEL +1 -1
  69. keyingsets_builtins/__init__.pyi +2 -2
  70. nodeitems_builtins/__init__.pyi +3 -3
  71. {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/top_level.txt +0 -0
@@ -1,17 +1,14 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bl_ui.properties_grease_pencil_common
5
- import bl_ui.properties_mask_common
6
4
  import bl_ui.properties_paint_common
7
- import bl_ui.space_toolsystem_common
8
5
  import bpy.types
9
6
  import bpy_types
10
7
 
11
8
  GenericType1 = typing.TypeVar("GenericType1")
12
9
  GenericType2 = typing.TypeVar("GenericType2")
13
10
 
14
- class BrushButtonsPanel(bl_ui.properties_paint_common.UnifiedPaintPanel):
11
+ class BrushButtonsPanel:
15
12
  bl_region_type: typing.Any
16
13
  bl_space_type: typing.Any
17
14
 
@@ -24,7 +21,7 @@ class BrushButtonsPanel(bl_ui.properties_paint_common.UnifiedPaintPanel):
24
21
  ...
25
22
 
26
23
  class IMAGE_AST_brush_paint(
27
- bl_ui.properties_paint_common.BrushAssetShelf, ImageAssetShelf, bpy.types.AssetShelf
24
+ bl_ui.properties_paint_common.BrushAssetShelf, bpy.types.AssetShelf
28
25
  ):
29
26
  bl_activate_operator: typing.Any
30
27
  bl_default_preview_size: typing.Any
@@ -784,9 +781,7 @@ class IMAGE_MT_view_zoom(bpy.types.Menu, bpy_types._GenericUI):
784
781
  """
785
782
  ...
786
783
 
787
- class IMAGE_PT_active_mask_point(
788
- bpy.types.Panel, bl_ui.properties_mask_common.MASK_PT_point, bpy_types._GenericUI
789
- ):
784
+ class IMAGE_PT_active_mask_point(bpy.types.Panel, bpy_types._GenericUI):
790
785
  bl_category: typing.Any
791
786
  bl_label: typing.Any
792
787
  bl_region_type: typing.Any
@@ -810,9 +805,7 @@ class IMAGE_PT_active_mask_point(
810
805
  """
811
806
  ...
812
807
 
813
- class IMAGE_PT_active_mask_spline(
814
- bpy.types.Panel, bl_ui.properties_mask_common.MASK_PT_spline, bpy_types._GenericUI
815
- ):
808
+ class IMAGE_PT_active_mask_spline(bpy.types.Panel, bpy_types._GenericUI):
816
809
  bl_category: typing.Any
817
810
  bl_label: typing.Any
818
811
  bl_region_type: typing.Any
@@ -836,11 +829,7 @@ class IMAGE_PT_active_mask_spline(
836
829
  """
837
830
  ...
838
831
 
839
- class IMAGE_PT_active_tool(
840
- bpy_types._GenericUI,
841
- bpy.types.Panel,
842
- bl_ui.space_toolsystem_common.ToolActivePanelHelper,
843
- ):
832
+ class IMAGE_PT_active_tool(bpy.types.Panel, bpy_types._GenericUI):
844
833
  bl_category: typing.Any
845
834
  bl_label: typing.Any
846
835
  bl_region_type: typing.Any
@@ -864,11 +853,7 @@ class IMAGE_PT_active_tool(
864
853
  """
865
854
  ...
866
855
 
867
- class IMAGE_PT_annotation(
868
- bpy.types.Panel,
869
- bl_ui.properties_grease_pencil_common.AnnotationDataPanel,
870
- bpy_types._GenericUI,
871
- ):
856
+ class IMAGE_PT_annotation(bpy.types.Panel, bpy_types._GenericUI):
872
857
  bl_category: typing.Any
873
858
  bl_label: typing.Any
874
859
  bl_options: typing.Any
@@ -963,9 +948,7 @@ class IMAGE_PT_image_properties(bpy.types.Panel, bpy_types._GenericUI):
963
948
  """
964
949
  ...
965
950
 
966
- class IMAGE_PT_mask(
967
- bpy.types.Panel, bl_ui.properties_mask_common.MASK_PT_mask, bpy_types._GenericUI
968
- ):
951
+ class IMAGE_PT_mask(bpy.types.Panel, bpy_types._GenericUI):
969
952
  bl_category: typing.Any
970
953
  bl_label: typing.Any
971
954
  bl_options: typing.Any
@@ -990,9 +973,7 @@ class IMAGE_PT_mask(
990
973
  """
991
974
  ...
992
975
 
993
- class IMAGE_PT_mask_display(
994
- bpy.types.Panel, bl_ui.properties_mask_common.MASK_PT_display, bpy_types._GenericUI
995
- ):
976
+ class IMAGE_PT_mask_display(bpy.types.Panel, bpy_types._GenericUI):
996
977
  bl_label: typing.Any
997
978
  bl_region_type: typing.Any
998
979
  bl_rna: typing.Any
@@ -1015,9 +996,7 @@ class IMAGE_PT_mask_display(
1015
996
  """
1016
997
  ...
1017
998
 
1018
- class IMAGE_PT_mask_layers(
1019
- bpy.types.Panel, bl_ui.properties_mask_common.MASK_PT_layers, bpy_types._GenericUI
1020
- ):
999
+ class IMAGE_PT_mask_layers(bpy.types.Panel, bpy_types._GenericUI):
1021
1000
  bl_category: typing.Any
1022
1001
  bl_label: typing.Any
1023
1002
  bl_region_type: typing.Any
@@ -1261,10 +1240,8 @@ class IMAGE_PT_overlay_uv_stretch(bpy.types.Panel, bpy_types._GenericUI):
1261
1240
 
1262
1241
  class IMAGE_PT_paint_clone(
1263
1242
  bl_ui.properties_paint_common.BrushPanel,
1264
- ImagePaintPanel,
1265
1243
  bpy.types.Panel,
1266
1244
  bpy_types._GenericUI,
1267
- bl_ui.properties_paint_common.ClonePanel,
1268
1245
  bl_ui.properties_paint_common.UnifiedPaintPanel,
1269
1246
  ):
1270
1247
  bl_category: typing.Any
@@ -1293,16 +1270,51 @@ class IMAGE_PT_paint_clone(
1293
1270
  """
1294
1271
  ...
1295
1272
 
1296
- class ImagePaintPanel:
1273
+ class IMAGE_PT_paint_color(bpy.types.Panel, bpy_types._GenericUI):
1274
+ bl_category: typing.Any
1275
+ bl_context: typing.Any
1276
+ bl_label: typing.Any
1277
+ bl_parent_id: typing.Any
1297
1278
  bl_region_type: typing.Any
1279
+ bl_rna: typing.Any
1298
1280
  bl_space_type: typing.Any
1281
+ id_data: typing.Any
1282
+
1283
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
1284
+ """
1285
+
1286
+ :return: The RNA type or default when not found.
1287
+ :rtype: bpy.types.Struct
1288
+ """
1289
+ ...
1290
+
1291
+ def bl_rna_get_subclass_py(self) -> typing.Any:
1292
+ """
1293
+
1294
+ :return: The class or default when not found.
1295
+ :rtype: typing.Any
1296
+ """
1297
+ ...
1298
+
1299
+ def draw(self, context):
1300
+ """
1301
+
1302
+ :param context:
1303
+ """
1304
+ ...
1305
+
1306
+ @classmethod
1307
+ def poll(cls, context):
1308
+ """
1309
+
1310
+ :param context:
1311
+ """
1312
+ ...
1299
1313
 
1300
1314
  class IMAGE_PT_paint_curve(
1301
1315
  bl_ui.properties_paint_common.BrushPanel,
1302
- bpy_types._GenericUI,
1303
- BrushButtonsPanel,
1304
1316
  bpy.types.Panel,
1305
- bl_ui.properties_paint_common.FalloffPanel,
1317
+ bpy_types._GenericUI,
1306
1318
  bl_ui.properties_paint_common.UnifiedPaintPanel,
1307
1319
  ):
1308
1320
  bl_category: typing.Any
@@ -1333,10 +1345,8 @@ class IMAGE_PT_paint_curve(
1333
1345
 
1334
1346
  class IMAGE_PT_paint_select(
1335
1347
  bl_ui.properties_paint_common.BrushPanel,
1336
- ImagePaintPanel,
1337
1348
  bpy.types.Panel,
1338
1349
  bpy_types._GenericUI,
1339
- bl_ui.properties_paint_common.BrushSelectPanel,
1340
1350
  bl_ui.properties_paint_common.UnifiedPaintPanel,
1341
1351
  ):
1342
1352
  bl_category: typing.Any
@@ -1363,12 +1373,76 @@ class IMAGE_PT_paint_select(
1363
1373
  """
1364
1374
  ...
1365
1375
 
1376
+ class IMAGE_PT_paint_settings(bpy.types.Panel, bpy_types._GenericUI):
1377
+ bl_category: typing.Any
1378
+ bl_context: typing.Any
1379
+ bl_label: typing.Any
1380
+ bl_region_type: typing.Any
1381
+ bl_rna: typing.Any
1382
+ bl_space_type: typing.Any
1383
+ id_data: typing.Any
1384
+
1385
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
1386
+ """
1387
+
1388
+ :return: The RNA type or default when not found.
1389
+ :rtype: bpy.types.Struct
1390
+ """
1391
+ ...
1392
+
1393
+ def bl_rna_get_subclass_py(self) -> typing.Any:
1394
+ """
1395
+
1396
+ :return: The class or default when not found.
1397
+ :rtype: typing.Any
1398
+ """
1399
+ ...
1400
+
1401
+ def draw(self, context):
1402
+ """
1403
+
1404
+ :param context:
1405
+ """
1406
+ ...
1407
+
1408
+ class IMAGE_PT_paint_settings_advanced(bpy.types.Panel, bpy_types._GenericUI):
1409
+ bl_category: typing.Any
1410
+ bl_context: typing.Any
1411
+ bl_label: typing.Any
1412
+ bl_parent_id: typing.Any
1413
+ bl_region_type: typing.Any
1414
+ bl_rna: typing.Any
1415
+ bl_space_type: typing.Any
1416
+ bl_ui_units_x: typing.Any
1417
+ id_data: typing.Any
1418
+
1419
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
1420
+ """
1421
+
1422
+ :return: The RNA type or default when not found.
1423
+ :rtype: bpy.types.Struct
1424
+ """
1425
+ ...
1426
+
1427
+ def bl_rna_get_subclass_py(self) -> typing.Any:
1428
+ """
1429
+
1430
+ :return: The class or default when not found.
1431
+ :rtype: typing.Any
1432
+ """
1433
+ ...
1434
+
1435
+ def draw(self, context):
1436
+ """
1437
+
1438
+ :param context:
1439
+ """
1440
+ ...
1441
+
1366
1442
  class IMAGE_PT_paint_stroke(
1367
1443
  bl_ui.properties_paint_common.BrushPanel,
1368
- bpy_types._GenericUI,
1369
- BrushButtonsPanel,
1370
1444
  bpy.types.Panel,
1371
- bl_ui.properties_paint_common.StrokePanel,
1445
+ bpy_types._GenericUI,
1372
1446
  bl_ui.properties_paint_common.UnifiedPaintPanel,
1373
1447
  ):
1374
1448
  bl_category: typing.Any
@@ -1400,10 +1474,8 @@ class IMAGE_PT_paint_stroke(
1400
1474
 
1401
1475
  class IMAGE_PT_paint_stroke_smooth_stroke(
1402
1476
  bl_ui.properties_paint_common.BrushPanel,
1403
- BrushButtonsPanel,
1404
1477
  bpy.types.Panel,
1405
1478
  bpy_types._GenericUI,
1406
- bl_ui.properties_paint_common.SmoothStrokePanel,
1407
1479
  bl_ui.properties_paint_common.UnifiedPaintPanel,
1408
1480
  ):
1409
1481
  bl_category: typing.Any
@@ -1434,10 +1506,8 @@ class IMAGE_PT_paint_stroke_smooth_stroke(
1434
1506
 
1435
1507
  class IMAGE_PT_paint_swatches(
1436
1508
  bl_ui.properties_paint_common.BrushPanel,
1437
- ImagePaintPanel,
1438
1509
  bpy.types.Panel,
1439
1510
  bpy_types._GenericUI,
1440
- bl_ui.properties_paint_common.ColorPalettePanel,
1441
1511
  bl_ui.properties_paint_common.UnifiedPaintPanel,
1442
1512
  ):
1443
1513
  bl_category: typing.Any
@@ -1536,7 +1606,7 @@ class IMAGE_PT_render_slots(bpy.types.Panel, bpy_types._GenericUI):
1536
1606
  """
1537
1607
  ...
1538
1608
 
1539
- class IMAGE_PT_sample_line(bpy.types.Panel, ImageScopesPanel, bpy_types._GenericUI):
1609
+ class IMAGE_PT_sample_line(bpy.types.Panel, bpy_types._GenericUI):
1540
1610
  bl_category: typing.Any
1541
1611
  bl_label: typing.Any
1542
1612
  bl_region_type: typing.Any
@@ -1567,7 +1637,7 @@ class IMAGE_PT_sample_line(bpy.types.Panel, ImageScopesPanel, bpy_types._Generic
1567
1637
  """
1568
1638
  ...
1569
1639
 
1570
- class IMAGE_PT_scope_sample(bpy.types.Panel, ImageScopesPanel, bpy_types._GenericUI):
1640
+ class IMAGE_PT_scope_sample(bpy.types.Panel, bpy_types._GenericUI):
1571
1641
  bl_category: typing.Any
1572
1642
  bl_label: typing.Any
1573
1643
  bl_options: typing.Any
@@ -1631,10 +1701,8 @@ class IMAGE_PT_snapping(bpy.types.Panel, bpy_types._GenericUI):
1631
1701
 
1632
1702
  class IMAGE_PT_tools_brush_display(
1633
1703
  bl_ui.properties_paint_common.BrushPanel,
1634
- BrushButtonsPanel,
1635
1704
  bpy.types.Panel,
1636
1705
  bpy_types._GenericUI,
1637
- bl_ui.properties_paint_common.DisplayPanel,
1638
1706
  bl_ui.properties_paint_common.UnifiedPaintPanel,
1639
1707
  ):
1640
1708
  bl_category: typing.Any
@@ -1666,7 +1734,6 @@ class IMAGE_PT_tools_brush_display(
1666
1734
 
1667
1735
  class IMAGE_PT_tools_brush_texture(
1668
1736
  bpy.types.Panel,
1669
- BrushButtonsPanel,
1670
1737
  bl_ui.properties_paint_common.UnifiedPaintPanel,
1671
1738
  bpy_types._GenericUI,
1672
1739
  ):
@@ -1705,7 +1772,6 @@ class IMAGE_PT_tools_brush_texture(
1705
1772
 
1706
1773
  class IMAGE_PT_tools_imagepaint_symmetry(
1707
1774
  bpy.types.Panel,
1708
- BrushButtonsPanel,
1709
1775
  bl_ui.properties_paint_common.UnifiedPaintPanel,
1710
1776
  bpy_types._GenericUI,
1711
1777
  ):
@@ -1743,10 +1809,8 @@ class IMAGE_PT_tools_imagepaint_symmetry(
1743
1809
 
1744
1810
  class IMAGE_PT_tools_mask_texture(
1745
1811
  bl_ui.properties_paint_common.BrushPanel,
1746
- BrushButtonsPanel,
1747
1812
  bpy.types.Panel,
1748
1813
  bpy_types._GenericUI,
1749
- bl_ui.properties_paint_common.TextureMaskPanel,
1750
1814
  bl_ui.properties_paint_common.UnifiedPaintPanel,
1751
1815
  ):
1752
1816
  bl_category: typing.Any
@@ -1854,6 +1918,71 @@ class IMAGE_PT_uv_cursor(bpy.types.Panel, bpy_types._GenericUI):
1854
1918
  """
1855
1919
  ...
1856
1920
 
1921
+ class IMAGE_PT_uv_sculpt_curve(bpy.types.Panel, bpy_types._GenericUI):
1922
+ bl_category: typing.Any
1923
+ bl_context: typing.Any
1924
+ bl_label: typing.Any
1925
+ bl_options: typing.Any
1926
+ bl_region_type: typing.Any
1927
+ bl_rna: typing.Any
1928
+ bl_space_type: typing.Any
1929
+ id_data: typing.Any
1930
+
1931
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
1932
+ """
1933
+
1934
+ :return: The RNA type or default when not found.
1935
+ :rtype: bpy.types.Struct
1936
+ """
1937
+ ...
1938
+
1939
+ def bl_rna_get_subclass_py(self) -> typing.Any:
1940
+ """
1941
+
1942
+ :return: The class or default when not found.
1943
+ :rtype: typing.Any
1944
+ """
1945
+ ...
1946
+
1947
+ def draw(self, context):
1948
+ """
1949
+
1950
+ :param context:
1951
+ """
1952
+ ...
1953
+
1954
+ class IMAGE_PT_uv_sculpt_options(bpy.types.Panel, bpy_types._GenericUI):
1955
+ bl_category: typing.Any
1956
+ bl_context: typing.Any
1957
+ bl_label: typing.Any
1958
+ bl_region_type: typing.Any
1959
+ bl_rna: typing.Any
1960
+ bl_space_type: typing.Any
1961
+ id_data: typing.Any
1962
+
1963
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
1964
+ """
1965
+
1966
+ :return: The RNA type or default when not found.
1967
+ :rtype: bpy.types.Struct
1968
+ """
1969
+ ...
1970
+
1971
+ def bl_rna_get_subclass_py(self) -> typing.Any:
1972
+ """
1973
+
1974
+ :return: The class or default when not found.
1975
+ :rtype: typing.Any
1976
+ """
1977
+ ...
1978
+
1979
+ def draw(self, context):
1980
+ """
1981
+
1982
+ :param context:
1983
+ """
1984
+ ...
1985
+
1857
1986
  class IMAGE_PT_view_display(bpy.types.Panel, bpy_types._GenericUI):
1858
1987
  bl_category: typing.Any
1859
1988
  bl_label: typing.Any
@@ -1893,7 +2022,7 @@ class IMAGE_PT_view_display(bpy.types.Panel, bpy_types._GenericUI):
1893
2022
  """
1894
2023
  ...
1895
2024
 
1896
- class IMAGE_PT_view_histogram(bpy.types.Panel, ImageScopesPanel, bpy_types._GenericUI):
2025
+ class IMAGE_PT_view_histogram(bpy.types.Panel, bpy_types._GenericUI):
1897
2026
  bl_category: typing.Any
1898
2027
  bl_label: typing.Any
1899
2028
  bl_region_type: typing.Any
@@ -1924,9 +2053,7 @@ class IMAGE_PT_view_histogram(bpy.types.Panel, ImageScopesPanel, bpy_types._Gene
1924
2053
  """
1925
2054
  ...
1926
2055
 
1927
- class IMAGE_PT_view_vectorscope(
1928
- bpy.types.Panel, ImageScopesPanel, bpy_types._GenericUI
1929
- ):
2056
+ class IMAGE_PT_view_vectorscope(bpy.types.Panel, bpy_types._GenericUI):
1930
2057
  bl_category: typing.Any
1931
2058
  bl_label: typing.Any
1932
2059
  bl_region_type: typing.Any
@@ -1957,7 +2084,7 @@ class IMAGE_PT_view_vectorscope(
1957
2084
  """
1958
2085
  ...
1959
2086
 
1960
- class IMAGE_PT_view_waveform(bpy.types.Panel, ImageScopesPanel, bpy_types._GenericUI):
2087
+ class IMAGE_PT_view_waveform(bpy.types.Panel, bpy_types._GenericUI):
1961
2088
  bl_category: typing.Any
1962
2089
  bl_label: typing.Any
1963
2090
  bl_region_type: typing.Any
@@ -2076,12 +2203,16 @@ class IMAGE_UL_udim_tiles(bpy.types.UIList, bpy_types._GenericUI):
2076
2203
  """
2077
2204
  ...
2078
2205
 
2079
- class ImageAssetShelf(bl_ui.properties_paint_common.BrushAssetShelf):
2206
+ class ImageAssetShelf:
2080
2207
  bl_activate_operator: typing.Any
2081
2208
  bl_default_preview_size: typing.Any
2082
2209
  bl_options: typing.Any
2083
2210
  bl_space_type: typing.Any
2084
2211
 
2212
+ class ImagePaintPanel:
2213
+ bl_region_type: typing.Any
2214
+ bl_space_type: typing.Any
2215
+
2085
2216
  class ImageScopesPanel:
2086
2217
  @classmethod
2087
2218
  def poll(cls, context):
@@ -2111,179 +2242,3 @@ class _draw_tool_settings_context_mode:
2111
2242
  :param tool:
2112
2243
  """
2113
2244
  ...
2114
-
2115
- class IMAGE_PT_paint_color(bpy_types._GenericUI, bpy.types.Panel, ImagePaintPanel):
2116
- bl_category: typing.Any
2117
- bl_context: typing.Any
2118
- bl_label: typing.Any
2119
- bl_parent_id: typing.Any
2120
- bl_region_type: typing.Any
2121
- bl_rna: typing.Any
2122
- bl_space_type: typing.Any
2123
- id_data: typing.Any
2124
-
2125
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
2126
- """
2127
-
2128
- :return: The RNA type or default when not found.
2129
- :rtype: bpy.types.Struct
2130
- """
2131
- ...
2132
-
2133
- def bl_rna_get_subclass_py(self) -> typing.Any:
2134
- """
2135
-
2136
- :return: The class or default when not found.
2137
- :rtype: typing.Any
2138
- """
2139
- ...
2140
-
2141
- def draw(self, context):
2142
- """
2143
-
2144
- :param context:
2145
- """
2146
- ...
2147
-
2148
- @classmethod
2149
- def poll(cls, context):
2150
- """
2151
-
2152
- :param context:
2153
- """
2154
- ...
2155
-
2156
- class IMAGE_PT_paint_settings(bpy_types._GenericUI, bpy.types.Panel, ImagePaintPanel):
2157
- bl_category: typing.Any
2158
- bl_context: typing.Any
2159
- bl_label: typing.Any
2160
- bl_region_type: typing.Any
2161
- bl_rna: typing.Any
2162
- bl_space_type: typing.Any
2163
- id_data: typing.Any
2164
-
2165
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
2166
- """
2167
-
2168
- :return: The RNA type or default when not found.
2169
- :rtype: bpy.types.Struct
2170
- """
2171
- ...
2172
-
2173
- def bl_rna_get_subclass_py(self) -> typing.Any:
2174
- """
2175
-
2176
- :return: The class or default when not found.
2177
- :rtype: typing.Any
2178
- """
2179
- ...
2180
-
2181
- def draw(self, context):
2182
- """
2183
-
2184
- :param context:
2185
- """
2186
- ...
2187
-
2188
- class IMAGE_PT_paint_settings_advanced(
2189
- bpy_types._GenericUI, bpy.types.Panel, ImagePaintPanel
2190
- ):
2191
- bl_category: typing.Any
2192
- bl_context: typing.Any
2193
- bl_label: typing.Any
2194
- bl_parent_id: typing.Any
2195
- bl_region_type: typing.Any
2196
- bl_rna: typing.Any
2197
- bl_space_type: typing.Any
2198
- bl_ui_units_x: typing.Any
2199
- id_data: typing.Any
2200
-
2201
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
2202
- """
2203
-
2204
- :return: The RNA type or default when not found.
2205
- :rtype: bpy.types.Struct
2206
- """
2207
- ...
2208
-
2209
- def bl_rna_get_subclass_py(self) -> typing.Any:
2210
- """
2211
-
2212
- :return: The class or default when not found.
2213
- :rtype: typing.Any
2214
- """
2215
- ...
2216
-
2217
- def draw(self, context):
2218
- """
2219
-
2220
- :param context:
2221
- """
2222
- ...
2223
-
2224
- class IMAGE_PT_uv_sculpt_curve(bpy_types._GenericUI, bpy.types.Panel, ImagePaintPanel):
2225
- bl_category: typing.Any
2226
- bl_context: typing.Any
2227
- bl_label: typing.Any
2228
- bl_options: typing.Any
2229
- bl_region_type: typing.Any
2230
- bl_rna: typing.Any
2231
- bl_space_type: typing.Any
2232
- id_data: typing.Any
2233
-
2234
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
2235
- """
2236
-
2237
- :return: The RNA type or default when not found.
2238
- :rtype: bpy.types.Struct
2239
- """
2240
- ...
2241
-
2242
- def bl_rna_get_subclass_py(self) -> typing.Any:
2243
- """
2244
-
2245
- :return: The class or default when not found.
2246
- :rtype: typing.Any
2247
- """
2248
- ...
2249
-
2250
- def draw(self, context):
2251
- """
2252
-
2253
- :param context:
2254
- """
2255
- ...
2256
-
2257
- class IMAGE_PT_uv_sculpt_options(
2258
- bpy_types._GenericUI, bpy.types.Panel, ImagePaintPanel
2259
- ):
2260
- bl_category: typing.Any
2261
- bl_context: typing.Any
2262
- bl_label: typing.Any
2263
- bl_region_type: typing.Any
2264
- bl_rna: typing.Any
2265
- bl_space_type: typing.Any
2266
- id_data: typing.Any
2267
-
2268
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
2269
- """
2270
-
2271
- :return: The RNA type or default when not found.
2272
- :rtype: bpy.types.Struct
2273
- """
2274
- ...
2275
-
2276
- def bl_rna_get_subclass_py(self) -> typing.Any:
2277
- """
2278
-
2279
- :return: The class or default when not found.
2280
- :rtype: typing.Any
2281
- """
2282
- ...
2283
-
2284
- def draw(self, context):
2285
- """
2286
-
2287
- :param context:
2288
- """
2289
- ...
@@ -1,7 +1,6 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bl_ui.space_dopesheet
5
4
  import bpy.types
6
5
  import bpy_types
7
6
 
@@ -403,11 +402,7 @@ class NLA_MT_view_pie(bpy.types.Menu, bpy_types._GenericUI):
403
402
  """
404
403
  ...
405
404
 
406
- class NLA_PT_action(
407
- bpy.types.Panel,
408
- bl_ui.space_dopesheet.DopesheetActionPanelBase,
409
- bpy_types._GenericUI,
410
- ):
405
+ class NLA_PT_action(bpy.types.Panel, bpy_types._GenericUI):
411
406
  bl_category: typing.Any
412
407
  bl_label: typing.Any
413
408
  bl_options: typing.Any
@@ -447,11 +442,7 @@ class NLA_PT_action(
447
442
  """
448
443
  ...
449
444
 
450
- class NLA_PT_filters(
451
- bpy.types.Panel,
452
- bl_ui.space_dopesheet.DopesheetFilterPopoverBase,
453
- bpy_types._GenericUI,
454
- ):
445
+ class NLA_PT_filters(bpy.types.Panel, bpy_types._GenericUI):
455
446
  bl_label: typing.Any
456
447
  bl_region_type: typing.Any
457
448
  bl_rna: typing.Any
@@ -1,9 +1,6 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bl_ui.properties_grease_pencil_common
5
- import bl_ui.space_toolsystem_common
6
- import bl_ui.utils
7
4
  import bpy.types
8
5
  import bpy_types
9
6
 
@@ -483,11 +480,7 @@ class NODE_PT_active_node_properties(bpy.types.Panel, bpy_types._GenericUI):
483
480
  """
484
481
  ...
485
482
 
486
- class NODE_PT_active_tool(
487
- bpy.types.Panel,
488
- bl_ui.space_toolsystem_common.ToolActivePanelHelper,
489
- bpy_types._GenericUI,
490
- ):
483
+ class NODE_PT_active_tool(bpy.types.Panel, bpy_types._GenericUI):
491
484
  bl_category: typing.Any
492
485
  bl_label: typing.Any
493
486
  bl_region_type: typing.Any
@@ -511,11 +504,7 @@ class NODE_PT_active_tool(
511
504
  """
512
505
  ...
513
506
 
514
- class NODE_PT_annotation(
515
- bpy.types.Panel,
516
- bl_ui.properties_grease_pencil_common.AnnotationDataPanel,
517
- bpy_types._GenericUI,
518
- ):
507
+ class NODE_PT_annotation(bpy.types.Panel, bpy_types._GenericUI):
519
508
  bl_category: typing.Any
520
509
  bl_label: typing.Any
521
510
  bl_options: typing.Any
@@ -725,9 +714,7 @@ class NODE_PT_material_slots(bpy.types.Panel, bpy_types._GenericUI):
725
714
  """
726
715
  ...
727
716
 
728
- class NODE_PT_node_color_presets(
729
- bpy.types.Panel, bl_ui.utils.PresetPanel, bpy_types._GenericUI
730
- ):
717
+ class NODE_PT_node_color_presets(bpy.types.Panel, bpy_types._GenericUI):
731
718
  """Predefined node color"""
732
719
 
733
720
  bl_label: typing.Any