fake-bpy-module 20240706__py3-none-any.whl → 20240708__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 (63) hide show
  1. bl_operators/assets/__init__.pyi +8 -8
  2. bl_operators/image_as_planes/__init__.pyi +43 -43
  3. bl_operators/node/__init__.pyi +234 -234
  4. bl_operators/object_quick_effects/__init__.pyi +21 -21
  5. bl_operators/presets/__init__.pyi +388 -388
  6. bl_ui/properties_collection/__init__.pyi +12 -12
  7. bl_ui/properties_constraint/__init__.pyi +954 -954
  8. bl_ui/properties_data_armature/__init__.pyi +85 -85
  9. bl_ui/properties_data_bone/__init__.pyi +12 -12
  10. bl_ui/properties_data_curve/__init__.pyi +92 -92
  11. bl_ui/properties_data_curves/__init__.pyi +12 -12
  12. bl_ui/properties_data_empty/__init__.pyi +12 -12
  13. bl_ui/properties_data_gpencil/__init__.pyi +265 -265
  14. bl_ui/properties_data_grease_pencil/__init__.pyi +312 -312
  15. bl_ui/properties_data_lattice/__init__.pyi +12 -12
  16. bl_ui/properties_data_light/__init__.pyi +12 -12
  17. bl_ui/properties_data_lightprobe/__init__.pyi +12 -12
  18. bl_ui/properties_data_mesh/__init__.pyi +527 -527
  19. bl_ui/properties_data_metaball/__init__.pyi +12 -12
  20. bl_ui/properties_data_modifier/__init__.pyi +19 -19
  21. bl_ui/properties_data_pointcloud/__init__.pyi +140 -140
  22. bl_ui/properties_data_shaderfx/__init__.pyi +5 -5
  23. bl_ui/properties_data_speaker/__init__.pyi +12 -12
  24. bl_ui/properties_data_volume/__init__.pyi +65 -65
  25. bl_ui/properties_freestyle/__init__.pyi +248 -248
  26. bl_ui/properties_material/__init__.pyi +145 -145
  27. bl_ui/properties_material_gpencil/__init__.pyi +86 -86
  28. bl_ui/properties_object/__init__.pyi +75 -75
  29. bl_ui/properties_output/__init__.pyi +201 -201
  30. bl_ui/properties_particle/__init__.pyi +220 -220
  31. bl_ui/properties_physics_cloth/__init__.pyi +12 -12
  32. bl_ui/properties_physics_common/__init__.pyi +12 -12
  33. bl_ui/properties_physics_dynamicpaint/__init__.pyi +187 -187
  34. bl_ui/properties_physics_field/__init__.pyi +19 -19
  35. bl_ui/properties_physics_fluid/__init__.pyi +61 -61
  36. bl_ui/properties_physics_rigidbody/__init__.pyi +5 -5
  37. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +5 -5
  38. bl_ui/properties_physics_softbody/__init__.pyi +12 -12
  39. bl_ui/properties_render/__init__.pyi +217 -217
  40. bl_ui/properties_scene/__init__.pyi +143 -143
  41. bl_ui/properties_texture/__init__.pyi +156 -156
  42. bl_ui/properties_view_layer/__init__.pyi +78 -78
  43. bl_ui/properties_workspace/__init__.pyi +64 -64
  44. bl_ui/properties_world/__init__.pyi +12 -12
  45. bl_ui/space_clip/__init__.pyi +366 -366
  46. bl_ui/space_dopesheet/__init__.pyi +176 -176
  47. bl_ui/space_filebrowser/__init__.pyi +735 -735
  48. bl_ui/space_image/__init__.pyi +646 -646
  49. bl_ui/space_sequencer/__init__.pyi +841 -389
  50. bl_ui/space_time/__init__.pyi +11 -11
  51. bl_ui/space_userpref/__init__.pyi +684 -684
  52. bl_ui/space_view3d/__init__.pyi +1152 -1152
  53. bl_ui/space_view3d_toolbar/__init__.pyi +2831 -2831
  54. bmesh/types/__init__.pyi +48 -0
  55. bpy/types/__init__.pyi +70624 -70606
  56. {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240708.dist-info}/METADATA +4 -4
  57. {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240708.dist-info}/RECORD +63 -63
  58. freestyle/utils/__init__.pyi +1 -1
  59. keyingsets_builtins/__init__.pyi +87 -87
  60. mathutils/__init__.pyi +156 -50
  61. nodeitems_builtins/__init__.pyi +7 -7
  62. {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240708.dist-info}/WHEEL +0 -0
  63. {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240708.dist-info}/top_level.txt +0 -0
