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,10 +1,8 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bl_ui.utils
5
4
  import bpy.types
6
5
  import bpy_types
7
- import rna_prop_ui
8
6
 
9
7
  GenericType1 = typing.TypeVar("GenericType1")
10
8
  GenericType2 = typing.TypeVar("GenericType2")
@@ -38,9 +36,7 @@ class PARTICLE_MT_context_menu(bpy.types.Menu, bpy_types._GenericUI):
38
36
  """
39
37
  ...
40
38
 
41
- class PARTICLE_PT_boidbrain(
42
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
43
- ):
39
+ class PARTICLE_PT_boidbrain(bpy.types.Panel, bpy_types._GenericUI):
44
40
  COMPAT_ENGINES: typing.Any
45
41
  bl_context: typing.Any
46
42
  bl_label: typing.Any
@@ -82,7 +78,7 @@ class PARTICLE_PT_boidbrain(
82
78
  """
83
79
  ...
84
80
 
85
- class PARTICLE_PT_cache(bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI):
81
+ class PARTICLE_PT_cache(bpy.types.Panel, bpy_types._GenericUI):
86
82
  COMPAT_ENGINES: typing.Any
87
83
  bl_context: typing.Any
88
84
  bl_label: typing.Any
@@ -123,7 +119,7 @@ class PARTICLE_PT_cache(bpy.types.Panel, ParticleButtonsPanel, bpy_types._Generi
123
119
  """
124
120
  ...
125
121
 
126
- class PARTICLE_PT_children(bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI):
122
+ class PARTICLE_PT_children(bpy.types.Panel, bpy_types._GenericUI):
127
123
  COMPAT_ENGINES: typing.Any
128
124
  bl_context: typing.Any
129
125
  bl_label: typing.Any
@@ -165,9 +161,7 @@ class PARTICLE_PT_children(bpy.types.Panel, ParticleButtonsPanel, bpy_types._Gen
165
161
  """
166
162
  ...
167
163
 
168
- class PARTICLE_PT_children_clumping(
169
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
170
- ):
164
+ class PARTICLE_PT_children_clumping(bpy.types.Panel, bpy_types._GenericUI):
171
165
  COMPAT_ENGINES: typing.Any
172
166
  bl_context: typing.Any
173
167
  bl_label: typing.Any
@@ -209,9 +203,7 @@ class PARTICLE_PT_children_clumping(
209
203
  """
210
204
  ...
211
205
 
212
- class PARTICLE_PT_children_clumping_noise(
213
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
214
- ):
206
+ class PARTICLE_PT_children_clumping_noise(bpy.types.Panel, bpy_types._GenericUI):
215
207
  COMPAT_ENGINES: typing.Any
216
208
  bl_context: typing.Any
217
209
  bl_label: typing.Any
@@ -252,9 +244,7 @@ class PARTICLE_PT_children_clumping_noise(
252
244
  """
253
245
  ...
254
246
 
255
- class PARTICLE_PT_children_kink(
256
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
257
- ):
247
+ class PARTICLE_PT_children_kink(bpy.types.Panel, bpy_types._GenericUI):
258
248
  COMPAT_ENGINES: typing.Any
259
249
  bl_context: typing.Any
260
250
  bl_label: typing.Any
@@ -296,9 +286,7 @@ class PARTICLE_PT_children_kink(
296
286
  """
297
287
  ...
298
288
 
299
- class PARTICLE_PT_children_parting(
300
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
301
- ):
289
+ class PARTICLE_PT_children_parting(bpy.types.Panel, bpy_types._GenericUI):
302
290
  COMPAT_ENGINES: typing.Any
303
291
  bl_context: typing.Any
304
292
  bl_label: typing.Any
@@ -340,9 +328,7 @@ class PARTICLE_PT_children_parting(
340
328
  """
341
329
  ...
342
330
 
343
- class PARTICLE_PT_children_roughness(
344
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
345
- ):
331
+ class PARTICLE_PT_children_roughness(bpy.types.Panel, bpy_types._GenericUI):
346
332
  COMPAT_ENGINES: typing.Any
347
333
  bl_context: typing.Any
348
334
  bl_label: typing.Any
@@ -385,9 +371,7 @@ class PARTICLE_PT_children_roughness(
385
371
  """
386
372
  ...
387
373
 
388
- class PARTICLE_PT_context_particles(
389
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
390
- ):
374
+ class PARTICLE_PT_context_particles(bpy.types.Panel, bpy_types._GenericUI):
391
375
  COMPAT_ENGINES: typing.Any
392
376
  bl_context: typing.Any
393
377
  bl_label: typing.Any
@@ -428,12 +412,7 @@ class PARTICLE_PT_context_particles(
428
412
  """
429
413
  ...
430
414
 
431
- class PARTICLE_PT_custom_props(
432
- bpy.types.Panel,
433
- ParticleButtonsPanel,
434
- rna_prop_ui.PropertyPanel,
435
- bpy_types._GenericUI,
436
- ):
415
+ class PARTICLE_PT_custom_props(bpy.types.Panel, bpy_types._GenericUI):
437
416
  """The subclass should have its own poll function
438
417
  and the variable '_context_path' MUST be set.
439
418
  """
@@ -464,7 +443,7 @@ class PARTICLE_PT_custom_props(
464
443
  """
465
444
  ...
466
445
 
467
- class PARTICLE_PT_draw(bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI):
446
+ class PARTICLE_PT_draw(bpy.types.Panel, bpy_types._GenericUI):
468
447
  COMPAT_ENGINES: typing.Any
469
448
  bl_context: typing.Any
470
449
  bl_label: typing.Any
@@ -505,7 +484,7 @@ class PARTICLE_PT_draw(bpy.types.Panel, ParticleButtonsPanel, bpy_types._Generic
505
484
  """
506
485
  ...
507
486
 
508
- class PARTICLE_PT_emission(bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI):
487
+ class PARTICLE_PT_emission(bpy.types.Panel, bpy_types._GenericUI):
509
488
  COMPAT_ENGINES: typing.Any
510
489
  bl_context: typing.Any
511
490
  bl_label: typing.Any
@@ -546,9 +525,7 @@ class PARTICLE_PT_emission(bpy.types.Panel, ParticleButtonsPanel, bpy_types._Gen
546
525
  """
547
526
  ...
548
527
 
549
- class PARTICLE_PT_emission_source(
550
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
551
- ):
528
+ class PARTICLE_PT_emission_source(bpy.types.Panel, bpy_types._GenericUI):
552
529
  COMPAT_ENGINES: typing.Any
553
530
  bl_context: typing.Any
554
531
  bl_label: typing.Any
@@ -582,9 +559,7 @@ class PARTICLE_PT_emission_source(
582
559
  """
583
560
  ...
584
561
 
585
- class PARTICLE_PT_field_weights(
586
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
587
- ):
562
+ class PARTICLE_PT_field_weights(bpy.types.Panel, bpy_types._GenericUI):
588
563
  COMPAT_ENGINES: typing.Any
589
564
  bl_context: typing.Any
590
565
  bl_label: typing.Any
@@ -625,9 +600,7 @@ class PARTICLE_PT_field_weights(
625
600
  """
626
601
  ...
627
602
 
628
- class PARTICLE_PT_force_fields(
629
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
630
- ):
603
+ class PARTICLE_PT_force_fields(bpy.types.Panel, bpy_types._GenericUI):
631
604
  COMPAT_ENGINES: typing.Any
632
605
  bl_context: typing.Any
633
606
  bl_label: typing.Any
@@ -660,9 +633,7 @@ class PARTICLE_PT_force_fields(
660
633
  """
661
634
  ...
662
635
 
663
- class PARTICLE_PT_force_fields_type1(
664
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
665
- ):
636
+ class PARTICLE_PT_force_fields_type1(bpy.types.Panel, bpy_types._GenericUI):
666
637
  COMPAT_ENGINES: typing.Any
667
638
  bl_context: typing.Any
668
639
  bl_label: typing.Any
@@ -695,9 +666,7 @@ class PARTICLE_PT_force_fields_type1(
695
666
  """
696
667
  ...
697
668
 
698
- class PARTICLE_PT_force_fields_type1_falloff(
699
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
700
- ):
669
+ class PARTICLE_PT_force_fields_type1_falloff(bpy.types.Panel, bpy_types._GenericUI):
701
670
  COMPAT_ENGINES: typing.Any
702
671
  bl_context: typing.Any
703
672
  bl_label: typing.Any
@@ -731,9 +700,7 @@ class PARTICLE_PT_force_fields_type1_falloff(
731
700
  """
732
701
  ...
733
702
 
734
- class PARTICLE_PT_force_fields_type2(
735
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
736
- ):
703
+ class PARTICLE_PT_force_fields_type2(bpy.types.Panel, bpy_types._GenericUI):
737
704
  COMPAT_ENGINES: typing.Any
738
705
  bl_context: typing.Any
739
706
  bl_label: typing.Any
@@ -766,9 +733,7 @@ class PARTICLE_PT_force_fields_type2(
766
733
  """
767
734
  ...
768
735
 
769
- class PARTICLE_PT_force_fields_type2_falloff(
770
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
771
- ):
736
+ class PARTICLE_PT_force_fields_type2_falloff(bpy.types.Panel, bpy_types._GenericUI):
772
737
  COMPAT_ENGINES: typing.Any
773
738
  bl_context: typing.Any
774
739
  bl_label: typing.Any
@@ -802,9 +767,7 @@ class PARTICLE_PT_force_fields_type2_falloff(
802
767
  """
803
768
  ...
804
769
 
805
- class PARTICLE_PT_hair_dynamics(
806
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
807
- ):
770
+ class PARTICLE_PT_hair_dynamics(bpy.types.Panel, bpy_types._GenericUI):
808
771
  COMPAT_ENGINES: typing.Any
809
772
  bl_context: typing.Any
810
773
  bl_label: typing.Any
@@ -859,9 +822,7 @@ class PARTICLE_PT_hair_dynamics(
859
822
  """
860
823
  ...
861
824
 
862
- class PARTICLE_PT_hair_dynamics_collision(
863
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
864
- ):
825
+ class PARTICLE_PT_hair_dynamics_collision(bpy.types.Panel, bpy_types._GenericUI):
865
826
  COMPAT_ENGINES: typing.Any
866
827
  bl_context: typing.Any
867
828
  bl_label: typing.Any
@@ -903,9 +864,7 @@ class PARTICLE_PT_hair_dynamics_collision(
903
864
  """
904
865
  ...
905
866
 
906
- class PARTICLE_PT_hair_dynamics_presets(
907
- bpy.types.Panel, bl_ui.utils.PresetPanel, bpy_types._GenericUI
908
- ):
867
+ class PARTICLE_PT_hair_dynamics_presets(bpy.types.Panel, bpy_types._GenericUI):
909
868
  COMPAT_ENGINES: typing.Any
910
869
  bl_label: typing.Any
911
870
  bl_region_type: typing.Any
@@ -932,9 +891,7 @@ class PARTICLE_PT_hair_dynamics_presets(
932
891
  """
933
892
  ...
934
893
 
935
- class PARTICLE_PT_hair_dynamics_structure(
936
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
937
- ):
894
+ class PARTICLE_PT_hair_dynamics_structure(bpy.types.Panel, bpy_types._GenericUI):
938
895
  COMPAT_ENGINES: typing.Any
939
896
  bl_context: typing.Any
940
897
  bl_label: typing.Any
@@ -976,9 +933,7 @@ class PARTICLE_PT_hair_dynamics_structure(
976
933
  """
977
934
  ...
978
935
 
979
- class PARTICLE_PT_hair_dynamics_volume(
980
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
981
- ):
936
+ class PARTICLE_PT_hair_dynamics_volume(bpy.types.Panel, bpy_types._GenericUI):
982
937
  COMPAT_ENGINES: typing.Any
983
938
  bl_context: typing.Any
984
939
  bl_label: typing.Any
@@ -1020,9 +975,7 @@ class PARTICLE_PT_hair_dynamics_volume(
1020
975
  """
1021
976
  ...
1022
977
 
1023
- class PARTICLE_PT_hair_shape(
1024
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
1025
- ):
978
+ class PARTICLE_PT_hair_shape(bpy.types.Panel, bpy_types._GenericUI):
1026
979
  COMPAT_ENGINES: typing.Any
1027
980
  bl_context: typing.Any
1028
981
  bl_label: typing.Any
@@ -1063,7 +1016,7 @@ class PARTICLE_PT_hair_shape(
1063
1016
  """
1064
1017
  ...
1065
1018
 
1066
- class PARTICLE_PT_physics(bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI):
1019
+ class PARTICLE_PT_physics(bpy.types.Panel, bpy_types._GenericUI):
1067
1020
  COMPAT_ENGINES: typing.Any
1068
1021
  bl_context: typing.Any
1069
1022
  bl_label: typing.Any
@@ -1104,9 +1057,7 @@ class PARTICLE_PT_physics(bpy.types.Panel, ParticleButtonsPanel, bpy_types._Gene
1104
1057
  """
1105
1058
  ...
1106
1059
 
1107
- class PARTICLE_PT_physics_boids_battle(
1108
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
1109
- ):
1060
+ class PARTICLE_PT_physics_boids_battle(bpy.types.Panel, bpy_types._GenericUI):
1110
1061
  COMPAT_ENGINES: typing.Any
1111
1062
  bl_context: typing.Any
1112
1063
  bl_label: typing.Any
@@ -1148,9 +1099,7 @@ class PARTICLE_PT_physics_boids_battle(
1148
1099
  """
1149
1100
  ...
1150
1101
 
1151
- class PARTICLE_PT_physics_boids_misc(
1152
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
1153
- ):
1102
+ class PARTICLE_PT_physics_boids_misc(bpy.types.Panel, bpy_types._GenericUI):
1154
1103
  COMPAT_ENGINES: typing.Any
1155
1104
  bl_context: typing.Any
1156
1105
  bl_label: typing.Any
@@ -1192,9 +1141,7 @@ class PARTICLE_PT_physics_boids_misc(
1192
1141
  """
1193
1142
  ...
1194
1143
 
1195
- class PARTICLE_PT_physics_boids_movement(
1196
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
1197
- ):
1144
+ class PARTICLE_PT_physics_boids_movement(bpy.types.Panel, bpy_types._GenericUI):
1198
1145
  COMPAT_ENGINES: typing.Any
1199
1146
  bl_context: typing.Any
1200
1147
  bl_label: typing.Any
@@ -1236,9 +1183,7 @@ class PARTICLE_PT_physics_boids_movement(
1236
1183
  """
1237
1184
  ...
1238
1185
 
1239
- class PARTICLE_PT_physics_deflection(
1240
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
1241
- ):
1186
+ class PARTICLE_PT_physics_deflection(bpy.types.Panel, bpy_types._GenericUI):
1242
1187
  COMPAT_ENGINES: typing.Any
1243
1188
  bl_context: typing.Any
1244
1189
  bl_label: typing.Any
@@ -1280,9 +1225,7 @@ class PARTICLE_PT_physics_deflection(
1280
1225
  """
1281
1226
  ...
1282
1227
 
1283
- class PARTICLE_PT_physics_fluid_advanced(
1284
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
1285
- ):
1228
+ class PARTICLE_PT_physics_fluid_advanced(bpy.types.Panel, bpy_types._GenericUI):
1286
1229
  COMPAT_ENGINES: typing.Any
1287
1230
  bl_context: typing.Any
1288
1231
  bl_label: typing.Any
@@ -1324,9 +1267,7 @@ class PARTICLE_PT_physics_fluid_advanced(
1324
1267
  """
1325
1268
  ...
1326
1269
 
1327
- class PARTICLE_PT_physics_fluid_interaction(
1328
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
1329
- ):
1270
+ class PARTICLE_PT_physics_fluid_interaction(bpy.types.Panel, bpy_types._GenericUI):
1330
1271
  COMPAT_ENGINES: typing.Any
1331
1272
  bl_context: typing.Any
1332
1273
  bl_label: typing.Any
@@ -1368,9 +1309,7 @@ class PARTICLE_PT_physics_fluid_interaction(
1368
1309
  """
1369
1310
  ...
1370
1311
 
1371
- class PARTICLE_PT_physics_fluid_springs(
1372
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
1373
- ):
1312
+ class PARTICLE_PT_physics_fluid_springs(bpy.types.Panel, bpy_types._GenericUI):
1374
1313
  COMPAT_ENGINES: typing.Any
1375
1314
  bl_context: typing.Any
1376
1315
  bl_label: typing.Any
@@ -1412,9 +1351,7 @@ class PARTICLE_PT_physics_fluid_springs(
1412
1351
  """
1413
1352
  ...
1414
1353
 
1415
- class PARTICLE_PT_physics_fluid_springs_advanced(
1416
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
1417
- ):
1354
+ class PARTICLE_PT_physics_fluid_springs_advanced(bpy.types.Panel, bpy_types._GenericUI):
1418
1355
  COMPAT_ENGINES: typing.Any
1419
1356
  bl_context: typing.Any
1420
1357
  bl_label: typing.Any
@@ -1457,7 +1394,7 @@ class PARTICLE_PT_physics_fluid_springs_advanced(
1457
1394
  ...
1458
1395
 
1459
1396
  class PARTICLE_PT_physics_fluid_springs_viscoelastic(
1460
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
1397
+ bpy.types.Panel, bpy_types._GenericUI
1461
1398
  ):
1462
1399
  COMPAT_ENGINES: typing.Any
1463
1400
  bl_context: typing.Any
@@ -1507,9 +1444,7 @@ class PARTICLE_PT_physics_fluid_springs_viscoelastic(
1507
1444
  """
1508
1445
  ...
1509
1446
 
1510
- class PARTICLE_PT_physics_forces(
1511
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
1512
- ):
1447
+ class PARTICLE_PT_physics_forces(bpy.types.Panel, bpy_types._GenericUI):
1513
1448
  COMPAT_ENGINES: typing.Any
1514
1449
  bl_context: typing.Any
1515
1450
  bl_label: typing.Any
@@ -1550,9 +1485,7 @@ class PARTICLE_PT_physics_forces(
1550
1485
  """
1551
1486
  ...
1552
1487
 
1553
- class PARTICLE_PT_physics_integration(
1554
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
1555
- ):
1488
+ class PARTICLE_PT_physics_integration(bpy.types.Panel, bpy_types._GenericUI):
1556
1489
  COMPAT_ENGINES: typing.Any
1557
1490
  bl_context: typing.Any
1558
1491
  bl_label: typing.Any
@@ -1594,9 +1527,7 @@ class PARTICLE_PT_physics_integration(
1594
1527
  """
1595
1528
  ...
1596
1529
 
1597
- class PARTICLE_PT_physics_relations(
1598
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
1599
- ):
1530
+ class PARTICLE_PT_physics_relations(bpy.types.Panel, bpy_types._GenericUI):
1600
1531
  COMPAT_ENGINES: typing.Any
1601
1532
  bl_context: typing.Any
1602
1533
  bl_label: typing.Any
@@ -1638,7 +1569,7 @@ class PARTICLE_PT_physics_relations(
1638
1569
  """
1639
1570
  ...
1640
1571
 
1641
- class PARTICLE_PT_render(bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI):
1572
+ class PARTICLE_PT_render(bpy.types.Panel, bpy_types._GenericUI):
1642
1573
  COMPAT_ENGINES: typing.Any
1643
1574
  bl_context: typing.Any
1644
1575
  bl_label: typing.Any
@@ -1679,9 +1610,7 @@ class PARTICLE_PT_render(bpy.types.Panel, ParticleButtonsPanel, bpy_types._Gener
1679
1610
  """
1680
1611
  ...
1681
1612
 
1682
- class PARTICLE_PT_render_collection(
1683
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
1684
- ):
1613
+ class PARTICLE_PT_render_collection(bpy.types.Panel, bpy_types._GenericUI):
1685
1614
  COMPAT_ENGINES: typing.Any
1686
1615
  bl_context: typing.Any
1687
1616
  bl_label: typing.Any
@@ -1722,9 +1651,7 @@ class PARTICLE_PT_render_collection(
1722
1651
  """
1723
1652
  ...
1724
1653
 
1725
- class PARTICLE_PT_render_collection_use_count(
1726
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
1727
- ):
1654
+ class PARTICLE_PT_render_collection_use_count(bpy.types.Panel, bpy_types._GenericUI):
1728
1655
  COMPAT_ENGINES: typing.Any
1729
1656
  bl_context: typing.Any
1730
1657
  bl_label: typing.Any
@@ -1773,9 +1700,7 @@ class PARTICLE_PT_render_collection_use_count(
1773
1700
  """
1774
1701
  ...
1775
1702
 
1776
- class PARTICLE_PT_render_extra(
1777
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
1778
- ):
1703
+ class PARTICLE_PT_render_extra(bpy.types.Panel, bpy_types._GenericUI):
1779
1704
  COMPAT_ENGINES: typing.Any
1780
1705
  bl_context: typing.Any
1781
1706
  bl_label: typing.Any
@@ -1817,9 +1742,7 @@ class PARTICLE_PT_render_extra(
1817
1742
  """
1818
1743
  ...
1819
1744
 
1820
- class PARTICLE_PT_render_object(
1821
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
1822
- ):
1745
+ class PARTICLE_PT_render_object(bpy.types.Panel, bpy_types._GenericUI):
1823
1746
  COMPAT_ENGINES: typing.Any
1824
1747
  bl_context: typing.Any
1825
1748
  bl_label: typing.Any
@@ -1860,9 +1783,7 @@ class PARTICLE_PT_render_object(
1860
1783
  """
1861
1784
  ...
1862
1785
 
1863
- class PARTICLE_PT_render_path(
1864
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
1865
- ):
1786
+ class PARTICLE_PT_render_path(bpy.types.Panel, bpy_types._GenericUI):
1866
1787
  COMPAT_ENGINES: typing.Any
1867
1788
  bl_context: typing.Any
1868
1789
  bl_label: typing.Any
@@ -1903,9 +1824,7 @@ class PARTICLE_PT_render_path(
1903
1824
  """
1904
1825
  ...
1905
1826
 
1906
- class PARTICLE_PT_render_path_timing(
1907
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
1908
- ):
1827
+ class PARTICLE_PT_render_path_timing(bpy.types.Panel, bpy_types._GenericUI):
1909
1828
  COMPAT_ENGINES: typing.Any
1910
1829
  bl_context: typing.Any
1911
1830
  bl_label: typing.Any
@@ -1947,7 +1866,7 @@ class PARTICLE_PT_render_path_timing(
1947
1866
  """
1948
1867
  ...
1949
1868
 
1950
- class PARTICLE_PT_rotation(bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI):
1869
+ class PARTICLE_PT_rotation(bpy.types.Panel, bpy_types._GenericUI):
1951
1870
  COMPAT_ENGINES: typing.Any
1952
1871
  bl_context: typing.Any
1953
1872
  bl_label: typing.Any
@@ -1995,9 +1914,7 @@ class PARTICLE_PT_rotation(bpy.types.Panel, ParticleButtonsPanel, bpy_types._Gen
1995
1914
  """
1996
1915
  ...
1997
1916
 
1998
- class PARTICLE_PT_rotation_angular_velocity(
1999
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
2000
- ):
1917
+ class PARTICLE_PT_rotation_angular_velocity(bpy.types.Panel, bpy_types._GenericUI):
2001
1918
  COMPAT_ENGINES: typing.Any
2002
1919
  bl_context: typing.Any
2003
1920
  bl_label: typing.Any
@@ -2031,7 +1948,7 @@ class PARTICLE_PT_rotation_angular_velocity(
2031
1948
  """
2032
1949
  ...
2033
1950
 
2034
- class PARTICLE_PT_textures(bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI):
1951
+ class PARTICLE_PT_textures(bpy.types.Panel, bpy_types._GenericUI):
2035
1952
  COMPAT_ENGINES: typing.Any
2036
1953
  bl_context: typing.Any
2037
1954
  bl_label: typing.Any
@@ -2072,7 +1989,7 @@ class PARTICLE_PT_textures(bpy.types.Panel, ParticleButtonsPanel, bpy_types._Gen
2072
1989
  """
2073
1990
  ...
2074
1991
 
2075
- class PARTICLE_PT_velocity(bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI):
1992
+ class PARTICLE_PT_velocity(bpy.types.Panel, bpy_types._GenericUI):
2076
1993
  COMPAT_ENGINES: typing.Any
2077
1994
  bl_context: typing.Any
2078
1995
  bl_label: typing.Any
@@ -2113,9 +2030,7 @@ class PARTICLE_PT_velocity(bpy.types.Panel, ParticleButtonsPanel, bpy_types._Gen
2113
2030
  """
2114
2031
  ...
2115
2032
 
2116
- class PARTICLE_PT_vertexgroups(
2117
- bpy.types.Panel, ParticleButtonsPanel, bpy_types._GenericUI
2118
- ):
2033
+ class PARTICLE_PT_vertexgroups(bpy.types.Panel, bpy_types._GenericUI):
2119
2034
  COMPAT_ENGINES: typing.Any
2120
2035
  bl_context: typing.Any
2121
2036
  bl_label: typing.Any
@@ -1,14 +1,13 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bl_ui.utils
5
4
  import bpy.types
6
5
  import bpy_types
7
6
 
8
7
  GenericType1 = typing.TypeVar("GenericType1")
9
8
  GenericType2 = typing.TypeVar("GenericType2")
10
9
 
11
- class CLOTH_PT_presets(bpy.types.Panel, bl_ui.utils.PresetPanel, bpy_types._GenericUI):
10
+ class CLOTH_PT_presets(bpy.types.Panel, bpy_types._GenericUI):
12
11
  bl_label: typing.Any
13
12
  bl_region_type: typing.Any
14
13
  bl_rna: typing.Any
@@ -34,7 +33,7 @@ class CLOTH_PT_presets(bpy.types.Panel, bl_ui.utils.PresetPanel, bpy_types._Gene
34
33
  """
35
34
  ...
36
35
 
37
- class PHYSICS_PT_cloth(bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI):
36
+ class PHYSICS_PT_cloth(bpy.types.Panel, bpy_types._GenericUI):
38
37
  COMPAT_ENGINES: typing.Any
39
38
  bl_context: typing.Any
40
39
  bl_label: typing.Any
@@ -73,7 +72,7 @@ class PHYSICS_PT_cloth(bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
73
72
  """
74
73
  ...
75
74
 
76
- class PHYSICS_PT_cloth_cache(bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI):
75
+ class PHYSICS_PT_cloth_cache(bpy.types.Panel, bpy_types._GenericUI):
77
76
  COMPAT_ENGINES: typing.Any
78
77
  bl_context: typing.Any
79
78
  bl_label: typing.Any
@@ -107,9 +106,7 @@ class PHYSICS_PT_cloth_cache(bpy.types.Panel, PhysicButtonsPanel, bpy_types._Gen
107
106
  """
108
107
  ...
109
108
 
110
- class PHYSICS_PT_cloth_collision(
111
- bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
112
- ):
109
+ class PHYSICS_PT_cloth_collision(bpy.types.Panel, bpy_types._GenericUI):
113
110
  COMPAT_ENGINES: typing.Any
114
111
  bl_context: typing.Any
115
112
  bl_label: typing.Any
@@ -143,9 +140,7 @@ class PHYSICS_PT_cloth_collision(
143
140
  """
144
141
  ...
145
142
 
146
- class PHYSICS_PT_cloth_damping(
147
- bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
148
- ):
143
+ class PHYSICS_PT_cloth_damping(bpy.types.Panel, bpy_types._GenericUI):
149
144
  COMPAT_ENGINES: typing.Any
150
145
  bl_context: typing.Any
151
146
  bl_label: typing.Any
@@ -178,9 +173,7 @@ class PHYSICS_PT_cloth_damping(
178
173
  """
179
174
  ...
180
175
 
181
- class PHYSICS_PT_cloth_field_weights(
182
- bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
183
- ):
176
+ class PHYSICS_PT_cloth_field_weights(bpy.types.Panel, bpy_types._GenericUI):
184
177
  COMPAT_ENGINES: typing.Any
185
178
  bl_context: typing.Any
186
179
  bl_label: typing.Any
@@ -214,9 +207,7 @@ class PHYSICS_PT_cloth_field_weights(
214
207
  """
215
208
  ...
216
209
 
217
- class PHYSICS_PT_cloth_internal_springs(
218
- bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
219
- ):
210
+ class PHYSICS_PT_cloth_internal_springs(bpy.types.Panel, bpy_types._GenericUI):
220
211
  COMPAT_ENGINES: typing.Any
221
212
  bl_context: typing.Any
222
213
  bl_label: typing.Any
@@ -256,9 +247,7 @@ class PHYSICS_PT_cloth_internal_springs(
256
247
  """
257
248
  ...
258
249
 
259
- class PHYSICS_PT_cloth_object_collision(
260
- bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
261
- ):
250
+ class PHYSICS_PT_cloth_object_collision(bpy.types.Panel, bpy_types._GenericUI):
262
251
  COMPAT_ENGINES: typing.Any
263
252
  bl_context: typing.Any
264
253
  bl_label: typing.Any
@@ -298,9 +287,7 @@ class PHYSICS_PT_cloth_object_collision(
298
287
  """
299
288
  ...
300
289
 
301
- class PHYSICS_PT_cloth_physical_properties(
302
- bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
303
- ):
290
+ class PHYSICS_PT_cloth_physical_properties(bpy.types.Panel, bpy_types._GenericUI):
304
291
  COMPAT_ENGINES: typing.Any
305
292
  bl_context: typing.Any
306
293
  bl_label: typing.Any
@@ -333,9 +320,7 @@ class PHYSICS_PT_cloth_physical_properties(
333
320
  """
334
321
  ...
335
322
 
336
- class PHYSICS_PT_cloth_pressure(
337
- bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
338
- ):
323
+ class PHYSICS_PT_cloth_pressure(bpy.types.Panel, bpy_types._GenericUI):
339
324
  COMPAT_ENGINES: typing.Any
340
325
  bl_context: typing.Any
341
326
  bl_label: typing.Any
@@ -375,9 +360,7 @@ class PHYSICS_PT_cloth_pressure(
375
360
  """
376
361
  ...
377
362
 
378
- class PHYSICS_PT_cloth_property_weights(
379
- bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
380
- ):
363
+ class PHYSICS_PT_cloth_property_weights(bpy.types.Panel, bpy_types._GenericUI):
381
364
  COMPAT_ENGINES: typing.Any
382
365
  bl_context: typing.Any
383
366
  bl_label: typing.Any
@@ -411,9 +394,7 @@ class PHYSICS_PT_cloth_property_weights(
411
394
  """
412
395
  ...
413
396
 
414
- class PHYSICS_PT_cloth_self_collision(
415
- bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
416
- ):
397
+ class PHYSICS_PT_cloth_self_collision(bpy.types.Panel, bpy_types._GenericUI):
417
398
  COMPAT_ENGINES: typing.Any
418
399
  bl_context: typing.Any
419
400
  bl_label: typing.Any
@@ -453,7 +434,7 @@ class PHYSICS_PT_cloth_self_collision(
453
434
  """
454
435
  ...
455
436
 
456
- class PHYSICS_PT_cloth_shape(bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI):
437
+ class PHYSICS_PT_cloth_shape(bpy.types.Panel, bpy_types._GenericUI):
457
438
  COMPAT_ENGINES: typing.Any
458
439
  bl_context: typing.Any
459
440
  bl_label: typing.Any
@@ -487,9 +468,7 @@ class PHYSICS_PT_cloth_shape(bpy.types.Panel, PhysicButtonsPanel, bpy_types._Gen
487
468
  """
488
469
  ...
489
470
 
490
- class PHYSICS_PT_cloth_stiffness(
491
- bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
492
- ):
471
+ class PHYSICS_PT_cloth_stiffness(bpy.types.Panel, bpy_types._GenericUI):
493
472
  COMPAT_ENGINES: typing.Any
494
473
  bl_context: typing.Any
495
474
  bl_label: typing.Any
@@ -7,7 +7,7 @@ import bpy_types
7
7
  GenericType1 = typing.TypeVar("GenericType1")
8
8
  GenericType2 = typing.TypeVar("GenericType2")
9
9
 
10
- class PHYSICS_PT_add(bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI):
10
+ class PHYSICS_PT_add(bpy.types.Panel, bpy_types._GenericUI):
11
11
  COMPAT_ENGINES: typing.Any
12
12
  bl_context: typing.Any
13
13
  bl_label: typing.Any