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
@@ -10147,16 +10147,21 @@ class IMAGE_PT_overlay_uv_stretch(bpy_types._GenericUI):
10147
10147
  """
10148
10148
  ...
10149
10149
 
10150
- class ImagePaintPanel:
10151
- bl_region_type: typing.Any
10152
- bl_space_type: typing.Any
10153
-
10154
- class IMAGE_PT_proportional_edit(bpy_types._GenericUI):
10150
+ class IMAGE_PT_paint_clone(
10151
+ bl_ui.properties_paint_common.BrushPanel,
10152
+ ImagePaintPanel,
10153
+ bpy_types._GenericUI,
10154
+ bl_ui.properties_paint_common.ClonePanel,
10155
+ bl_ui.properties_paint_common.UnifiedPaintPanel,
10156
+ ):
10157
+ bl_category: typing.Any
10158
+ bl_context: typing.Any
10155
10159
  bl_label: typing.Any
10160
+ bl_options: typing.Any
10161
+ bl_parent_id: typing.Any
10156
10162
  bl_region_type: typing.Any
10157
10163
  bl_rna: typing.Any
10158
10164
  bl_space_type: typing.Any
10159
- bl_ui_units_x: typing.Any
10160
10165
  id_data: typing.Any
10161
10166
 
10162
10167
  def append(self, draw_func):
@@ -10198,6 +10203,13 @@ class IMAGE_PT_proportional_edit(bpy_types._GenericUI):
10198
10203
  """
10199
10204
  ...
10200
10205
 
10206
+ def draw_header(self, context):
10207
+ """
10208
+
10209
+ :param context:
10210
+ """
10211
+ ...
10212
+
10201
10213
  def driver_add(self) -> bpy.types.FCurve:
10202
10214
  """Adds driver(s) to the given property
10203
10215
 
@@ -10221,6 +10233,14 @@ class IMAGE_PT_proportional_edit(bpy_types._GenericUI):
10221
10233
  """
10222
10234
  ...
10223
10235
 
10236
+ def get_brush_mode(self, context):
10237
+ """Get the correct mode for this context. For any context where this returns None,
10238
+ no brush options should be displayed.
10239
+
10240
+ :param context:
10241
+ """
10242
+ ...
10243
+
10224
10244
  def id_properties_clear(self):
10225
10245
  """
10226
10246
 
@@ -10307,6 +10327,13 @@ class IMAGE_PT_proportional_edit(bpy_types._GenericUI):
10307
10327
  """
10308
10328
  ...
10309
10329
 
10330
+ def paint_settings(self, context):
10331
+ """
10332
+
10333
+ :param context:
10334
+ """
10335
+ ...
10336
+
10310
10337
  def path_from_id(self) -> str:
10311
10338
  """Returns the data path from the ID to this object (string).
10312
10339
 
@@ -10320,6 +10347,13 @@ class IMAGE_PT_proportional_edit(bpy_types._GenericUI):
10320
10347
  """Returns the property from the path, raise an exception when not found."""
10321
10348
  ...
10322
10349
 
10350
+ def poll(self, context):
10351
+ """
10352
+
10353
+ :param context:
10354
+ """
10355
+ ...
10356
+
10323
10357
  def pop(self):
10324
10358
  """Remove and return the value of the custom property assigned to key or default