@@ -524,19 +524,22 @@ class GPMaterialButtonsPanel:
524
524
  """
525
525
  ...
526
526
 
527
- class MATERIAL_PT_gpencil_material_presets(
528
- bl_ui.utils.PresetPanel, bpy_types._GenericUI
527
+ class MATERIAL_PT_gpencil_custom_props(
528
+ GPMaterialButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
529
529
  ):
530
- """Material settings"""
530
+ """The subclass should have its own poll function
531
+ and the variable '_context_path' MUST be set.
532
+ """
531
533
 
534
+ COMPAT_ENGINES: typing.Any
535
+ bl_context: typing.Any
532
536
  bl_label: typing.Any
537
+ bl_options: typing.Any
538
+ bl_order: typing.Any
533
539
  bl_region_type: typing.Any
534
540
  bl_rna: typing.Any
535
541
  bl_space_type: typing.Any
536
542
  id_data: typing.Any
537
- preset_add_operator: typing.Any
538
- preset_operator: typing.Any
539
- preset_subdir: typing.Any
540
543
 
541
544
  def append(self, draw_func):
542
545
  """Append a draw function to this menu,
@@ -577,21 +580,6 @@ class MATERIAL_PT_gpencil_material_presets(
577
580
  """
578
581
  ...
579
582
 
580
- def draw_menu(self, layout, text=None):
581
- """
582
-
583
- :param layout:
584
- :param text:
585
- """
586
- ...
587
-
588
- def draw_panel_header(self, layout):
589
- """
590
-
591
- :param layout:
592
- """
593
- ...
594
-
595
583
  def driver_add(self) -> bpy.types.FCurve:
596
584
  """Adds driver(s) to the given property
597
585
 
@@ -710,42 +698,15 @@ class MATERIAL_PT_gpencil_material_presets(
710
698
  """
711
699
  ...
712
700
 
713
- def path_menu(
714
- self,
715
- searchpaths: list[str],
716
- operator: str,
717
- props_default: dict = None,
718
- prop_filepath: str | None = "filepath",
719
- filter_ext: collections.abc.Callable | None = None,
720
- filter_path=None,
721
- display_name: collections.abc.Callable | None = None,
722
- add_operator=None,
723
- add_operator_props=None,
724
- ):
725
- """Populate a menu from a list of paths.
726
-
727
- :param searchpaths: Paths to scan.
728
- :type searchpaths: list[str]
729
- :param operator: The operator id to use with each file.
730
- :type operator: str
731
- :param props_default: Properties to assign to each operator.
732
- :type props_default: dict
733
- :param prop_filepath: Optional operator filepath property (defaults to "filepath").
734
- :type prop_filepath: str | None
735
- :param filter_ext: Optional callback that takes the file extensions.
701
+ def path_resolve(self):
702
+ """Returns the property from the path, raise an exception when not found."""
703
+ ...
736
704
 
737
- Returning false excludes the file from the list.
738
- :type filter_ext: collections.abc.Callable | None
739
- :param filter_path:
740
- :param display_name: Optional callback that takes the full path, returns the name to display.
741
- :type display_name: collections.abc.Callable | None
742
- :param add_operator:
743
- :param add_operator_props:
705
+ def poll(self, context):
744
706
  """
745
- ...
746
707
 
747
- def path_resolve(self):
748
- """Returns the property from the path, raise an exception when not found."""
708
+ :param context:
709
+ """
749
710
  ...
750
711
 
751
712
  def pop(self):
@@ -798,13 +759,10 @@ class MATERIAL_PT_gpencil_material_presets(
798
759
  """
799
760
  ...
800
761
 
801
- class MATERIAL_PT_gpencil_slots(
802
- bl_ui.properties_grease_pencil_common.GreasePencilMaterialsPanel,
803
- bpy_types._GenericUI,
804
- ):
762
+ class MATERIAL_PT_gpencil_fillcolor(GPMaterialButtonsPanel, bpy_types._GenericUI):
805
763
  bl_context: typing.Any
806
764
  bl_label: typing.Any
807
- bl_options: typing.Any
765
+ bl_parent_id: typing.Any
808
766
  bl_region_type: typing.Any
809
767
  bl_rna: typing.Any
810
768
  bl_space_type: typing.Any
@@ -849,6 +807,13 @@ class MATERIAL_PT_gpencil_slots(
849
807
  """
850
808
  ...
851
809
 
810
+ def draw_header(self, context):
811
+ """
812
+
813
+ :param context:
814
+ """
815
+ ...
816
+
852
817
  def driver_add(self) -> bpy.types.FCurve:
853
818
  """Adds driver(s) to the given property
854
819
 
@@ -1028,22 +993,19 @@ class MATERIAL_PT_gpencil_slots(
1028
993
  """
1029
994
  ...
1030
995
 
1031
- class MATERIAL_PT_gpencil_custom_props(
1032
- GPMaterialButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
996
+ class MATERIAL_PT_gpencil_material_presets(
997
+ bl_ui.utils.PresetPanel, bpy_types._GenericUI
1033
998
  ):
1034
- """The subclass should have its own poll function
1035
- and the variable '_context_path' MUST be set.
1036
- """
999
+ """Material settings"""
1037
1000
 
1038
- COMPAT_ENGINES: typing.Any
1039
- bl_context: typing.Any
1040
1001
  bl_label: typing.Any
1041
- bl_options: typing.Any
1042
- bl_order: typing.Any
1043
1002
  bl_region_type: typing.Any
1044
1003
  bl_rna: typing.Any
1045
1004
  bl_space_type: typing.Any
1046
1005
  id_data: typing.Any
1006
+ preset_add_operator: typing.Any
1007
+ preset_operator: typing.Any
1008
+ preset_subdir: typing.Any
1047
1009
 
1048
1010
  def append(self, draw_func):
1049
1011
  """Append a draw function to this menu,
@@ -1084,6 +1046,21 @@ class MATERIAL_PT_gpencil_custom_props(
1084
1046
  """
1085
1047
  ...
1086
1048
 
1049
+ def draw_menu(self, layout, text=None):
1050
+ """
1051
+
1052
+ :param layout:
1053
+ :param text:
1054
+ """
1055
+ ...
1056
+
1057
+ def draw_panel_header(self, layout):
1058
+ """
1059
+
1060
+ :param layout:
1061
+ """
1062
+ ...
1063
+
1087
1064
  def driver_add(self) -> bpy.types.FCurve:
1088
1065
  """Adds driver(s) to the given property
1089
1066
 
@@ -1202,17 +1179,44 @@ class MATERIAL_PT_gpencil_custom_props(
1202
1179
  """
1203
1180
  ...
1204
1181
 
1205
- def path_resolve(self):
1206
- """Returns the property from the path, raise an exception when not found."""
1207
- ...
1182
+ def path_menu(
1183
+ self,
1184
+ searchpaths: list[str],
1185
+ operator: str,
1186
+ props_default: dict = None,
1187
+ prop_filepath: str | None = "filepath",
1188
+ filter_ext: collections.abc.Callable | None = None,
1189
+ filter_path=None,
1190
+ display_name: collections.abc.Callable | None = None,
1191
+ add_operator=None,
1192
+ add_operator_props=None,
1193
+ ):
1194
+ """Populate a menu from a list of paths.
1208
1195
 
1209
- def poll(self, context):
1210
- """
1196
+ :param searchpaths: Paths to scan.
1197
+ :type searchpaths: list[str]
1198
+ :param operator: The operator id to use with each file.
1199
+ :type operator: str
1200
+ :param props_default: Properties to assign to each operator.
1201
+ :type props_default: dict
1202
+ :param prop_filepath: Optional operator filepath property (defaults to "filepath").
1203
+ :type prop_filepath: str | None
1204
+ :param filter_ext: Optional callback that takes the file extensions.
1211
1205
 
1212
- :param context:
1206
+ Returning false excludes the file from the list.
1207
+ :type filter_ext: collections.abc.Callable | None
1208
+ :param filter_path:
1209
+ :param display_name: Optional callback that takes the full path, returns the name to display.
1210
+ :type display_name: collections.abc.Callable | None
1211
+ :param add_operator:
1212
+ :param add_operator_props:
1213
1213
  """
1214
1214
  ...
1215
1215
 
1216
+ def path_resolve(self):
1217
+ """Returns the property from the path, raise an exception when not found."""
1218
+ ...
1219
+
1216
1220
  def pop(self):
1217
1221
  """Remove and return the value of the custom property assigned to key or default
1218
1222
  when not found (matches Python's dictionary function of the same name).
@@ -1263,10 +1267,11 @@ class MATERIAL_PT_gpencil_custom_props(
1263
1267
  """
1264
1268
  ...
1265
1269
 
1266
- class MATERIAL_PT_gpencil_fillcolor(GPMaterialButtonsPanel, bpy_types._GenericUI):
1270
+ class MATERIAL_PT_gpencil_preview(GPMaterialButtonsPanel, bpy_types._GenericUI):
1271
+ COMPAT_ENGINES: typing.Any
1267
1272
  bl_context: typing.Any
1268
1273
  bl_label: typing.Any
1269
- bl_parent_id: typing.Any
1274
+ bl_options: typing.Any
1270
1275
  bl_region_type: typing.Any
1271
1276
  bl_rna: typing.Any
1272
1277
  bl_space_type: typing.Any
@@ -1311,13 +1316,6 @@ class MATERIAL_PT_gpencil_fillcolor(GPMaterialButtonsPanel, bpy_types._GenericUI
1311
1316
  """
1312
1317
  ...
1313
1318
 
1314
- def draw_header(self, context):
1315
- """
1316
-
1317
- :param context:
1318
- """
1319
- ...
1320
-
1321
1319
  def driver_add(self) -> bpy.types.FCurve:
1322
1320
  """Adds driver(s) to the given property
1323
1321
 
@@ -1497,8 +1495,7 @@ class MATERIAL_PT_gpencil_fillcolor(GPMaterialButtonsPanel, bpy_types._GenericUI
1497
1495
  """
1498
1496
  ...
1499
1497
 
1500
- class MATERIAL_PT_gpencil_preview(GPMaterialButtonsPanel, bpy_types._GenericUI):
1501
- COMPAT_ENGINES: typing.Any
1498
+ class MATERIAL_PT_gpencil_settings(GPMaterialButtonsPanel, bpy_types._GenericUI):
1502
1499
  bl_context: typing.Any
1503
1500
  bl_label: typing.Any
1504
1501
  bl_options: typing.Any
@@ -1725,7 +1722,10 @@ class MATERIAL_PT_gpencil_preview(GPMaterialButtonsPanel, bpy_types._GenericUI):
1725
1722
  """
1726
1723
  ...
1727
1724
 
1728
- class MATERIAL_PT_gpencil_settings(GPMaterialButtonsPanel, bpy_types._GenericUI):
1725
+ class MATERIAL_PT_gpencil_slots(
1726
+ bl_ui.properties_grease_pencil_common.GreasePencilMaterialsPanel,
1727
+ bpy_types._GenericUI,
1728
+ ):
1729
1729
  bl_context: typing.Any
1730
1730
  bl_label: typing.Any
1731
1731
  bl_options: typing.Any
@@ -279,14 +279,7 @@ class COLLECTION_MT_context_menu(bpy_types._GenericUI):
279
279
  """
280
280
  ...
281
281
 
282
- class ObjectButtonsPanel:
283
- bl_context: typing.Any
284
- bl_region_type: typing.Any
285
- bl_space_type: typing.Any
286
-
287
- class OBJECT_PT_motion_paths(
288
- bl_ui.properties_animviz.MotionPathButtonsPanel, bpy_types._GenericUI
289
- ):
282
+ class OBJECT_PT_collections(ObjectButtonsPanel, bpy_types._GenericUI):
290
283
  bl_context: typing.Any
291
284
  bl_label: typing.Any
292
285
  bl_options: typing.Any
@@ -334,16 +327,6 @@ class OBJECT_PT_motion_paths(
334
327
  """
335
328
  ...
336
329
 
337
- def draw_settings(self, _context, avs, mpath, bones=False):
338
- """
339
-
340
- :param _context:
341
- :param avs:
342
- :param mpath:
343
- :param bones:
344
- """
345
- ...
346
-
347
330
  def driver_add(self) -> bpy.types.FCurve:
348
331
  """Adds driver(s) to the given property
349
332
 
@@ -466,13 +449,6 @@ class OBJECT_PT_motion_paths(
466
449
  """Returns the property from the path, raise an exception when not found."""
467
450
  ...
468
451
 
469
- def poll(self, context):
470
- """
471
-
472
- :param context:
473
- """
474
- ...
475
-
476
452
  def pop(self):
477
453
  """Remove and return the value of the custom property assigned to key or default
478
454
  when not found (matches Python's dictionary function of the same name).
@@ -523,13 +499,10 @@ class OBJECT_PT_motion_paths(
523
499
  """
524
500
  ...
525
501
 
526
- class OBJECT_PT_motion_paths_display(
527
- bl_ui.properties_animviz.MotionPathButtonsPanel_display, bpy_types._GenericUI
528
- ):
502
+ class OBJECT_PT_context_object(ObjectButtonsPanel, bpy_types._GenericUI):
529
503
  bl_context: typing.Any
530
504
  bl_label: typing.Any
531
505
  bl_options: typing.Any
532
- bl_parent_id: typing.Any
533
506
  bl_region_type: typing.Any
534
507
  bl_rna: typing.Any
535
508
  bl_space_type: typing.Any
@@ -574,16 +547,6 @@ class OBJECT_PT_motion_paths_display(
574
547
  """
575
548
  ...
576
549
 
577
- def draw_settings(self, _context, avs, mpath, bones=False):
578
- """
579
-
580
- :param _context:
581
- :param avs:
582
- :param mpath:
583
- :param bones:
584
- """
585
- ...
586
-
587
550
  def driver_add(self) -> bpy.types.FCurve:
588
551
  """Adds driver(s) to the given property
589
552
 
@@ -706,13 +669,6 @@ class OBJECT_PT_motion_paths_display(
706
669
  """Returns the property from the path, raise an exception when not found."""
707
670
  ...
708
671
 
709
- def poll(self, context):
710
- """
711
-
712
- :param context:
713
- """
714
- ...
715
-
716
672
  def pop(self):
717
673
  """Remove and return the value of the custom property assigned to key or default
718
674
  when not found (matches Python's dictionary function of the same name).
@@ -763,10 +719,18 @@ class OBJECT_PT_motion_paths_display(
763
719
  """
764
720
  ...
765
721
 
766
- class OBJECT_PT_collections(ObjectButtonsPanel, bpy_types._GenericUI):
722
+ class OBJECT_PT_custom_props(
723
+ ObjectButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
724
+ ):
725
+ """The subclass should have its own poll function
726
+ and the variable '_context_path' MUST be set.
727
+ """
728
+
729
+ COMPAT_ENGINES: typing.Any
767
730
  bl_context: typing.Any
768
731
  bl_label: typing.Any
769
732
  bl_options: typing.Any
733
+ bl_order: typing.Any
770
734
  bl_region_type: typing.Any
771
735
  bl_rna: typing.Any
772
736
  bl_space_type: typing.Any
@@ -933,6 +897,13 @@ class OBJECT_PT_collections(ObjectButtonsPanel, bpy_types._GenericUI):
933
897
  """Returns the property from the path, raise an exception when not found."""
934
898
  ...
935
899
 
900
+ def poll(self, context):
901
+ """
902
+
903
+ :param context:
904
+ """
905
+ ...
906
+
936
907
  def pop(self):
937
908
  """Remove and return the value of the custom property assigned to key or default
938
909
  when not found (matches Python's dictionary function of the same name).
@@ -983,10 +954,11 @@ class OBJECT_PT_collections(ObjectButtonsPanel, bpy_types._GenericUI):
983
954
  """
984
955
  ...
985
956
 
986
- class OBJECT_PT_context_object(ObjectButtonsPanel, bpy_types._GenericUI):
957
+ class OBJECT_PT_delta_transform(ObjectButtonsPanel, bpy_types._GenericUI):
987
958
  bl_context: typing.Any
988
959
  bl_label: typing.Any
989
960
  bl_options: typing.Any
961
+ bl_parent_id: typing.Any
990
962
  bl_region_type: typing.Any
991
963
  bl_rna: typing.Any
992
964
  bl_space_type: typing.Any
@@ -1203,14 +1175,7 @@ class OBJECT_PT_context_object(ObjectButtonsPanel, bpy_types._GenericUI):
1203
1175
  """
1204
1176
  ...
1205
1177
 
1206
- class OBJECT_PT_custom_props(
1207
- ObjectButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
1208
- ):
1209
- """The subclass should have its own poll function
1210
- and the variable '_context_path' MUST be set.
1211
- """
1212
-
1213
- COMPAT_ENGINES: typing.Any
1178
+ class OBJECT_PT_display(ObjectButtonsPanel, bpy_types._GenericUI):
1214
1179
  bl_context: typing.Any
1215
1180
  bl_label: typing.Any
1216
1181
  bl_options: typing.Any
@@ -1381,13 +1346,6 @@ class OBJECT_PT_custom_props(
1381
1346
  """Returns the property from the path, raise an exception when not found."""
1382
1347
  ...
1383
1348
 
1384
- def poll(self, context):
1385
- """
1386
-
1387
- :param context:
1388
- """
1389
- ...
1390
-
1391
1349
  def pop(self):
1392
1350
  """Remove and return the value of the custom property assigned to key or default
1393
1351
  when not found (matches Python's dictionary function of the same name).
@@ -1438,11 +1396,10 @@ class OBJECT_PT_custom_props(
1438
1396
  """
1439
1397
  ...
1440
1398
 
1441
- class OBJECT_PT_delta_transform(ObjectButtonsPanel, bpy_types._GenericUI):
1399
+ class OBJECT_PT_instancing(ObjectButtonsPanel, bpy_types._GenericUI):
1442
1400
  bl_context: typing.Any
1443
1401
  bl_label: typing.Any
1444
1402
  bl_options: typing.Any
1445
- bl_parent_id: typing.Any
1446
1403
  bl_region_type: typing.Any
1447
1404
  bl_rna: typing.Any
1448
1405
  bl_space_type: typing.Any
@@ -1609,6 +1566,13 @@ class OBJECT_PT_delta_transform(ObjectButtonsPanel, bpy_types._GenericUI):
1609
1566
  """Returns the property from the path, raise an exception when not found."""
1610
1567
  ...
1611
1568
 
1569
+ def poll(self, context):
1570
+ """
1571
+
1572
+ :param context:
1573
+ """
1574
+ ...
1575
+
1612
1576
  def pop(self):
1613
1577
  """Remove and return the value of the custom property assigned to key or default
1614
1578
  when not found (matches Python's dictionary function of the same name).
@@ -1659,11 +1623,10 @@ class OBJECT_PT_delta_transform(ObjectButtonsPanel, bpy_types._GenericUI):
1659
1623
  """
1660
1624
  ...
1661
1625
 
1662
- class OBJECT_PT_display(ObjectButtonsPanel, bpy_types._GenericUI):
1626
+ class OBJECT_PT_instancing_size(ObjectButtonsPanel, bpy_types._GenericUI):
1663
1627
  bl_context: typing.Any
1664
1628
  bl_label: typing.Any
1665
- bl_options: typing.Any
1666
- bl_order: typing.Any
1629
+ bl_parent_id: typing.Any
1667
1630
  bl_region_type: typing.Any
1668
1631
  bl_rna: typing.Any
1669
1632
  bl_space_type: typing.Any
@@ -1708,6 +1671,13 @@ class OBJECT_PT_display(ObjectButtonsPanel, bpy_types._GenericUI):
1708
1671
  """
1709
1672
  ...
1710
1673
 
1674
+ def draw_header(self, context):
1675
+ """
1676
+
1677
+ :param context:
1678
+ """
1679
+ ...
1680
+
1711
1681
  def driver_add(self) -> bpy.types.FCurve:
1712
1682
  """Adds driver(s) to the given property
1713
1683
 
@@ -1830,6 +1800,13 @@ class OBJECT_PT_display(ObjectButtonsPanel, bpy_types._GenericUI):
1830
1800
  """Returns the property from the path, raise an exception when not found."""
1831
1801
  ...
1832
1802
 
1803
+ def poll(self, context):
1804
+ """
1805
+
1806
+ :param context:
1807
+ """
1808
+ ...
1809
+
1833
1810
  def pop(self):
1834
1811
  """Remove and return the value of the custom property assigned to key or default
1835
1812
  when not found (matches Python's dictionary function of the same name).
@@ -1880,10 +1857,11 @@ class OBJECT_PT_display(ObjectButtonsPanel, bpy_types._GenericUI):
1880
1857
  """
1881
1858
  ...
1882
1859
 
1883
- class OBJECT_PT_instancing(ObjectButtonsPanel, bpy_types._GenericUI):
1860
+ class OBJECT_PT_lineart(ObjectButtonsPanel, bpy_types._GenericUI):
1884
1861
  bl_context: typing.Any
1885
1862
  bl_label: typing.Any
1886
1863
  bl_options: typing.Any
1864
+ bl_order: typing.Any
1887
1865
  bl_region_type: typing.Any
1888
1866
  bl_rna: typing.Any
1889
1867
  bl_space_type: typing.Any
@@ -2107,10 +2085,12 @@ class OBJECT_PT_instancing(ObjectButtonsPanel, bpy_types._GenericUI):
2107
2085
  """
2108
2086
  ...
2109
2087
 
2110
- class OBJECT_PT_instancing_size(ObjectButtonsPanel, bpy_types._GenericUI):
2088
+ class OBJECT_PT_motion_paths(
2089
+ bl_ui.properties_animviz.MotionPathButtonsPanel, bpy_types._GenericUI
2090
+ ):
2111
2091
  bl_context: typing.Any
2112
2092
  bl_label: typing.Any
2113
- bl_parent_id: typing.Any
2093
+ bl_options: typing.Any
2114
2094
  bl_region_type: typing.Any
2115
2095
  bl_rna: typing.Any
2116
2096
  bl_space_type: typing.Any
@@ -2155,10 +2135,13 @@ class OBJECT_PT_instancing_size(ObjectButtonsPanel, bpy_types._GenericUI):
2155
2135
  """
2156
2136
  ...
2157
2137
 
2158
- def draw_header(self, context):
2138
+ def draw_settings(self, _context, avs, mpath, bones=False):
2159
2139
  """
2160
2140
 
2161
- :param context:
2141
+ :param _context:
2142
+ :param avs:
2143
+ :param mpath:
2144
+ :param bones:
2162
2145
  """
2163
2146
  ...
2164
2147
 
@@ -2341,11 +2324,13 @@ class OBJECT_PT_instancing_size(ObjectButtonsPanel, bpy_types._GenericUI):
2341
2324
  """
2342
2325
  ...
2343
2326
 
2344
- class OBJECT_PT_lineart(ObjectButtonsPanel, bpy_types._GenericUI):
2327
+ class OBJECT_PT_motion_paths_display(
2328
+ bl_ui.properties_animviz.MotionPathButtonsPanel_display, bpy_types._GenericUI
2329
+ ):
2345
2330
  bl_context: typing.Any
2346
2331
  bl_label: typing.Any
2347
2332
  bl_options: typing.Any
2348
- bl_order: typing.Any
2333
+ bl_parent_id: typing.Any
2349
2334
  bl_region_type: typing.Any
2350
2335
  bl_rna: typing.Any
2351
2336
  bl_space_type: typing.Any
@@ -2390,6 +2375,16 @@ class OBJECT_PT_lineart(ObjectButtonsPanel, bpy_types._GenericUI):
2390
2375
  """
2391
2376
  ...
2392
2377
 
2378
+ def draw_settings(self, _context, avs, mpath, bones=False):
2379
+ """
2380
+
2381
+ :param _context:
2382
+ :param avs:
2383
+ :param mpath:
2384
+ :param bones:
2385
+ """
2386
+ ...
2387
+
2393
2388
  def driver_add(self) -> bpy.types.FCurve:
2394
2389
  """Adds driver(s) to the given property
2395
2390
 
@@ -3235,3 +3230,8 @@ class OBJECT_PT_visibility(ObjectButtonsPanel, bpy_types._GenericUI):
3235
3230
  :return: custom property values.
3236
3231
  """
3237
3232
  ...
3233
+
3234
+ class ObjectButtonsPanel:
3235
+ bl_context: typing.Any
3236
+ bl_region_type: typing.Any
3237
+ bl_space_type: typing.Any