10325
10359
  when not found (matches Python's dictionary function of the same name).
@@ -10335,6 +10369,59 @@ class IMAGE_PT_proportional_edit(bpy_types._GenericUI):
10335
10369
  """
10336
10370
  ...
10337
10371
 
10372
+ def prop_unified(
10373
+ self,
10374
+ layout,
10375
+ context,
10376
+ brush,
10377
+ prop_name,
10378
+ unified_name=None,
10379
+ pressure_name=None,
10380
+ icon="NONE",
10381
+ text=None,
10382
+ slider=False,
10383
+ header=False,
10384
+ ):
10385
+ """Generalized way of adding brush options to the UI,
10386
+ along with their pen pressure setting and global toggle, if they exist.
10387
+
10388
+ :param layout:
10389
+ :param context:
10390
+ :param brush:
10391
+ :param prop_name:
10392
+ :param unified_name:
10393
+ :param pressure_name:
10394
+ :param icon:
10395
+ :param text:
10396
+ :param slider:
10397
+ :param header:
10398
+ """
10399
+ ...
10400
+
10401
+ def prop_unified_color(self, parent, context, brush, prop_name, text=None):
10402
+ """
10403
+
10404
+ :param parent:
10405
+ :param context:
10406
+ :param brush:
10407
+ :param prop_name:
10408
+ :param text:
10409
+ """
10410
+ ...
10411
+
10412
+ def prop_unified_color_picker(
10413
+ self, parent, context, brush, prop_name, value_slider=True
10414
+ ):
10415
+ """
10416
+
10417
+ :param parent:
10418
+ :param context:
10419
+ :param brush:
10420
+ :param prop_name:
10421
+ :param value_slider:
10422
+ """
10423
+ ...
10424
+
10338
10425
  def property_overridable_library_set(self) -> bool:
10339
10426
  """Define a property as overridable or not (only for custom properties!).
10340
10427
 
@@ -10370,9 +10457,22 @@ class IMAGE_PT_proportional_edit(bpy_types._GenericUI):
10370
10457
  """
10371
10458
  ...
10372
10459
 
10373
- class IMAGE_PT_render_slots(bpy_types._GenericUI):
10460
+ class ImagePaintPanel:
10461
+ bl_region_type: typing.Any
10462
+ bl_space_type: typing.Any
10463
+
10464
+ class IMAGE_PT_paint_curve(
10465
+ bl_ui.properties_paint_common.BrushPanel,
10466
+ bpy_types._GenericUI,
10467
+ BrushButtonsPanel,
10468
+ bl_ui.properties_paint_common.FalloffPanel,
10469
+ bl_ui.properties_paint_common.UnifiedPaintPanel,
10470
+ ):
10374
10471
  bl_category: typing.Any
10472
+ bl_context: typing.Any
10375
10473
  bl_label: typing.Any
10474
+ bl_options: typing.Any
10475
+ bl_parent_id: typing.Any
10376
10476
  bl_region_type: typing.Any
10377
10477
  bl_rna: typing.Any
10378
10478
  bl_space_type: typing.Any
@@ -10440,6 +10540,14 @@ class IMAGE_PT_render_slots(bpy_types._GenericUI):
10440
10540
  """
10441
10541
  ...
10442
10542
 
10543
+ def get_brush_mode(self, context):
10544
+ """Get the correct mode for this context. For any context where this returns None,
10545
+ no brush options should be displayed.
10546
+
10547
+ :param context:
10548
+ """
10549
+ ...
10550
+
10443
10551
  def id_properties_clear(self):
10444
10552
  """
10445
10553
 
@@ -10526,6 +10634,13 @@ class IMAGE_PT_render_slots(bpy_types._GenericUI):
10526
10634
  """
10527
10635
  ...
10528
10636
 
10637
+ def paint_settings(self, context):
10638
+ """
10639
+
10640
+ :param context:
10641
+ """
10642
+ ...
10643
+
10529
10644
  def path_from_id(self) -> str:
10530
10645
  """Returns the data path from the ID to this object (string).
10531
10646
 
@@ -10561,6 +10676,59 @@ class IMAGE_PT_render_slots(bpy_types._GenericUI):
10561
10676
  """
10562
10677
  ...
10563
10678
 
10679
+ def prop_unified(
10680
+ self,
10681
+ layout,
10682
+ context,
10683
+ brush,
10684
+ prop_name,
10685
+ unified_name=None,
10686
+ pressure_name=None,
10687
+ icon="NONE",
10688
+ text=None,
10689
+ slider=False,
10690
+ header=False,
10691
+ ):
10692
+ """Generalized way of adding brush options to the UI,
10693
+ along with their pen pressure setting and global toggle, if they exist.
10694
+
10695
+ :param layout:
10696
+ :param context:
10697
+ :param brush:
10698
+ :param prop_name:
10699
+ :param unified_name:
10700
+ :param pressure_name:
10701
+ :param icon:
10702
+ :param text:
10703
+ :param slider:
10704
+ :param header:
10705
+ """
10706
+ ...
10707
+
10708
+ def prop_unified_color(self, parent, context, brush, prop_name, text=None):
10709
+ """
10710
+
10711
+ :param parent:
10712
+ :param context:
10713
+ :param brush:
10714
+ :param prop_name:
10715
+ :param text:
10716
+ """
10717
+ ...
10718
+
10719
+ def prop_unified_color_picker(
10720
+ self, parent, context, brush, prop_name, value_slider=True
10721
+ ):
10722
+ """
10723
+
10724
+ :param parent:
10725
+ :param context:
10726
+ :param brush:
10727
+ :param prop_name:
10728
+ :param value_slider:
10729
+ """
10730
+ ...
10731
+
10564
10732
  def property_overridable_library_set(self) -> bool:
10565
10733
  """Define a property as overridable or not (only for custom properties!).
10566
10734
 
@@ -10596,15 +10764,15 @@ class IMAGE_PT_render_slots(bpy_types._GenericUI):
10596
10764
  """
10597
10765
  ...
10598
10766
 
10599
- class ImageScopesPanel:
10600
- def poll(self, context):
10601
- """
10602
-
10603
- :param context:
10604
- """
10605
- ...
10606
-
10607
- class IMAGE_PT_snapping(bpy_types._GenericUI):
10767
+ class IMAGE_PT_paint_select(
10768
+ bl_ui.properties_paint_common.BrushPanel,
10769
+ ImagePaintPanel,
10770
+ bpy_types._GenericUI,
10771
+ bl_ui.properties_paint_common.BrushSelectPanel,
10772
+ bl_ui.properties_paint_common.UnifiedPaintPanel,
10773
+ ):
10774
+ bl_category: typing.Any
10775
+ bl_context: typing.Any
10608
10776
  bl_label: typing.Any
10609
10777
  bl_region_type: typing.Any
10610
10778
  bl_rna: typing.Any
@@ -10673,6 +10841,14 @@ class IMAGE_PT_snapping(bpy_types._GenericUI):
10673
10841
  """
10674
10842
  ...
10675
10843
 
10844
+ def get_brush_mode(self, context):
10845
+ """Get the correct mode for this context. For any context where this returns None,
10846
+ no brush options should be displayed.
10847
+
10848
+ :param context:
10849
+ """
10850
+ ...
10851
+
10676
10852
  def id_properties_clear(self):
10677
10853
  """
10678
10854
 
@@ -10759,6 +10935,13 @@ class IMAGE_PT_snapping(bpy_types._GenericUI):
10759
10935
  """
10760
10936
  ...
10761
10937
 
10938
+ def paint_settings(self, context):
10939
+ """
10940
+
10941
+ :param context:
10942
+ """
10943
+ ...
10944
+
10762
10945
  def path_from_id(self) -> str:
10763
10946
  """Returns the data path from the ID to this object (string).
10764
10947
 
@@ -10772,6 +10955,13 @@ class IMAGE_PT_snapping(bpy_types._GenericUI):
10772
10955
  """Returns the property from the path, raise an exception when not found."""
10773
10956
  ...
10774
10957
 
10958
+ def poll(self, context):
10959
+ """
10960
+
10961
+ :param context:
10962
+ """
10963
+ ...
10964
+
10775
10965
  def pop(self):
10776
10966
  """Remove and return the value of the custom property assigned to key or default
10777
10967
  when not found (matches Python's dictionary function of the same name).
@@ -10779,11 +10969,64 @@ class IMAGE_PT_snapping(bpy_types._GenericUI):
10779
10969
  """
10780
10970
  ...
10781
10971
 
10782
- def prepend(self, draw_func):
10783
- """Prepend a draw function to this menu, takes the same arguments as
10784
- the menus draw function
10972
+ def prepend(self, draw_func):
10973
+ """Prepend a draw function to this menu, takes the same arguments as
10974
+ the menus draw function
10975
+
10976
+ :param draw_func:
10977
+ """
10978
+ ...
10979
+
10980
+ def prop_unified(
10981
+ self,
10982
+ layout,
10983
+ context,
10984
+ brush,
10985
+ prop_name,
10986
+ unified_name=None,
10987
+ pressure_name=None,
10988
+ icon="NONE",
10989
+ text=None,
10990
+ slider=False,
10991
+ header=False,
10992
+ ):
10993
+ """Generalized way of adding brush options to the UI,
10994
+ along with their pen pressure setting and global toggle, if they exist.
10995
+
10996
+ :param layout:
10997
+ :param context:
10998
+ :param brush:
10999
+ :param prop_name:
11000
+ :param unified_name:
11001
+ :param pressure_name:
11002
+ :param icon:
11003
+ :param text:
11004
+ :param slider:
11005
+ :param header:
11006
+ """
11007
+ ...
11008
+
11009
+ def prop_unified_color(self, parent, context, brush, prop_name, text=None):
11010
+ """
11011
+
11012
+ :param parent:
11013
+ :param context:
11014
+ :param brush:
11015
+ :param prop_name:
11016
+ :param text:
11017
+ """
11018
+ ...
11019
+
11020
+ def prop_unified_color_picker(
11021
+ self, parent, context, brush, prop_name, value_slider=True
11022
+ ):
11023
+ """
10785
11024
 
10786
- :param draw_func:
11025
+ :param parent:
11026
+ :param context:
11027
+ :param brush:
11028
+ :param prop_name:
11029
+ :param value_slider:
10787
11030
  """
10788
11031
  ...
10789
11032
 
@@ -10822,12 +11065,22 @@ class IMAGE_PT_snapping(bpy_types._GenericUI):
10822
11065
  """
10823
11066
  ...
10824
11067
 
10825
- class IMAGE_PT_udim_tiles(bpy_types._GenericUI):
11068
+ class IMAGE_PT_paint_stroke(
11069
+ bl_ui.properties_paint_common.BrushPanel,
11070
+ bpy_types._GenericUI,
11071
+ BrushButtonsPanel,
11072
+ bl_ui.properties_paint_common.StrokePanel,
11073
+ bl_ui.properties_paint_common.UnifiedPaintPanel,
11074
+ ):
10826
11075
  bl_category: typing.Any
11076
+ bl_context: typing.Any
10827
11077
  bl_label: typing.Any
11078
+ bl_options: typing.Any
11079
+ bl_parent_id: typing.Any
10828
11080
  bl_region_type: typing.Any
10829
11081
  bl_rna: typing.Any
10830
11082
  bl_space_type: typing.Any
11083
+ bl_ui_units_x: typing.Any
10831
11084
  id_data: typing.Any
10832
11085
 
10833
11086
  def append(self, draw_func):
@@ -10892,6 +11145,14 @@ class IMAGE_PT_udim_tiles(bpy_types._GenericUI):
10892
11145
  """
10893
11146
  ...
10894
11147
 
11148
+ def get_brush_mode(self, context):
11149
+ """Get the correct mode for this context. For any context where this returns None,
11150
+ no brush options should be displayed.
11151
+
11152
+ :param context:
11153
+ """
11154
+ ...
11155
+
10895
11156
  def id_properties_clear(self):
10896
11157
  """
10897
11158
 
@@ -10978,6 +11239,13 @@ class IMAGE_PT_udim_tiles(bpy_types._GenericUI):
10978
11239
  """
10979
11240
  ...
10980
11241
 
11242
+ def paint_settings(self, context):
11243
+ """
11244
+
11245
+ :param context:
11246
+ """
11247
+ ...
11248
+
10981
11249
  def path_from_id(self) -> str:
10982
11250
  """Returns the data path from the ID to this object (string).
10983
11251
 
@@ -11013,6 +11281,59 @@ class IMAGE_PT_udim_tiles(bpy_types._GenericUI):
11013
11281
  """
11014
11282
  ...
11015
11283
 
11284
+ def prop_unified(
11285
+ self,
11286
+ layout,
11287
+ context,
11288
+ brush,
11289
+ prop_name,
11290
+ unified_name=None,
11291
+ pressure_name=None,
11292
+ icon="NONE",
11293
+ text=None,
11294
+ slider=False,
11295
+ header=False,
11296
+ ):
11297
+ """Generalized way of adding brush options to the UI,
11298
+ along with their pen pressure setting and global toggle, if they exist.
11299
+
11300
+ :param layout:
11301
+ :param context:
11302
+ :param brush:
11303
+ :param prop_name:
11304
+ :param unified_name:
11305
+ :param pressure_name:
11306
+ :param icon:
11307
+ :param text:
11308
+ :param slider:
11309
+ :param header:
11310
+ """
11311
+ ...
11312
+
11313
+ def prop_unified_color(self, parent, context, brush, prop_name, text=None):
11314
+ """
11315
+
11316
+ :param parent:
11317
+ :param context:
11318
+ :param brush:
11319
+ :param prop_name:
11320
+ :param text:
11321
+ """
11322
+ ...
11323
+
11324
+ def prop_unified_color_picker(
11325
+ self, parent, context, brush, prop_name, value_slider=True
11326
+ ):
11327
+ """
11328
+
11329
+ :param parent:
11330
+ :param context:
11331
+ :param brush:
11332
+ :param prop_name:
11333
+ :param value_slider:
11334
+ """
11335
+ ...
11336
+
11016
11337
  def property_overridable_library_set(self) -> bool:
11017
11338
  """Define a property as overridable or not (only for custom properties!).
11018
11339
 
@@ -11048,9 +11369,18 @@ class IMAGE_PT_udim_tiles(bpy_types._GenericUI):
11048
11369
  """
11049
11370
  ...
11050
11371
 
11051
- class IMAGE_PT_uv_cursor(bpy_types._GenericUI):
11372
+ class IMAGE_PT_paint_stroke_smooth_stroke(
11373
+ bl_ui.properties_paint_common.BrushPanel,
11374
+ BrushButtonsPanel,
11375
+ bpy_types._GenericUI,
11376
+ bl_ui.properties_paint_common.SmoothStrokePanel,
11377
+ bl_ui.properties_paint_common.UnifiedPaintPanel,
11378
+ ):
11052
11379
  bl_category: typing.Any
11380
+ bl_context: typing.Any
11053
11381
  bl_label: typing.Any
11382
+ bl_options: typing.Any
11383
+ bl_parent_id: typing.Any
11054
11384
  bl_region_type: typing.Any
11055
11385
  bl_rna: typing.Any
11056
11386
  bl_space_type: typing.Any
@@ -11095,6 +11425,13 @@ class IMAGE_PT_uv_cursor(bpy_types._GenericUI):
11095
11425
  """
11096
11426
  ...
11097
11427
 
11428
+ def draw_header(self, context):
11429
+ """
11430
+
11431
+ :param context:
11432
+ """
11433
+ ...
11434
+
11098
11435
  def driver_add(self) -> bpy.types.FCurve:
11099
11436
  """Adds driver(s) to the given property
11100
11437
 
@@ -11118,6 +11455,14 @@ class IMAGE_PT_uv_cursor(bpy_types._GenericUI):
11118
11455
  """
11119
11456
  ...
11120
11457
 
11458
+ def get_brush_mode(self, context):
11459
+ """Get the correct mode for this context. For any context where this returns None,
11460
+ no brush options should be displayed.
11461
+
11462
+ :param context:
11463
+ """
11464
+ ...
11465
+
11121
11466
  def id_properties_clear(self):
11122
11467
  """
11123
11468
 
@@ -11204,6 +11549,13 @@ class IMAGE_PT_uv_cursor(bpy_types._GenericUI):
11204
11549
  """
11205
11550
  ...
11206
11551
 
11552
+ def paint_settings(self, context):
11553
+ """
11554
+
11555
+ :param context:
11556
+ """
11557
+ ...
11558
+
11207
11559
  def path_from_id(self) -> str:
11208
11560
  """Returns the data path from the ID to this object (string).
11209
11561
 
@@ -11239,6 +11591,59 @@ class IMAGE_PT_uv_cursor(bpy_types._GenericUI):
11239
11591
  """
11240
11592
  ...
11241
11593
 
11594
+ def prop_unified(
11595
+ self,
11596
+ layout,
11597
+ context,
11598
+ brush,
11599
+ prop_name,
11600
+ unified_name=None,
11601
+ pressure_name=None,
11602
+ icon="NONE",
11603
+ text=None,
11604
+ slider=False,
11605
+ header=False,
11606
+ ):
11607
+ """Generalized way of adding brush options to the UI,
11608
+ along with their pen pressure setting and global toggle, if they exist.
11609
+
11610
+ :param layout:
11611
+ :param context:
11612
+ :param brush:
11613
+ :param prop_name:
11614
+ :param unified_name:
11615
+ :param pressure_name:
11616
+ :param icon:
11617
+ :param text:
11618
+ :param slider:
11619
+ :param header:
11620
+ """
11621
+ ...
11622
+
11623
+ def prop_unified_color(self, parent, context, brush, prop_name, text=None):
11624
+ """
11625
+
11626
+ :param parent:
11627
+ :param context:
11628
+ :param brush:
11629
+ :param prop_name:
11630
+ :param text:
11631
+ """
11632
+ ...
11633
+
11634
+ def prop_unified_color_picker(
11635
+ self, parent, context, brush, prop_name, value_slider=True
11636
+ ):
11637
+ """
11638
+
11639
+ :param parent:
11640
+ :param context:
11641
+ :param brush:
11642
+ :param prop_name:
11643
+ :param value_slider:
11644
+ """
11645
+ ...
11646
+
11242
11647
  def property_overridable_library_set(self) -> bool:
11243
11648
  """Define a property as overridable or not (only for custom properties!).
11244
11649
 
@@ -11274,9 +11679,18 @@ class IMAGE_PT_uv_cursor(bpy_types._GenericUI):
11274
11679
  """
11275
11680
  ...
11276
11681
 
11277
- class IMAGE_PT_view_display(bpy_types._GenericUI):
11682
+ class IMAGE_PT_paint_swatches(
11683
+ bl_ui.properties_paint_common.BrushPanel,
11684
+ ImagePaintPanel,
11685
+ bpy_types._GenericUI,
11686
+ bl_ui.properties_paint_common.ColorPalettePanel,
11687
+ bl_ui.properties_paint_common.UnifiedPaintPanel,
11688
+ ):
11278
11689
  bl_category: typing.Any
11690
+ bl_context: typing.Any
11279
11691
  bl_label: typing.Any
11692
+ bl_options: typing.Any
11693
+ bl_parent_id: typing.Any
11280
11694
  bl_region_type: typing.Any
11281
11695
  bl_rna: typing.Any
11282
11696
  bl_space_type: typing.Any
@@ -11344,6 +11758,14 @@ class IMAGE_PT_view_display(bpy_types._GenericUI):
11344
11758
  """
11345
11759
  ...
11346
11760
 
11761
+ def get_brush_mode(self, context):
11762
+ """Get the correct mode for this context. For any context where this returns None,
11763
+ no brush options should be displayed.
11764
+
11765
+ :param context:
11766
+ """
11767
+ ...
11768
+
11347
11769
  def id_properties_clear(self):
11348
11770
  """
11349
11771
 
@@ -11430,6 +11852,13 @@ class IMAGE_PT_view_display(bpy_types._GenericUI):
11430
11852
  """
11431
11853
  ...
11432
11854
 
11855
+ def paint_settings(self, context):
11856
+ """
11857
+
11858
+ :param context:
11859
+ """
11860
+ ...
11861
+
11433
11862
  def path_from_id(self) -> str:
11434
11863
  """Returns the data path from the ID to this object (string).
11435
11864
 
@@ -11465,6 +11894,59 @@ class IMAGE_PT_view_display(bpy_types._GenericUI):
11465
11894
  """
11466
11895
  ...
11467
11896
 
11897
+ def prop_unified(
11898
+ self,
11899
+ layout,
11900
+ context,
11901
+ brush,
11902
+ prop_name,
11903
+ unified_name=None,
11904
+ pressure_name=None,
11905
+ icon="NONE",
11906
+ text=None,
11907
+ slider=False,
11908
+ header=False,
11909
+ ):
11910
+ """Generalized way of adding brush options to the UI,
11911
+ along with their pen pressure setting and global toggle, if they exist.
11912
+
11913
+ :param layout:
11914
+ :param context:
11915
+ :param brush:
11916
+ :param prop_name:
11917
+ :param unified_name:
11918
+ :param pressure_name:
11919
+ :param icon:
11920
+ :param text:
11921
+ :param slider:
11922
+ :param header:
11923
+ """
11924
+ ...
11925
+
11926
+ def prop_unified_color(self, parent, context, brush, prop_name, text=None):
11927
+ """
11928
+
11929
+ :param parent:
11930
+ :param context:
11931
+ :param brush:
11932
+ :param prop_name:
11933
+ :param text:
11934
+ """
11935
+ ...
11936
+
11937
+ def prop_unified_color_picker(
11938
+ self, parent, context, brush, prop_name, value_slider=True
11939
+ ):
11940
+ """
11941
+
11942
+ :param parent:
11943
+ :param context:
11944
+ :param brush:
11945
+ :param prop_name:
11946
+ :param value_slider:
11947
+ """
11948
+ ...
11949
+
11468
11950
  def property_overridable_library_set(self) -> bool:
11469
11951
  """Define a property as overridable or not (only for custom properties!).
11470
11952
 
@@ -11500,8 +11982,12 @@ class IMAGE_PT_view_display(bpy_types._GenericUI):
11500
11982
  """
11501
11983
  ...
11502
11984
 
11503
- class IMAGE_UL_render_slots(bpy_types._GenericUI):
11985
+ class IMAGE_PT_proportional_edit(bpy_types._GenericUI):
11986
+ bl_label: typing.Any
11987
+ bl_region_type: typing.Any
11504
11988
  bl_rna: typing.Any
11989
+ bl_space_type: typing.Any
11990
+ bl_ui_units_x: typing.Any
11505
11991
  id_data: typing.Any
11506
11992
 
11507
11993
  def append(self, draw_func):
@@ -11536,27 +12022,10 @@ class IMAGE_UL_render_slots(bpy_types._GenericUI):
11536
12022
  """
11537
12023
  ...
11538
12024
 
11539
- def draw_item(
11540
- self,
11541
- _context,
11542
- layout,
11543
- _data,
11544
- item,
11545
- _icon,
11546
- _active_data,
11547
- _active_propname,
11548
- _index,
11549
- ):
12025
+ def draw(self, context):
11550
12026
  """
11551
12027
 
11552
- :param _context:
11553
- :param layout:
11554
- :param _data:
11555
- :param item:
11556
- :param _icon:
11557
- :param _active_data:
11558
- :param _active_propname:
11559
- :param _index:
12028
+ :param context:
11560
12029
  """
11561
12030
  ...
11562
12031
 
@@ -11732,8 +12201,12 @@ class IMAGE_UL_render_slots(bpy_types._GenericUI):
11732
12201
  """
11733
12202
  ...
11734
12203
 
11735
- class IMAGE_UL_udim_tiles(bpy_types._GenericUI):
12204
+ class IMAGE_PT_render_slots(bpy_types._GenericUI):
12205
+ bl_category: typing.Any
12206
+ bl_label: typing.Any
12207
+ bl_region_type: typing.Any
11736
12208
  bl_rna: typing.Any
12209
+ bl_space_type: typing.Any
11737
12210
  id_data: typing.Any
11738
12211
 
11739
12212
  def append(self, draw_func):
@@ -11768,27 +12241,10 @@ class IMAGE_UL_udim_tiles(bpy_types._GenericUI):
11768
12241
  """
11769
12242
  ...
11770
12243
 
11771
- def draw_item(
11772
- self,
11773
- _context,
11774
- layout,
11775
- _data,
11776
- item,
11777
- _icon,
11778
- _active_data,
11779
- _active_propname,
11780
- _index,
11781
- ):
12244
+ def draw(self, context):
11782
12245
  """
11783
12246
 
11784
- :param _context:
11785
- :param layout:
11786
- :param _data:
11787
- :param item:
11788
- :param _icon:
11789
- :param _active_data:
11790
- :param _active_propname:
11791
- :param _index:
12247
+ :param context:
11792
12248
  """
11793
12249
  ...
11794
12250
 
@@ -11914,6 +12370,13 @@ class IMAGE_UL_udim_tiles(bpy_types._GenericUI):
11914
12370
  """Returns the property from the path, raise an exception when not found."""
11915
12371
  ...
11916
12372
 
12373
+ def poll(self, context):
12374
+ """
12375
+
12376
+ :param context:
12377
+ """
12378
+ ...
12379
+
11917
12380
  def pop(self):
11918
12381
  """Remove and return the value of the custom property assigned to key or default
11919
12382
  when not found (matches Python's dictionary function of the same name).
@@ -11964,37 +12427,9 @@ class IMAGE_UL_udim_tiles(bpy_types._GenericUI):
11964
12427
  """
11965
12428
  ...
11966
12429
 
11967
- class _draw_tool_settings_context_mode:
11968
- def PAINT(self, context, layout, tool):
11969
- """
11970
-
11971
- :param context:
11972
- :param layout:
11973
- :param tool:
11974
- """
11975
- ...
11976
-
11977
- def UV(self, context, layout, tool):
11978
- """
11979
-
11980
- :param context:
11981
- :param layout:
11982
- :param tool:
11983
- """
11984
- ...
11985
-
11986
- class IMAGE_PT_paint_curve(
11987
- bl_ui.properties_paint_common.BrushPanel,
11988
- bpy_types._GenericUI,
11989
- BrushButtonsPanel,
11990
- bl_ui.properties_paint_common.FalloffPanel,
11991
- bl_ui.properties_paint_common.UnifiedPaintPanel,
11992
- ):
12430
+ class IMAGE_PT_sample_line(ImageScopesPanel, bpy_types._GenericUI):
11993
12431
  bl_category: typing.Any
11994
- bl_context: typing.Any
11995
12432
  bl_label: typing.Any
11996
- bl_options: typing.Any
11997
- bl_parent_id: typing.Any
11998
12433
  bl_region_type: typing.Any
11999
12434
  bl_rna: typing.Any
12000
12435
  bl_space_type: typing.Any
@@ -12062,14 +12497,6 @@ class IMAGE_PT_paint_curve(
12062
12497
  """
12063
12498
  ...
12064
12499
 
12065
- def get_brush_mode(self, context):
12066
- """Get the correct mode for this context. For any context where this returns None,
12067
- no brush options should be displayed.
12068
-
12069
- :param context:
12070
- """
12071
- ...
12072
-
12073
12500
  def id_properties_clear(self):
12074
12501
  """
12075
12502
 
@@ -12156,13 +12583,6 @@ class IMAGE_PT_paint_curve(
12156
12583
  """
12157
12584
  ...
12158
12585
 
12159
- def paint_settings(self, context):
12160
- """
12161
-
12162
- :param context:
12163
- """
12164
- ...
12165
-
12166
12586
  def path_from_id(self) -> str:
12167
12587
  """Returns the data path from the ID to this object (string).
12168
12588
 
@@ -12198,59 +12618,6 @@ class IMAGE_PT_paint_curve(
12198
12618
  """
12199
12619
  ...
12200
12620
 
12201
- def prop_unified(
12202
- self,
12203
- layout,
12204
- context,
12205
- brush,
12206
- prop_name,
12207
- unified_name=None,
12208
- pressure_name=None,
12209
- icon="NONE",
12210
- text=None,
12211
- slider=False,
12212
- header=False,
12213
- ):
12214
- """Generalized way of adding brush options to the UI,
12215
- along with their pen pressure setting and global toggle, if they exist.
12216
-
12217
- :param layout:
12218
- :param context:
12219
- :param brush:
12220
- :param prop_name:
12221
- :param unified_name:
12222
- :param pressure_name:
12223
- :param icon:
12224
- :param text:
12225
- :param slider:
12226
- :param header:
12227
- """
12228
- ...
12229
-
12230
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
12231
- """
12232
-
12233
- :param parent:
12234
- :param context:
12235
- :param brush:
12236
- :param prop_name:
12237
- :param text:
12238
- """
12239
- ...
12240
-
12241
- def prop_unified_color_picker(
12242
- self, parent, context, brush, prop_name, value_slider=True
12243
- ):
12244
- """
12245
-
12246
- :param parent:
12247
- :param context:
12248
- :param brush:
12249
- :param prop_name:
12250
- :param value_slider:
12251
- """
12252
- ...
12253
-
12254
12621
  def property_overridable_library_set(self) -> bool:
12255
12622
  """Define a property as overridable or not (only for custom properties!).
12256
12623
 
@@ -12286,22 +12653,13 @@ class IMAGE_PT_paint_curve(
12286
12653
  """
12287
12654
  ...
12288
12655
 
12289
- class IMAGE_PT_paint_stroke(
12290
- bl_ui.properties_paint_common.BrushPanel,
12291
- bpy_types._GenericUI,
12292
- BrushButtonsPanel,
12293
- bl_ui.properties_paint_common.StrokePanel,
12294
- bl_ui.properties_paint_common.UnifiedPaintPanel,
12295
- ):
12656
+ class IMAGE_PT_scope_sample(ImageScopesPanel, bpy_types._GenericUI):
12296
12657
  bl_category: typing.Any
12297
- bl_context: typing.Any
12298
12658
  bl_label: typing.Any
12299
12659
  bl_options: typing.Any
12300
- bl_parent_id: typing.Any
12301
12660
  bl_region_type: typing.Any
12302
12661
  bl_rna: typing.Any
12303
12662
  bl_space_type: typing.Any
12304
- bl_ui_units_x: typing.Any
12305
12663
  id_data: typing.Any
12306
12664
 
12307
12665
  def append(self, draw_func):
@@ -12366,14 +12724,6 @@ class IMAGE_PT_paint_stroke(
12366
12724
  """
12367
12725
  ...
12368
12726
 
12369
- def get_brush_mode(self, context):
12370
- """Get the correct mode for this context. For any context where this returns None,
12371
- no brush options should be displayed.
12372
-
12373
- :param context:
12374
- """
12375
- ...
12376
-
12377
12727
  def id_properties_clear(self):
12378
12728
  """
12379
12729
 
@@ -12460,13 +12810,6 @@ class IMAGE_PT_paint_stroke(
12460
12810
  """
12461
12811
  ...
12462
12812
 
12463
- def paint_settings(self, context):
12464
- """
12465
-
12466
- :param context:
12467
- """
12468
- ...
12469
-
12470
12813
  def path_from_id(self) -> str:
12471
12814
  """Returns the data path from the ID to this object (string).
12472
12815
 
@@ -12502,59 +12845,6 @@ class IMAGE_PT_paint_stroke(
12502
12845
  """
12503
12846
  ...
12504
12847
 
12505
- def prop_unified(
12506
- self,
12507
- layout,
12508
- context,
12509
- brush,
12510
- prop_name,
12511
- unified_name=None,
12512
- pressure_name=None,
12513
- icon="NONE",
12514
- text=None,
12515
- slider=False,
12516
- header=False,
12517
- ):
12518
- """Generalized way of adding brush options to the UI,
12519
- along with their pen pressure setting and global toggle, if they exist.
12520
-
12521
- :param layout:
12522
- :param context:
12523
- :param brush:
12524
- :param prop_name:
12525
- :param unified_name:
12526
- :param pressure_name:
12527
- :param icon:
12528
- :param text:
12529
- :param slider:
12530
- :param header:
12531
- """
12532
- ...
12533
-
12534
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
12535
- """
12536
-
12537
- :param parent:
12538
- :param context:
12539
- :param brush:
12540
- :param prop_name:
12541
- :param text:
12542
- """
12543
- ...
12544
-
12545
- def prop_unified_color_picker(
12546
- self, parent, context, brush, prop_name, value_slider=True
12547
- ):
12548
- """
12549
-
12550
- :param parent:
12551
- :param context:
12552
- :param brush:
12553
- :param prop_name:
12554
- :param value_slider:
12555
- """
12556
- ...
12557
-
12558
12848
  def property_overridable_library_set(self) -> bool:
12559
12849
  """Define a property as overridable or not (only for custom properties!).
12560
12850
 
@@ -12585,23 +12875,13 @@ class IMAGE_PT_paint_stroke(
12585
12875
  def values(self):
12586
12876
  """Returns the values of this objects custom properties (matches Python's
12587
12877
  dictionary function of the same name).
12588
-
12589
- :return: custom property values.
12590
- """
12591
- ...
12592
-
12593
- class IMAGE_PT_paint_stroke_smooth_stroke(
12594
- bl_ui.properties_paint_common.BrushPanel,
12595
- BrushButtonsPanel,
12596
- bpy_types._GenericUI,
12597
- bl_ui.properties_paint_common.SmoothStrokePanel,
12598
- bl_ui.properties_paint_common.UnifiedPaintPanel,
12599
- ):
12600
- bl_category: typing.Any
12601
- bl_context: typing.Any
12878
+
12879
+ :return: custom property values.
12880
+ """
12881
+ ...
12882
+
12883
+ class IMAGE_PT_snapping(bpy_types._GenericUI):
12602
12884
  bl_label: typing.Any
12603
- bl_options: typing.Any
12604
- bl_parent_id: typing.Any
12605
12885
  bl_region_type: typing.Any
12606
12886
  bl_rna: typing.Any
12607
12887
  bl_space_type: typing.Any
@@ -12646,13 +12926,6 @@ class IMAGE_PT_paint_stroke_smooth_stroke(
12646
12926
  """
12647
12927
  ...
12648
12928
 
12649
- def draw_header(self, context):
12650
- """
12651
-
12652
- :param context:
12653
- """
12654
- ...
12655
-
12656
12929
  def driver_add(self) -> bpy.types.FCurve:
12657
12930
  """Adds driver(s) to the given property
12658
12931
 
@@ -12676,14 +12949,6 @@ class IMAGE_PT_paint_stroke_smooth_stroke(
12676
12949
  """
12677
12950
  ...
12678
12951
 
12679
- def get_brush_mode(self, context):
12680
- """Get the correct mode for this context. For any context where this returns None,
12681
- no brush options should be displayed.
12682
-
12683
- :param context:
12684
- """
12685
- ...
12686
-
12687
12952
  def id_properties_clear(self):
12688
12953
  """
12689
12954
 
@@ -12770,13 +13035,6 @@ class IMAGE_PT_paint_stroke_smooth_stroke(
12770
13035
  """
12771
13036
  ...
12772
13037
 
12773
- def paint_settings(self, context):
12774
- """
12775
-
12776
- :param context:
12777
- """
12778
- ...
12779
-
12780
13038
  def path_from_id(self) -> str:
12781
13039
  """Returns the data path from the ID to this object (string).
12782
13040
 
@@ -12790,13 +13048,6 @@ class IMAGE_PT_paint_stroke_smooth_stroke(
12790
13048
  """Returns the property from the path, raise an exception when not found."""
12791
13049
  ...
12792
13050
 
12793
- def poll(self, context):
12794
- """
12795
-
12796
- :param context:
12797
- """
12798
- ...
12799
-
12800
13051
  def pop(self):
12801
13052
  """Remove and return the value of the custom property assigned to key or default
12802
13053
  when not found (matches Python's dictionary function of the same name).
@@ -12812,59 +13063,6 @@ class IMAGE_PT_paint_stroke_smooth_stroke(
12812
13063
  """
12813
13064
  ...
12814
13065
 
12815
- def prop_unified(
12816
- self,
12817
- layout,
12818
- context,
12819
- brush,
12820
- prop_name,
12821
- unified_name=None,
12822
- pressure_name=None,
12823
- icon="NONE",
12824
- text=None,
12825
- slider=False,
12826
- header=False,
12827
- ):
12828
- """Generalized way of adding brush options to the UI,
12829
- along with their pen pressure setting and global toggle, if they exist.
12830
-
12831
- :param layout:
12832
- :param context:
12833
- :param brush:
12834
- :param prop_name:
12835
- :param unified_name:
12836
- :param pressure_name:
12837
- :param icon:
12838
- :param text:
12839
- :param slider:
12840
- :param header:
12841
- """
12842
- ...
12843
-
12844
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
12845
- """
12846
-
12847
- :param parent:
12848
- :param context:
12849
- :param brush:
12850
- :param prop_name:
12851
- :param text:
12852
- """
12853
- ...
12854
-
12855
- def prop_unified_color_picker(
12856
- self, parent, context, brush, prop_name, value_slider=True
12857
- ):
12858
- """
12859
-
12860
- :param parent:
12861
- :param context:
12862
- :param brush:
12863
- :param prop_name:
12864
- :param value_slider:
12865
- """
12866
- ...
12867
-
12868
13066
  def property_overridable_library_set(self) -> bool:
12869
13067
  """Define a property as overridable or not (only for custom properties!).
12870
13068
 
@@ -14116,18 +14314,9 @@ class IMAGE_PT_tools_mask_texture(
14116
14314
  """
14117
14315
  ...
14118
14316
 
14119
- class IMAGE_PT_paint_clone(
14120
- bl_ui.properties_paint_common.BrushPanel,
14121
- ImagePaintPanel,
14122
- bpy_types._GenericUI,
14123
- bl_ui.properties_paint_common.ClonePanel,
14124
- bl_ui.properties_paint_common.UnifiedPaintPanel,
14125
- ):
14317
+ class IMAGE_PT_udim_tiles(bpy_types._GenericUI):
14126
14318
  bl_category: typing.Any
14127
- bl_context: typing.Any
14128
14319
  bl_label: typing.Any
14129
- bl_options: typing.Any
14130
- bl_parent_id: typing.Any
14131
14320
  bl_region_type: typing.Any
14132
14321
  bl_rna: typing.Any
14133
14322
  bl_space_type: typing.Any
@@ -14172,13 +14361,6 @@ class IMAGE_PT_paint_clone(
14172
14361
  """
14173
14362
  ...
14174
14363
 
14175
- def draw_header(self, context):
14176
- """
14177
-
14178
- :param context:
14179
- """
14180
- ...
14181
-
14182
14364
  def driver_add(self) -> bpy.types.FCurve:
14183
14365
  """Adds driver(s) to the given property
14184
14366
 
@@ -14202,14 +14384,6 @@ class IMAGE_PT_paint_clone(
14202
14384
  """
14203
14385
  ...
14204
14386
 
14205
- def get_brush_mode(self, context):
14206
- """Get the correct mode for this context. For any context where this returns None,
14207
- no brush options should be displayed.
14208
-
14209
- :param context:
14210
- """
14211
- ...
14212
-
14213
14387
  def id_properties_clear(self):
14214
14388
  """
14215
14389
 
@@ -14296,13 +14470,6 @@ class IMAGE_PT_paint_clone(
14296
14470
  """
14297
14471
  ...
14298
14472
 
14299
- def paint_settings(self, context):
14300
- """
14301
-
14302
- :param context:
14303
- """
14304
- ...
14305
-
14306
14473
  def path_from_id(self) -> str:
14307
14474
  """Returns the data path from the ID to this object (string).
14308
14475
 
@@ -14338,59 +14505,6 @@ class IMAGE_PT_paint_clone(
14338
14505
  """
14339
14506
  ...
14340
14507
 
14341
- def prop_unified(
14342
- self,
14343
- layout,
14344
- context,
14345
- brush,
14346
- prop_name,
14347
- unified_name=None,
14348
- pressure_name=None,
14349
- icon="NONE",
14350
- text=None,
14351
- slider=False,
14352
- header=False,
14353
- ):
14354
- """Generalized way of adding brush options to the UI,
14355
- along with their pen pressure setting and global toggle, if they exist.
14356
-
14357
- :param layout:
14358
- :param context:
14359
- :param brush:
14360
- :param prop_name:
14361
- :param unified_name:
14362
- :param pressure_name:
14363
- :param icon:
14364
- :param text:
14365
- :param slider:
14366
- :param header:
14367
- """
14368
- ...
14369
-
14370
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
14371
- """
14372
-
14373
- :param parent:
14374
- :param context:
14375
- :param brush:
14376
- :param prop_name:
14377
- :param text:
14378
- """
14379
- ...
14380
-
14381
- def prop_unified_color_picker(
14382
- self, parent, context, brush, prop_name, value_slider=True
14383
- ):
14384
- """
14385
-
14386
- :param parent:
14387
- :param context:
14388
- :param brush:
14389
- :param prop_name:
14390
- :param value_slider:
14391
- """
14392
- ...
14393
-
14394
14508
  def property_overridable_library_set(self) -> bool:
14395
14509
  """Define a property as overridable or not (only for custom properties!).
14396
14510
 
@@ -14426,11 +14540,9 @@ class IMAGE_PT_paint_clone(
14426
14540
  """
14427
14541
  ...
14428
14542
 
14429
- class IMAGE_PT_paint_color(bpy_types._GenericUI, ImagePaintPanel):
14543
+ class IMAGE_PT_uv_cursor(bpy_types._GenericUI):
14430
14544
  bl_category: typing.Any
14431
- bl_context: typing.Any
14432
14545
  bl_label: typing.Any
14433
- bl_parent_id: typing.Any
14434
14546
  bl_region_type: typing.Any
14435
14547
  bl_rna: typing.Any
14436
14548
  bl_space_type: typing.Any
@@ -14654,15 +14766,8 @@ class IMAGE_PT_paint_color(bpy_types._GenericUI, ImagePaintPanel):
14654
14766
  """
14655
14767
  ...
14656
14768
 
14657
- class IMAGE_PT_paint_select(
14658
- bl_ui.properties_paint_common.BrushPanel,
14659
- ImagePaintPanel,
14660
- bpy_types._GenericUI,
14661
- bl_ui.properties_paint_common.BrushSelectPanel,
14662
- bl_ui.properties_paint_common.UnifiedPaintPanel,
14663
- ):
14769
+ class IMAGE_PT_view_display(bpy_types._GenericUI):
14664
14770
  bl_category: typing.Any
14665
- bl_context: typing.Any
14666
14771
  bl_label: typing.Any
14667
14772
  bl_region_type: typing.Any
14668
14773
  bl_rna: typing.Any
@@ -14731,14 +14836,6 @@ class IMAGE_PT_paint_select(
14731
14836
  """
14732
14837
  ...
14733
14838
 
14734
- def get_brush_mode(self, context):
14735
- """Get the correct mode for this context. For any context where this returns None,
14736
- no brush options should be displayed.
14737
-
14738
- :param context:
14739
- """
14740
- ...
14741
-
14742
14839
  def id_properties_clear(self):
14743
14840
  """
14744
14841
 
@@ -14825,13 +14922,6 @@ class IMAGE_PT_paint_select(
14825
14922
  """
14826
14923
  ...
14827
14924
 
14828
- def paint_settings(self, context):
14829
- """
14830
-
14831
- :param context:
14832
- """
14833
- ...
14834
-
14835
14925
  def path_from_id(self) -> str:
14836
14926
  """Returns the data path from the ID to this object (string).
14837
14927
 
@@ -14845,78 +14935,25 @@ class IMAGE_PT_paint_select(
14845
14935
  """Returns the property from the path, raise an exception when not found."""
14846
14936
  ...
14847
14937
 
14848
- def poll(self, context):
14849
- """
14850
-
14851
- :param context:
14852
- """
14853
- ...
14854
-
14855
- def pop(self):
14856
- """Remove and return the value of the custom property assigned to key or default
14857
- when not found (matches Python's dictionary function of the same name).
14858
-
14859
- """
14860
- ...
14861
-
14862
- def prepend(self, draw_func):
14863
- """Prepend a draw function to this menu, takes the same arguments as
14864
- the menus draw function
14865
-
14866
- :param draw_func:
14867
- """
14868
- ...
14869
-
14870
- def prop_unified(
14871
- self,
14872
- layout,
14873
- context,
14874
- brush,
14875
- prop_name,
14876
- unified_name=None,
14877
- pressure_name=None,
14878
- icon="NONE",
14879
- text=None,
14880
- slider=False,
14881
- header=False,
14882
- ):
14883
- """Generalized way of adding brush options to the UI,
14884
- along with their pen pressure setting and global toggle, if they exist.
14885
-
14886
- :param layout:
14887
- :param context:
14888
- :param brush:
14889
- :param prop_name:
14890
- :param unified_name:
14891
- :param pressure_name:
14892
- :param icon:
14893
- :param text:
14894
- :param slider:
14895
- :param header:
14896
- """
14897
- ...
14898
-
14899
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
14938
+ def poll(self, context):
14900
14939
  """
14901
14940
 
14902
- :param parent:
14903
14941
  :param context:
14904
- :param brush:
14905
- :param prop_name:
14906
- :param text:
14907
14942
  """
14908
14943
  ...
14909
14944
 
14910
- def prop_unified_color_picker(
14911
- self, parent, context, brush, prop_name, value_slider=True
14912
- ):
14945
+ def pop(self):
14946
+ """Remove and return the value of the custom property assigned to key or default
14947
+ when not found (matches Python's dictionary function of the same name).
14948
+
14913
14949
  """
14950
+ ...
14914
14951
 
14915
- :param parent:
14916
- :param context:
14917
- :param brush:
14918
- :param prop_name:
14919
- :param value_slider:
14952
+ def prepend(self, draw_func):
14953
+ """Prepend a draw function to this menu, takes the same arguments as
14954
+ the menus draw function
14955
+
14956
+ :param draw_func:
14920
14957
  """
14921
14958
  ...
14922
14959
 
@@ -14955,9 +14992,8 @@ class IMAGE_PT_paint_select(
14955
14992
  """
14956
14993
  ...
14957
14994
 
14958
- class IMAGE_PT_paint_settings(bpy_types._GenericUI, ImagePaintPanel):
14995
+ class IMAGE_PT_view_histogram(ImageScopesPanel, bpy_types._GenericUI):
14959
14996
  bl_category: typing.Any
14960
- bl_context: typing.Any
14961
14997
  bl_label: typing.Any
14962
14998
  bl_region_type: typing.Any
14963
14999
  bl_rna: typing.Any
@@ -15125,6 +15161,13 @@ class IMAGE_PT_paint_settings(bpy_types._GenericUI, ImagePaintPanel):
15125
15161
  """Returns the property from the path, raise an exception when not found."""
15126
15162
  ...
15127
15163
 
15164
+ def poll(self, context):
15165
+ """
15166
+
15167
+ :param context:
15168
+ """
15169
+ ...
15170
+
15128
15171
  def pop(self):
15129
15172
  """Remove and return the value of the custom property assigned to key or default
15130
15173
  when not found (matches Python's dictionary function of the same name).
@@ -15175,15 +15218,12 @@ class IMAGE_PT_paint_settings(bpy_types._GenericUI, ImagePaintPanel):
15175
15218
  """
15176
15219
  ...
15177
15220
 
15178
- class IMAGE_PT_paint_settings_advanced(bpy_types._GenericUI, ImagePaintPanel):
15221
+ class IMAGE_PT_view_vectorscope(ImageScopesPanel, bpy_types._GenericUI):
15179
15222
  bl_category: typing.Any
15180
- bl_context: typing.Any
15181
15223
  bl_label: typing.Any
15182
- bl_parent_id: typing.Any
15183
15224
  bl_region_type: typing.Any
15184
15225
  bl_rna: typing.Any
15185
15226
  bl_space_type: typing.Any
15186
- bl_ui_units_x: typing.Any
15187
15227
  id_data: typing.Any
15188
15228
 
15189
15229
  def append(self, draw_func):
@@ -15347,6 +15387,13 @@ class IMAGE_PT_paint_settings_advanced(bpy_types._GenericUI, ImagePaintPanel):
15347
15387
  """Returns the property from the path, raise an exception when not found."""
15348
15388
  ...
15349
15389
 
15390
+ def poll(self, context):
15391
+ """
15392
+
15393
+ :param context:
15394
+ """
15395
+ ...
15396
+
15350
15397
  def pop(self):
15351
15398
  """Remove and return the value of the custom property assigned to key or default
15352
15399
  when not found (matches Python's dictionary function of the same name).
@@ -15397,18 +15444,9 @@ class IMAGE_PT_paint_settings_advanced(bpy_types._GenericUI, ImagePaintPanel):
15397
15444
  """
15398
15445
  ...
15399
15446
 
15400
- class IMAGE_PT_paint_swatches(
15401
- bl_ui.properties_paint_common.BrushPanel,
15402
- ImagePaintPanel,
15403
- bpy_types._GenericUI,
15404
- bl_ui.properties_paint_common.ColorPalettePanel,
15405
- bl_ui.properties_paint_common.UnifiedPaintPanel,
15406
- ):
15447
+ class IMAGE_PT_view_waveform(ImageScopesPanel, bpy_types._GenericUI):
15407
15448
  bl_category: typing.Any
15408
- bl_context: typing.Any
15409
15449
  bl_label: typing.Any
15410
- bl_options: typing.Any
15411
- bl_parent_id: typing.Any
15412
15450
  bl_region_type: typing.Any
15413
15451
  bl_rna: typing.Any
15414
15452
  bl_space_type: typing.Any
@@ -15476,14 +15514,6 @@ class IMAGE_PT_paint_swatches(
15476
15514
  """
15477
15515
  ...
15478
15516
 
15479
- def get_brush_mode(self, context):
15480
- """Get the correct mode for this context. For any context where this returns None,
15481
- no brush options should be displayed.
15482
-
15483
- :param context:
15484
- """
15485
- ...
15486
-
15487
15517
  def id_properties_clear(self):
15488
15518
  """
15489
15519
 
@@ -15570,13 +15600,6 @@ class IMAGE_PT_paint_swatches(
15570
15600
  """
15571
15601
  ...
15572
15602
 
15573
- def paint_settings(self, context):
15574
- """
15575
-
15576
- :param context:
15577
- """
15578
- ...
15579
-
15580
15603
  def path_from_id(self) -> str:
15581
15604
  """Returns the data path from the ID to this object (string).
15582
15605
 
@@ -15612,59 +15635,6 @@ class IMAGE_PT_paint_swatches(
15612
15635
  """
15613
15636
  ...
15614
15637
 
15615
- def prop_unified(
15616
- self,
15617
- layout,
15618
- context,
15619
- brush,
15620
- prop_name,
15621
- unified_name=None,
15622
- pressure_name=None,
15623
- icon="NONE",
15624
- text=None,
15625
- slider=False,
15626
- header=False,
15627
- ):
15628
- """Generalized way of adding brush options to the UI,
15629
- along with their pen pressure setting and global toggle, if they exist.
15630
-
15631
- :param layout:
15632
- :param context:
15633
- :param brush:
15634
- :param prop_name:
15635
- :param unified_name:
15636
- :param pressure_name:
15637
- :param icon:
15638
- :param text:
15639
- :param slider:
15640
- :param header:
15641
- """
15642
- ...
15643
-
15644
- def prop_unified_color(self, parent, context, brush, prop_name, text=None):
15645
- """
15646
-
15647
- :param parent:
15648
- :param context:
15649
- :param brush:
15650
- :param prop_name:
15651
- :param text:
15652
- """
15653
- ...
15654
-
15655
- def prop_unified_color_picker(
15656
- self, parent, context, brush, prop_name, value_slider=True
15657
- ):
15658
- """
15659
-
15660
- :param parent:
15661
- :param context:
15662
- :param brush:
15663
- :param prop_name:
15664
- :param value_slider:
15665
- """
15666
- ...
15667
-
15668
15638
  def property_overridable_library_set(self) -> bool:
15669
15639
  """Define a property as overridable or not (only for custom properties!).
15670
15640
 
@@ -15700,14 +15670,8 @@ class IMAGE_PT_paint_swatches(
15700
15670
  """
15701
15671
  ...
15702
15672
 
15703
- class IMAGE_PT_uv_sculpt_curve(bpy_types._GenericUI, ImagePaintPanel):
15704
- bl_category: typing.Any
15705
- bl_context: typing.Any
15706
- bl_label: typing.Any
15707
- bl_options: typing.Any
15708
- bl_region_type: typing.Any
15673
+ class IMAGE_UL_render_slots(bpy_types._GenericUI):
15709
15674
  bl_rna: typing.Any
15710
- bl_space_type: typing.Any
15711
15675
  id_data: typing.Any
15712
15676
 
15713
15677
  def append(self, draw_func):
@@ -15742,10 +15706,27 @@ class IMAGE_PT_uv_sculpt_curve(bpy_types._GenericUI, ImagePaintPanel):
15742
15706
  """
15743
15707
  ...
15744
15708
 
15745
- def draw(self, context):
15709
+ def draw_item(
15710
+ self,
15711
+ _context,
15712
+ layout,
15713
+ _data,
15714
+ item,
15715
+ _icon,
15716
+ _active_data,
15717
+ _active_propname,
15718
+ _index,
15719
+ ):
15746
15720
  """
15747
15721
 
15748
- :param context:
15722
+ :param _context:
15723
+ :param layout:
15724
+ :param _data:
15725
+ :param item:
15726
+ :param _icon:
15727
+ :param _active_data:
15728
+ :param _active_propname:
15729
+ :param _index:
15749
15730
  """
15750
15731
  ...
15751
15732
 
@@ -15921,13 +15902,8 @@ class IMAGE_PT_uv_sculpt_curve(bpy_types._GenericUI, ImagePaintPanel):
15921
15902
  """
15922
15903
  ...
15923
15904
 
15924
- class IMAGE_PT_uv_sculpt_options(bpy_types._GenericUI, ImagePaintPanel):
15925
- bl_category: typing.Any
15926
- bl_context: typing.Any
15927
- bl_label: typing.Any
15928
- bl_region_type: typing.Any
15905
+ class IMAGE_UL_udim_tiles(bpy_types._GenericUI):
15929
15906
  bl_rna: typing.Any
15930
- bl_space_type: typing.Any
15931
15907
  id_data: typing.Any
15932
15908
 
15933
15909
  def append(self, draw_func):
@@ -15962,10 +15938,27 @@ class IMAGE_PT_uv_sculpt_options(bpy_types._GenericUI, ImagePaintPanel):
15962
15938
  """
15963
15939
  ...
15964
15940
 
15965
- def draw(self, context):
15941
+ def draw_item(
15942
+ self,
15943
+ _context,
15944
+ layout,
15945
+ _data,
15946
+ item,
15947
+ _icon,
15948
+ _active_data,
15949
+ _active_propname,
15950
+ _index,
15951
+ ):
15966
15952
  """
15967
15953
 
15968
- :param context:
15954
+ :param _context:
15955
+ :param layout:
15956
+ :param _data:
15957
+ :param item:
15958
+ :param _icon:
15959
+ :param _active_data:
15960
+ :param _active_propname:
15961
+ :param _index:
15969
15962
  """
15970
15963
  ...
15971
15964
 
@@ -16141,9 +16134,38 @@ class IMAGE_PT_uv_sculpt_options(bpy_types._GenericUI, ImagePaintPanel):
16141
16134
  """
16142
16135
  ...
16143
16136
 
16144
- class IMAGE_PT_sample_line(ImageScopesPanel, bpy_types._GenericUI):
16137
+ class ImageScopesPanel:
16138
+ def poll(self, context):
16139
+ """
16140
+
16141
+ :param context:
16142
+ """
16143
+ ...
16144
+
16145
+ class _draw_tool_settings_context_mode:
16146
+ def PAINT(self, context, layout, tool):
16147
+ """
16148
+
16149
+ :param context:
16150
+ :param layout:
16151
+ :param tool:
16152
+ """
16153
+ ...
16154
+
16155
+ def UV(self, context, layout, tool):
16156
+ """
16157
+
16158
+ :param context:
16159
+ :param layout:
16160
+ :param tool:
16161
+ """
16162
+ ...
16163
+
16164
+ class IMAGE_PT_paint_color(bpy_types._GenericUI, ImagePaintPanel):
16145
16165
  bl_category: typing.Any
16166
+ bl_context: typing.Any
16146
16167
  bl_label: typing.Any
16168
+ bl_parent_id: typing.Any
16147
16169
  bl_region_type: typing.Any
16148
16170
  bl_rna: typing.Any
16149
16171
  bl_space_type: typing.Any
@@ -16367,10 +16389,10 @@ class IMAGE_PT_sample_line(ImageScopesPanel, bpy_types._GenericUI):
16367
16389
  """
16368
16390
  ...
16369
16391
 
16370
- class IMAGE_PT_scope_sample(ImageScopesPanel, bpy_types._GenericUI):
16392
+ class IMAGE_PT_paint_settings(bpy_types._GenericUI, ImagePaintPanel):
16371
16393
  bl_category: typing.Any
16394
+ bl_context: typing.Any
16372
16395
  bl_label: typing.Any
16373
- bl_options: typing.Any
16374
16396
  bl_region_type: typing.Any
16375
16397
  bl_rna: typing.Any
16376
16398
  bl_space_type: typing.Any
@@ -16537,13 +16559,6 @@ class IMAGE_PT_scope_sample(ImageScopesPanel, bpy_types._GenericUI):
16537
16559
  """Returns the property from the path, raise an exception when not found."""
16538
16560
  ...
16539
16561
 
16540
- def poll(self, context):
16541
- """
16542
-
16543
- :param context:
16544
- """
16545
- ...
16546
-
16547
16562
  def pop(self):
16548
16563
  """Remove and return the value of the custom property assigned to key or default
16549
16564
  when not found (matches Python's dictionary function of the same name).
@@ -16594,12 +16609,15 @@ class IMAGE_PT_scope_sample(ImageScopesPanel, bpy_types._GenericUI):
16594
16609
  """
16595
16610
  ...
16596
16611
 
16597
- class IMAGE_PT_view_histogram(ImageScopesPanel, bpy_types._GenericUI):
16612
+ class IMAGE_PT_paint_settings_advanced(bpy_types._GenericUI, ImagePaintPanel):
16598
16613
  bl_category: typing.Any
16614
+ bl_context: typing.Any
16599
16615
  bl_label: typing.Any
16616
+ bl_parent_id: typing.Any
16600
16617
  bl_region_type: typing.Any
16601
16618
  bl_rna: typing.Any
16602
16619
  bl_space_type: typing.Any
16620
+ bl_ui_units_x: typing.Any
16603
16621
  id_data: typing.Any
16604
16622
 
16605
16623
  def append(self, draw_func):
@@ -16763,13 +16781,6 @@ class IMAGE_PT_view_histogram(ImageScopesPanel, bpy_types._GenericUI):
16763
16781
  """Returns the property from the path, raise an exception when not found."""
16764
16782
  ...
16765
16783
 
16766
- def poll(self, context):
16767
- """
16768
-
16769
- :param context:
16770
- """
16771
- ...
16772
-
16773
16784
  def pop(self):
16774
16785
  """Remove and return the value of the custom property assigned to key or default
16775
16786
  when not found (matches Python's dictionary function of the same name).
@@ -16820,9 +16831,11 @@ class IMAGE_PT_view_histogram(ImageScopesPanel, bpy_types._GenericUI):
16820
16831
  """
16821
16832
  ...
16822
16833
 
16823
- class IMAGE_PT_view_vectorscope(ImageScopesPanel, bpy_types._GenericUI):
16834
+ class IMAGE_PT_uv_sculpt_curve(bpy_types._GenericUI, ImagePaintPanel):
16824
16835
  bl_category: typing.Any
16836
+ bl_context: typing.Any
16825
16837
  bl_label: typing.Any
16838
+ bl_options: typing.Any
16826
16839
  bl_region_type: typing.Any
16827
16840
  bl_rna: typing.Any
16828
16841
  bl_space_type: typing.Any
@@ -16989,13 +17002,6 @@ class IMAGE_PT_view_vectorscope(ImageScopesPanel, bpy_types._GenericUI):
16989
17002
  """Returns the property from the path, raise an exception when not found."""
16990
17003
  ...
16991
17004
 
16992
- def poll(self, context):
16993
- """
16994
-
16995
- :param context:
16996
- """
16997
- ...
16998
-
16999
17005
  def pop(self):
17000
17006
  """Remove and return the value of the custom property assigned to key or default
17001
17007
  when not found (matches Python's dictionary function of the same name).
@@ -17046,8 +17052,9 @@ class IMAGE_PT_view_vectorscope(ImageScopesPanel, bpy_types._GenericUI):
17046
17052
  """
17047
17053
  ...
17048
17054
 
17049
- class IMAGE_PT_view_waveform(ImageScopesPanel, bpy_types._GenericUI):
17055
+ class IMAGE_PT_uv_sculpt_options(bpy_types._GenericUI, ImagePaintPanel):
17050
17056
  bl_category: typing.Any
17057
+ bl_context: typing.Any
17051
17058
  bl_label: typing.Any
17052
17059
  bl_region_type: typing.Any
17053
17060
  bl_rna: typing.Any
@@ -17215,13 +17222,6 @@ class IMAGE_PT_view_waveform(ImageScopesPanel, bpy_types._GenericUI):
17215
17222
  """Returns the property from the path, raise an exception when not found."""
17216
17223
  ...
17217
17224
 
17218
- def poll(self, context):
17219
- """
17220
-
17221
- :param context:
17222
- """
17223
- ...
17224
-
17225
17225
  def pop(self):
17226
17226
  """Remove and return the value of the custom property assigned to key or default
17227
17227
  when not found (matches Python's dictionary function of the same name).