fake-bpy-module 20240721__py3-none-any.whl → 20240723__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.
- bl_operators/bone_selection_sets/__init__.pyi +6 -18
- bl_operators/node/__init__.pyi +2 -4
- bl_operators/presets/__init__.pyi +2 -5
- bl_operators/wm/__init__.pyi +4 -5
- bl_ui/__init__.pyi +3 -4
- bl_ui/anim/__init__.pyi +1 -2
- bl_ui/asset_shelf/__init__.pyi +1 -2
- bl_ui/node_add_menu/__init__.pyi +1 -2
- bl_ui/node_add_menu_compositor/__init__.pyi +18 -19
- bl_ui/node_add_menu_geometry/__init__.pyi +50 -53
- bl_ui/node_add_menu_shader/__init__.pyi +10 -11
- bl_ui/node_add_menu_texture/__init__.pyi +9 -10
- bl_ui/properties_collection/__init__.pyi +6 -18
- bl_ui/properties_constraint/__init__.pyi +79 -142
- bl_ui/properties_data_armature/__init__.pyi +17 -32
- bl_ui/properties_data_bone/__init__.pyi +10 -15
- bl_ui/properties_data_camera/__init__.pyi +14 -29
- bl_ui/properties_data_curve/__init__.pyi +15 -40
- bl_ui/properties_data_curves/__init__.pyi +6 -9
- bl_ui/properties_data_empty/__init__.pyi +2 -3
- bl_ui/properties_data_gpencil/__init__.pyi +23 -37
- bl_ui/properties_data_grease_pencil/__init__.pyi +14 -36
- bl_ui/properties_data_lattice/__init__.pyi +3 -4
- bl_ui/properties_data_light/__init__.pyi +12 -23
- bl_ui/properties_data_lightprobe/__init__.pyi +13 -36
- bl_ui/properties_data_mesh/__init__.pyi +20 -27
- bl_ui/properties_data_metaball/__init__.pyi +5 -8
- bl_ui/properties_data_modifier/__init__.pyi +9 -24
- bl_ui/properties_data_pointcloud/__init__.pyi +5 -10
- bl_ui/properties_data_shaderfx/__init__.pyi +1 -2
- bl_ui/properties_data_speaker/__init__.pyi +5 -6
- bl_ui/properties_data_volume/__init__.pyi +8 -13
- bl_ui/properties_freestyle/__init__.pyi +26 -112
- bl_ui/properties_grease_pencil_common/__init__.pyi +15 -16
- bl_ui/properties_mask_common/__init__.pyi +7 -8
- bl_ui/properties_material/__init__.pyi +16 -40
- bl_ui/properties_material_gpencil/__init__.pyi +10 -28
- bl_ui/properties_object/__init__.pyi +14 -25
- bl_ui/properties_output/__init__.pyi +18 -45
- bl_ui/properties_paint_common/__init__.pyi +9 -10
- bl_ui/properties_particle/__init__.pyi +52 -134
- bl_ui/properties_physics_cloth/__init__.pyi +14 -35
- bl_ui/properties_physics_common/__init__.pyi +1 -2
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +22 -61
- bl_ui/properties_physics_field/__init__.pyi +10 -27
- bl_ui/properties_physics_fluid/__init__.pyi +28 -51
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +1 -2
- bl_ui/properties_physics_rigidbody/__init__.pyi +8 -17
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +13 -14
- bl_ui/properties_physics_softbody/__init__.pyi +15 -44
- bl_ui/properties_render/__init__.pyi +55 -146
- bl_ui/properties_scene/__init__.pyi +15 -28
- bl_ui/properties_texture/__init__.pyi +26 -70
- bl_ui/properties_view_layer/__init__.pyi +49 -80
- bl_ui/properties_workspace/__init__.pyi +4 -8
- bl_ui/properties_world/__init__.pyi +10 -17
- bl_ui/space_clip/__init__.pyi +72 -116
- bl_ui/space_console/__init__.pyi +6 -7
- bl_ui/space_dopesheet/__init__.pyi +39 -56
- bl_ui/space_filebrowser/__init__.pyi +29 -44
- bl_ui/space_graph/__init__.pyi +20 -23
- bl_ui/space_image/__init__.pyi +69 -134
- bl_ui/space_info/__init__.pyi +6 -7
- bl_ui/space_nla/__init__.pyi +17 -26
- bl_ui/space_node/__init__.pyi +28 -35
- bl_ui/space_outliner/__init__.pyi +14 -15
- bl_ui/space_properties/__init__.pyi +3 -4
- bl_ui/space_sequencer/__init__.pyi +80 -134
- bl_ui/space_spreadsheet/__init__.pyi +1 -2
- bl_ui/space_statusbar/__init__.pyi +1 -2
- bl_ui/space_text/__init__.pyi +16 -17
- bl_ui/space_time/__init__.pyi +7 -12
- bl_ui/space_toolsystem_common/__init__.pyi +1 -2
- bl_ui/space_toolsystem_toolbar/__init__.pyi +4 -13
- bl_ui/space_topbar/__init__.pyi +26 -27
- bl_ui/space_userpref/__init__.pyi +91 -196
- bl_ui/space_view3d/__init__.pyi +279 -342
- bl_ui/space_view3d_toolbar/__init__.pyi +613 -897
- bl_ui/temp_anim_layers/__init__.pyi +1 -2
- bpy/ops/sequencer/__init__.pyi +1 -1
- bpy/types/__init__.pyi +29718 -29418
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240723.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240723.dist-info}/RECORD +87 -87
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240723.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- nodeitems_builtins/__init__.pyi +4 -4
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240723.dist-info}/top_level.txt +0 -0
|
@@ -2,14 +2,11 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bpy.types
|
|
5
|
-
import bpy_types
|
|
6
5
|
|
|
7
6
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
8
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
9
8
|
|
|
10
|
-
class MATERIAL_PT_freestyle_line(
|
|
11
|
-
bpy.types.Panel, MaterialFreestyleButtonsPanel, bpy_types._GenericUI
|
|
12
|
-
):
|
|
9
|
+
class MATERIAL_PT_freestyle_line(MaterialFreestyleButtonsPanel, bpy.types.Panel):
|
|
13
10
|
COMPAT_ENGINES: typing.Any
|
|
14
11
|
bl_context: typing.Any
|
|
15
12
|
bl_label: typing.Any
|
|
@@ -55,7 +52,7 @@ class MaterialFreestyleButtonsPanel:
|
|
|
55
52
|
"""
|
|
56
53
|
...
|
|
57
54
|
|
|
58
|
-
class RENDER_MT_lineset_context_menu(bpy.types.Menu
|
|
55
|
+
class RENDER_MT_lineset_context_menu(bpy.types.Menu):
|
|
59
56
|
bl_label: typing.Any
|
|
60
57
|
bl_rna: typing.Any
|
|
61
58
|
id_data: typing.Any
|
|
@@ -83,9 +80,7 @@ class RENDER_MT_lineset_context_menu(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
83
80
|
"""
|
|
84
81
|
...
|
|
85
82
|
|
|
86
|
-
class RENDER_PT_freestyle(
|
|
87
|
-
bpy.types.Panel, RenderFreestyleButtonsPanel, bpy_types._GenericUI
|
|
88
|
-
):
|
|
83
|
+
class RENDER_PT_freestyle(RenderFreestyleButtonsPanel, bpy.types.Panel):
|
|
89
84
|
COMPAT_ENGINES: typing.Any
|
|
90
85
|
bl_context: typing.Any
|
|
91
86
|
bl_label: typing.Any
|
|
@@ -139,9 +134,7 @@ class RenderFreestyleButtonsPanel:
|
|
|
139
134
|
"""
|
|
140
135
|
...
|
|
141
136
|
|
|
142
|
-
class VIEWLAYER_PT_freestyle(
|
|
143
|
-
bpy.types.Panel, ViewLayerFreestyleButtonsPanel, bpy_types._GenericUI
|
|
144
|
-
):
|
|
137
|
+
class VIEWLAYER_PT_freestyle(ViewLayerFreestyleButtonsPanel, bpy.types.Panel):
|
|
145
138
|
COMPAT_ENGINES: typing.Any
|
|
146
139
|
bl_context: typing.Any
|
|
147
140
|
bl_label: typing.Any
|
|
@@ -182,7 +175,7 @@ class VIEWLAYER_PT_freestyle(
|
|
|
182
175
|
...
|
|
183
176
|
|
|
184
177
|
class VIEWLAYER_PT_freestyle_edge_detection(
|
|
185
|
-
bpy.types.Panel
|
|
178
|
+
ViewLayerFreestyleButtonsPanel, bpy.types.Panel
|
|
186
179
|
):
|
|
187
180
|
COMPAT_ENGINES: typing.Any
|
|
188
181
|
bl_context: typing.Any
|
|
@@ -218,10 +211,7 @@ class VIEWLAYER_PT_freestyle_edge_detection(
|
|
|
218
211
|
...
|
|
219
212
|
|
|
220
213
|
class VIEWLAYER_PT_freestyle_lineset(
|
|
221
|
-
bpy.types.Panel
|
|
222
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
223
|
-
ViewLayerFreestyleButtonsPanel,
|
|
224
|
-
bpy_types._GenericUI,
|
|
214
|
+
ViewLayerFreestyleEditorButtonsPanel, bpy.types.Panel
|
|
225
215
|
):
|
|
226
216
|
COMPAT_ENGINES: typing.Any
|
|
227
217
|
bl_context: typing.Any
|
|
@@ -265,11 +255,7 @@ class VIEWLAYER_PT_freestyle_lineset(
|
|
|
265
255
|
...
|
|
266
256
|
|
|
267
257
|
class VIEWLAYER_PT_freestyle_lineset_collection(
|
|
268
|
-
bpy.types.Panel
|
|
269
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
270
|
-
ViewLayerFreestyleLineStyle,
|
|
271
|
-
ViewLayerFreestyleButtonsPanel,
|
|
272
|
-
bpy_types._GenericUI,
|
|
258
|
+
ViewLayerFreestyleLineStyle, bpy.types.Panel
|
|
273
259
|
):
|
|
274
260
|
COMPAT_ENGINES: typing.Any
|
|
275
261
|
bl_context: typing.Any
|
|
@@ -313,11 +299,7 @@ class VIEWLAYER_PT_freestyle_lineset_collection(
|
|
|
313
299
|
...
|
|
314
300
|
|
|
315
301
|
class VIEWLAYER_PT_freestyle_lineset_edgetype(
|
|
316
|
-
bpy.types.Panel
|
|
317
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
318
|
-
ViewLayerFreestyleLineStyle,
|
|
319
|
-
ViewLayerFreestyleButtonsPanel,
|
|
320
|
-
bpy_types._GenericUI,
|
|
302
|
+
ViewLayerFreestyleLineStyle, bpy.types.Panel
|
|
321
303
|
):
|
|
322
304
|
COMPAT_ENGINES: typing.Any
|
|
323
305
|
bl_context: typing.Any
|
|
@@ -369,11 +351,7 @@ class VIEWLAYER_PT_freestyle_lineset_edgetype(
|
|
|
369
351
|
...
|
|
370
352
|
|
|
371
353
|
class VIEWLAYER_PT_freestyle_lineset_facemarks(
|
|
372
|
-
bpy.types.Panel
|
|
373
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
374
|
-
ViewLayerFreestyleLineStyle,
|
|
375
|
-
ViewLayerFreestyleButtonsPanel,
|
|
376
|
-
bpy_types._GenericUI,
|
|
354
|
+
ViewLayerFreestyleLineStyle, bpy.types.Panel
|
|
377
355
|
):
|
|
378
356
|
COMPAT_ENGINES: typing.Any
|
|
379
357
|
bl_context: typing.Any
|
|
@@ -417,11 +395,7 @@ class VIEWLAYER_PT_freestyle_lineset_facemarks(
|
|
|
417
395
|
...
|
|
418
396
|
|
|
419
397
|
class VIEWLAYER_PT_freestyle_lineset_visibilty(
|
|
420
|
-
bpy.types.Panel
|
|
421
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
422
|
-
ViewLayerFreestyleLineStyle,
|
|
423
|
-
ViewLayerFreestyleButtonsPanel,
|
|
424
|
-
bpy_types._GenericUI,
|
|
398
|
+
ViewLayerFreestyleLineStyle, bpy.types.Panel
|
|
425
399
|
):
|
|
426
400
|
COMPAT_ENGINES: typing.Any
|
|
427
401
|
bl_context: typing.Any
|
|
@@ -464,11 +438,7 @@ class VIEWLAYER_PT_freestyle_lineset_visibilty(
|
|
|
464
438
|
...
|
|
465
439
|
|
|
466
440
|
class VIEWLAYER_PT_freestyle_linestyle_alpha(
|
|
467
|
-
bpy.types.Panel
|
|
468
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
469
|
-
ViewLayerFreestyleLineStyle,
|
|
470
|
-
ViewLayerFreestyleButtonsPanel,
|
|
471
|
-
bpy_types._GenericUI,
|
|
441
|
+
ViewLayerFreestyleLineStyle, bpy.types.Panel
|
|
472
442
|
):
|
|
473
443
|
COMPAT_ENGINES: typing.Any
|
|
474
444
|
bl_context: typing.Any
|
|
@@ -512,11 +482,7 @@ class VIEWLAYER_PT_freestyle_linestyle_alpha(
|
|
|
512
482
|
...
|
|
513
483
|
|
|
514
484
|
class VIEWLAYER_PT_freestyle_linestyle_color(
|
|
515
|
-
bpy.types.Panel
|
|
516
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
517
|
-
ViewLayerFreestyleLineStyle,
|
|
518
|
-
ViewLayerFreestyleButtonsPanel,
|
|
519
|
-
bpy_types._GenericUI,
|
|
485
|
+
ViewLayerFreestyleLineStyle, bpy.types.Panel
|
|
520
486
|
):
|
|
521
487
|
COMPAT_ENGINES: typing.Any
|
|
522
488
|
bl_context: typing.Any
|
|
@@ -560,11 +526,7 @@ class VIEWLAYER_PT_freestyle_linestyle_color(
|
|
|
560
526
|
...
|
|
561
527
|
|
|
562
528
|
class VIEWLAYER_PT_freestyle_linestyle_geometry(
|
|
563
|
-
bpy.types.Panel
|
|
564
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
565
|
-
ViewLayerFreestyleLineStyle,
|
|
566
|
-
ViewLayerFreestyleButtonsPanel,
|
|
567
|
-
bpy_types._GenericUI,
|
|
529
|
+
ViewLayerFreestyleLineStyle, bpy.types.Panel
|
|
568
530
|
):
|
|
569
531
|
COMPAT_ENGINES: typing.Any
|
|
570
532
|
bl_context: typing.Any
|
|
@@ -608,11 +570,7 @@ class VIEWLAYER_PT_freestyle_linestyle_geometry(
|
|
|
608
570
|
...
|
|
609
571
|
|
|
610
572
|
class VIEWLAYER_PT_freestyle_linestyle_strokes(
|
|
611
|
-
bpy.types.Panel
|
|
612
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
613
|
-
ViewLayerFreestyleLineStyle,
|
|
614
|
-
ViewLayerFreestyleButtonsPanel,
|
|
615
|
-
bpy_types._GenericUI,
|
|
573
|
+
ViewLayerFreestyleLineStyle, bpy.types.Panel
|
|
616
574
|
):
|
|
617
575
|
COMPAT_ENGINES: typing.Any
|
|
618
576
|
bl_context: typing.Any
|
|
@@ -648,12 +606,7 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes(
|
|
|
648
606
|
...
|
|
649
607
|
|
|
650
608
|
class VIEWLAYER_PT_freestyle_linestyle_strokes_chaining(
|
|
651
|
-
bpy.types.Panel
|
|
652
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
653
|
-
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
654
|
-
ViewLayerFreestyleLineStyle,
|
|
655
|
-
ViewLayerFreestyleButtonsPanel,
|
|
656
|
-
bpy_types._GenericUI,
|
|
609
|
+
ViewLayerFreestyleLinestyleStrokesSubPanel, bpy.types.Panel
|
|
657
610
|
):
|
|
658
611
|
COMPAT_ENGINES: typing.Any
|
|
659
612
|
bl_context: typing.Any
|
|
@@ -696,12 +649,7 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_chaining(
|
|
|
696
649
|
...
|
|
697
650
|
|
|
698
651
|
class VIEWLAYER_PT_freestyle_linestyle_strokes_dashedline(
|
|
699
|
-
bpy.types.Panel
|
|
700
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
701
|
-
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
702
|
-
ViewLayerFreestyleLineStyle,
|
|
703
|
-
ViewLayerFreestyleButtonsPanel,
|
|
704
|
-
bpy_types._GenericUI,
|
|
652
|
+
ViewLayerFreestyleLinestyleStrokesSubPanel, bpy.types.Panel
|
|
705
653
|
):
|
|
706
654
|
COMPAT_ENGINES: typing.Any
|
|
707
655
|
bl_context: typing.Any
|
|
@@ -745,12 +693,7 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_dashedline(
|
|
|
745
693
|
...
|
|
746
694
|
|
|
747
695
|
class VIEWLAYER_PT_freestyle_linestyle_strokes_selection(
|
|
748
|
-
bpy.types.Panel
|
|
749
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
750
|
-
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
751
|
-
ViewLayerFreestyleLineStyle,
|
|
752
|
-
ViewLayerFreestyleButtonsPanel,
|
|
753
|
-
bpy_types._GenericUI,
|
|
696
|
+
ViewLayerFreestyleLinestyleStrokesSubPanel, bpy.types.Panel
|
|
754
697
|
):
|
|
755
698
|
COMPAT_ENGINES: typing.Any
|
|
756
699
|
bl_context: typing.Any
|
|
@@ -787,12 +730,7 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_selection(
|
|
|
787
730
|
...
|
|
788
731
|
|
|
789
732
|
class VIEWLAYER_PT_freestyle_linestyle_strokes_sorting(
|
|
790
|
-
bpy.types.Panel
|
|
791
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
792
|
-
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
793
|
-
ViewLayerFreestyleLineStyle,
|
|
794
|
-
ViewLayerFreestyleButtonsPanel,
|
|
795
|
-
bpy_types._GenericUI,
|
|
733
|
+
ViewLayerFreestyleLinestyleStrokesSubPanel, bpy.types.Panel
|
|
796
734
|
):
|
|
797
735
|
COMPAT_ENGINES: typing.Any
|
|
798
736
|
bl_context: typing.Any
|
|
@@ -836,12 +774,7 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_sorting(
|
|
|
836
774
|
...
|
|
837
775
|
|
|
838
776
|
class VIEWLAYER_PT_freestyle_linestyle_strokes_splitting(
|
|
839
|
-
bpy.types.Panel
|
|
840
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
841
|
-
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
842
|
-
ViewLayerFreestyleLineStyle,
|
|
843
|
-
ViewLayerFreestyleButtonsPanel,
|
|
844
|
-
bpy_types._GenericUI,
|
|
777
|
+
ViewLayerFreestyleLinestyleStrokesSubPanel, bpy.types.Panel
|
|
845
778
|
):
|
|
846
779
|
COMPAT_ENGINES: typing.Any
|
|
847
780
|
bl_context: typing.Any
|
|
@@ -878,12 +811,7 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_splitting(
|
|
|
878
811
|
...
|
|
879
812
|
|
|
880
813
|
class VIEWLAYER_PT_freestyle_linestyle_strokes_splitting_pattern(
|
|
881
|
-
bpy.types.Panel
|
|
882
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
883
|
-
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
884
|
-
ViewLayerFreestyleLineStyle,
|
|
885
|
-
ViewLayerFreestyleButtonsPanel,
|
|
886
|
-
bpy_types._GenericUI,
|
|
814
|
+
ViewLayerFreestyleLinestyleStrokesSubPanel, bpy.types.Panel
|
|
887
815
|
):
|
|
888
816
|
COMPAT_ENGINES: typing.Any
|
|
889
817
|
bl_context: typing.Any
|
|
@@ -927,11 +855,7 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_splitting_pattern(
|
|
|
927
855
|
...
|
|
928
856
|
|
|
929
857
|
class VIEWLAYER_PT_freestyle_linestyle_texture(
|
|
930
|
-
bpy.types.Panel
|
|
931
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
932
|
-
ViewLayerFreestyleLineStyle,
|
|
933
|
-
ViewLayerFreestyleButtonsPanel,
|
|
934
|
-
bpy_types._GenericUI,
|
|
858
|
+
ViewLayerFreestyleLineStyle, bpy.types.Panel
|
|
935
859
|
):
|
|
936
860
|
COMPAT_ENGINES: typing.Any
|
|
937
861
|
bl_context: typing.Any
|
|
@@ -967,11 +891,7 @@ class VIEWLAYER_PT_freestyle_linestyle_texture(
|
|
|
967
891
|
...
|
|
968
892
|
|
|
969
893
|
class VIEWLAYER_PT_freestyle_linestyle_thickness(
|
|
970
|
-
bpy.types.Panel
|
|
971
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
972
|
-
ViewLayerFreestyleLineStyle,
|
|
973
|
-
ViewLayerFreestyleButtonsPanel,
|
|
974
|
-
bpy_types._GenericUI,
|
|
894
|
+
ViewLayerFreestyleLineStyle, bpy.types.Panel
|
|
975
895
|
):
|
|
976
896
|
COMPAT_ENGINES: typing.Any
|
|
977
897
|
bl_context: typing.Any
|
|
@@ -1015,7 +935,7 @@ class VIEWLAYER_PT_freestyle_linestyle_thickness(
|
|
|
1015
935
|
...
|
|
1016
936
|
|
|
1017
937
|
class VIEWLAYER_PT_freestyle_style_modules(
|
|
1018
|
-
bpy.types.Panel
|
|
938
|
+
ViewLayerFreestyleButtonsPanel, bpy.types.Panel
|
|
1019
939
|
):
|
|
1020
940
|
COMPAT_ENGINES: typing.Any
|
|
1021
941
|
bl_context: typing.Any
|
|
@@ -1058,7 +978,7 @@ class VIEWLAYER_PT_freestyle_style_modules(
|
|
|
1058
978
|
"""
|
|
1059
979
|
...
|
|
1060
980
|
|
|
1061
|
-
class VIEWLAYER_UL_linesets(bpy.types.UIList
|
|
981
|
+
class VIEWLAYER_UL_linesets(bpy.types.UIList):
|
|
1062
982
|
bl_rna: typing.Any
|
|
1063
983
|
id_data: typing.Any
|
|
1064
984
|
|
|
@@ -1122,9 +1042,7 @@ class ViewLayerFreestyleEditorButtonsPanel(ViewLayerFreestyleButtonsPanel):
|
|
|
1122
1042
|
"""
|
|
1123
1043
|
...
|
|
1124
1044
|
|
|
1125
|
-
class ViewLayerFreestyleLineStyle(
|
|
1126
|
-
ViewLayerFreestyleEditorButtonsPanel, ViewLayerFreestyleButtonsPanel
|
|
1127
|
-
):
|
|
1045
|
+
class ViewLayerFreestyleLineStyle(ViewLayerFreestyleEditorButtonsPanel):
|
|
1128
1046
|
COMPAT_ENGINES: typing.Any
|
|
1129
1047
|
bl_context: typing.Any
|
|
1130
1048
|
bl_order: typing.Any
|
|
@@ -1139,11 +1057,7 @@ class ViewLayerFreestyleLineStyle(
|
|
|
1139
1057
|
"""
|
|
1140
1058
|
...
|
|
1141
1059
|
|
|
1142
|
-
class ViewLayerFreestyleLinestyleStrokesSubPanel(
|
|
1143
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
1144
|
-
ViewLayerFreestyleLineStyle,
|
|
1145
|
-
ViewLayerFreestyleButtonsPanel,
|
|
1146
|
-
):
|
|
1060
|
+
class ViewLayerFreestyleLinestyleStrokesSubPanel(ViewLayerFreestyleLineStyle):
|
|
1147
1061
|
COMPAT_ENGINES: typing.Any
|
|
1148
1062
|
bl_context: typing.Any
|
|
1149
1063
|
bl_order: typing.Any
|
|
@@ -2,7 +2,6 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bpy.types
|
|
5
|
-
import bpy_types
|
|
6
5
|
|
|
7
6
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
8
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
@@ -74,7 +73,7 @@ class AnnotationOnionSkin:
|
|
|
74
73
|
"""
|
|
75
74
|
...
|
|
76
75
|
|
|
77
|
-
class GPENCIL_MT_cleanup(bpy.types.Menu
|
|
76
|
+
class GPENCIL_MT_cleanup(bpy.types.Menu):
|
|
78
77
|
bl_label: typing.Any
|
|
79
78
|
bl_rna: typing.Any
|
|
80
79
|
id_data: typing.Any
|
|
@@ -102,7 +101,7 @@ class GPENCIL_MT_cleanup(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
102
101
|
"""
|
|
103
102
|
...
|
|
104
103
|
|
|
105
|
-
class GPENCIL_MT_gpencil_draw_delete(bpy.types.Menu
|
|
104
|
+
class GPENCIL_MT_gpencil_draw_delete(bpy.types.Menu):
|
|
106
105
|
bl_label: typing.Any
|
|
107
106
|
bl_rna: typing.Any
|
|
108
107
|
id_data: typing.Any
|
|
@@ -130,7 +129,7 @@ class GPENCIL_MT_gpencil_draw_delete(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
130
129
|
"""
|
|
131
130
|
...
|
|
132
131
|
|
|
133
|
-
class GPENCIL_MT_layer_active(bpy.types.Menu
|
|
132
|
+
class GPENCIL_MT_layer_active(bpy.types.Menu):
|
|
134
133
|
bl_label: typing.Any
|
|
135
134
|
bl_rna: typing.Any
|
|
136
135
|
id_data: typing.Any
|
|
@@ -158,7 +157,7 @@ class GPENCIL_MT_layer_active(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
158
157
|
"""
|
|
159
158
|
...
|
|
160
159
|
|
|
161
|
-
class GPENCIL_MT_layer_mask_menu(bpy.types.Menu
|
|
160
|
+
class GPENCIL_MT_layer_mask_menu(bpy.types.Menu):
|
|
162
161
|
bl_label: typing.Any
|
|
163
162
|
bl_rna: typing.Any
|
|
164
163
|
id_data: typing.Any
|
|
@@ -186,7 +185,7 @@ class GPENCIL_MT_layer_mask_menu(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
186
185
|
"""
|
|
187
186
|
...
|
|
188
187
|
|
|
189
|
-
class GPENCIL_MT_material_active(bpy.types.Menu
|
|
188
|
+
class GPENCIL_MT_material_active(bpy.types.Menu):
|
|
190
189
|
bl_label: typing.Any
|
|
191
190
|
bl_rna: typing.Any
|
|
192
191
|
id_data: typing.Any
|
|
@@ -222,7 +221,7 @@ class GPENCIL_MT_material_active(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
222
221
|
"""
|
|
223
222
|
...
|
|
224
223
|
|
|
225
|
-
class GPENCIL_MT_move_to_layer(bpy.types.Menu
|
|
224
|
+
class GPENCIL_MT_move_to_layer(bpy.types.Menu):
|
|
226
225
|
bl_label: typing.Any
|
|
227
226
|
bl_rna: typing.Any
|
|
228
227
|
id_data: typing.Any
|
|
@@ -250,7 +249,7 @@ class GPENCIL_MT_move_to_layer(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
250
249
|
"""
|
|
251
250
|
...
|
|
252
251
|
|
|
253
|
-
class GPENCIL_MT_snap(bpy.types.Menu
|
|
252
|
+
class GPENCIL_MT_snap(bpy.types.Menu):
|
|
254
253
|
bl_label: typing.Any
|
|
255
254
|
bl_rna: typing.Any
|
|
256
255
|
id_data: typing.Any
|
|
@@ -278,7 +277,7 @@ class GPENCIL_MT_snap(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
278
277
|
"""
|
|
279
278
|
...
|
|
280
279
|
|
|
281
|
-
class GPENCIL_MT_snap_pie(bpy.types.Menu
|
|
280
|
+
class GPENCIL_MT_snap_pie(bpy.types.Menu):
|
|
282
281
|
bl_label: typing.Any
|
|
283
282
|
bl_rna: typing.Any
|
|
284
283
|
id_data: typing.Any
|
|
@@ -306,7 +305,7 @@ class GPENCIL_MT_snap_pie(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
306
305
|
"""
|
|
307
306
|
...
|
|
308
307
|
|
|
309
|
-
class GPENCIL_UL_annotation_layer(bpy.types.UIList
|
|
308
|
+
class GPENCIL_UL_annotation_layer(bpy.types.UIList):
|
|
310
309
|
bl_rna: typing.Any
|
|
311
310
|
id_data: typing.Any
|
|
312
311
|
|
|
@@ -350,7 +349,7 @@ class GPENCIL_UL_annotation_layer(bpy.types.UIList, bpy_types._GenericUI):
|
|
|
350
349
|
"""
|
|
351
350
|
...
|
|
352
351
|
|
|
353
|
-
class GPENCIL_UL_layer(bpy.types.UIList
|
|
352
|
+
class GPENCIL_UL_layer(bpy.types.UIList):
|
|
354
353
|
bl_rna: typing.Any
|
|
355
354
|
id_data: typing.Any
|
|
356
355
|
|
|
@@ -394,7 +393,7 @@ class GPENCIL_UL_layer(bpy.types.UIList, bpy_types._GenericUI):
|
|
|
394
393
|
"""
|
|
395
394
|
...
|
|
396
395
|
|
|
397
|
-
class GPENCIL_UL_masks(bpy.types.UIList
|
|
396
|
+
class GPENCIL_UL_masks(bpy.types.UIList):
|
|
398
397
|
bl_rna: typing.Any
|
|
399
398
|
id_data: typing.Any
|
|
400
399
|
|
|
@@ -438,7 +437,7 @@ class GPENCIL_UL_masks(bpy.types.UIList, bpy_types._GenericUI):
|
|
|
438
437
|
"""
|
|
439
438
|
...
|
|
440
439
|
|
|
441
|
-
class GREASE_PENCIL_MT_layer_active(bpy.types.Menu
|
|
440
|
+
class GREASE_PENCIL_MT_layer_active(bpy.types.Menu):
|
|
442
441
|
bl_label: typing.Any
|
|
443
442
|
bl_rna: typing.Any
|
|
444
443
|
id_data: typing.Any
|
|
@@ -466,7 +465,7 @@ class GREASE_PENCIL_MT_layer_active(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
466
465
|
"""
|
|
467
466
|
...
|
|
468
467
|
|
|
469
|
-
class GREASE_PENCIL_MT_move_to_layer(bpy.types.Menu
|
|
468
|
+
class GREASE_PENCIL_MT_move_to_layer(bpy.types.Menu):
|
|
470
469
|
bl_label: typing.Any
|
|
471
470
|
bl_rna: typing.Any
|
|
472
471
|
id_data: typing.Any
|
|
@@ -494,7 +493,7 @@ class GREASE_PENCIL_MT_move_to_layer(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
494
493
|
"""
|
|
495
494
|
...
|
|
496
495
|
|
|
497
|
-
class GREASE_PENCIL_MT_snap(bpy.types.Menu
|
|
496
|
+
class GREASE_PENCIL_MT_snap(bpy.types.Menu):
|
|
498
497
|
bl_label: typing.Any
|
|
499
498
|
bl_rna: typing.Any
|
|
500
499
|
id_data: typing.Any
|
|
@@ -522,7 +521,7 @@ class GREASE_PENCIL_MT_snap(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
522
521
|
"""
|
|
523
522
|
...
|
|
524
523
|
|
|
525
|
-
class GREASE_PENCIL_MT_snap_pie(bpy.types.Menu
|
|
524
|
+
class GREASE_PENCIL_MT_snap_pie(bpy.types.Menu):
|
|
526
525
|
bl_label: typing.Any
|
|
527
526
|
bl_rna: typing.Any
|
|
528
527
|
id_data: typing.Any
|
|
@@ -2,12 +2,11 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bpy.types
|
|
5
|
-
import bpy_types
|
|
6
5
|
|
|
7
6
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
8
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
9
8
|
|
|
10
|
-
class MASK_MT_add(bpy.types.Menu
|
|
9
|
+
class MASK_MT_add(bpy.types.Menu):
|
|
11
10
|
bl_idname: typing.Any
|
|
12
11
|
bl_label: typing.Any
|
|
13
12
|
bl_rna: typing.Any
|
|
@@ -37,7 +36,7 @@ class MASK_MT_add(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
37
36
|
"""
|
|
38
37
|
...
|
|
39
38
|
|
|
40
|
-
class MASK_MT_animation(bpy.types.Menu
|
|
39
|
+
class MASK_MT_animation(bpy.types.Menu):
|
|
41
40
|
bl_label: typing.Any
|
|
42
41
|
bl_rna: typing.Any
|
|
43
42
|
id_data: typing.Any
|
|
@@ -65,7 +64,7 @@ class MASK_MT_animation(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
65
64
|
"""
|
|
66
65
|
...
|
|
67
66
|
|
|
68
|
-
class MASK_MT_mask(bpy.types.Menu
|
|
67
|
+
class MASK_MT_mask(bpy.types.Menu):
|
|
69
68
|
bl_label: typing.Any
|
|
70
69
|
bl_rna: typing.Any
|
|
71
70
|
id_data: typing.Any
|
|
@@ -93,7 +92,7 @@ class MASK_MT_mask(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
93
92
|
"""
|
|
94
93
|
...
|
|
95
94
|
|
|
96
|
-
class MASK_MT_select(bpy.types.Menu
|
|
95
|
+
class MASK_MT_select(bpy.types.Menu):
|
|
97
96
|
bl_label: typing.Any
|
|
98
97
|
bl_rna: typing.Any
|
|
99
98
|
id_data: typing.Any
|
|
@@ -121,7 +120,7 @@ class MASK_MT_select(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
121
120
|
"""
|
|
122
121
|
...
|
|
123
122
|
|
|
124
|
-
class MASK_MT_transform(bpy.types.Menu
|
|
123
|
+
class MASK_MT_transform(bpy.types.Menu):
|
|
125
124
|
bl_label: typing.Any
|
|
126
125
|
bl_rna: typing.Any
|
|
127
126
|
id_data: typing.Any
|
|
@@ -149,7 +148,7 @@ class MASK_MT_transform(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
149
148
|
"""
|
|
150
149
|
...
|
|
151
150
|
|
|
152
|
-
class MASK_MT_visibility(bpy.types.Menu
|
|
151
|
+
class MASK_MT_visibility(bpy.types.Menu):
|
|
153
152
|
bl_label: typing.Any
|
|
154
153
|
bl_rna: typing.Any
|
|
155
154
|
id_data: typing.Any
|
|
@@ -306,7 +305,7 @@ class MASK_PT_transforms:
|
|
|
306
305
|
"""
|
|
307
306
|
...
|
|
308
307
|
|
|
309
|
-
class MASK_UL_layers(bpy.types.UIList
|
|
308
|
+
class MASK_UL_layers(bpy.types.UIList):
|
|
310
309
|
bl_rna: typing.Any
|
|
311
310
|
id_data: typing.Any
|
|
312
311
|
|
|
@@ -2,15 +2,12 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bpy.types
|
|
5
|
-
import bpy_types
|
|
6
5
|
import rna_prop_ui
|
|
7
6
|
|
|
8
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
9
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
10
9
|
|
|
11
|
-
class EEVEE_MATERIAL_PT_context_material(
|
|
12
|
-
bpy.types.Panel, MaterialButtonsPanel, bpy_types._GenericUI
|
|
13
|
-
):
|
|
10
|
+
class EEVEE_MATERIAL_PT_context_material(MaterialButtonsPanel, bpy.types.Panel):
|
|
14
11
|
COMPAT_ENGINES: typing.Any
|
|
15
12
|
bl_context: typing.Any
|
|
16
13
|
bl_label: typing.Any
|
|
@@ -51,9 +48,7 @@ class EEVEE_MATERIAL_PT_context_material(
|
|
|
51
48
|
"""
|
|
52
49
|
...
|
|
53
50
|
|
|
54
|
-
class EEVEE_MATERIAL_PT_displacement(
|
|
55
|
-
bpy.types.Panel, MaterialButtonsPanel, bpy_types._GenericUI
|
|
56
|
-
):
|
|
51
|
+
class EEVEE_MATERIAL_PT_displacement(MaterialButtonsPanel, bpy.types.Panel):
|
|
57
52
|
COMPAT_ENGINES: typing.Any
|
|
58
53
|
bl_context: typing.Any
|
|
59
54
|
bl_label: typing.Any
|
|
@@ -94,9 +89,7 @@ class EEVEE_MATERIAL_PT_displacement(
|
|
|
94
89
|
"""
|
|
95
90
|
...
|
|
96
91
|
|
|
97
|
-
class EEVEE_MATERIAL_PT_settings(
|
|
98
|
-
bpy.types.Panel, MaterialButtonsPanel, bpy_types._GenericUI
|
|
99
|
-
):
|
|
92
|
+
class EEVEE_MATERIAL_PT_settings(MaterialButtonsPanel, bpy.types.Panel):
|
|
100
93
|
COMPAT_ENGINES: typing.Any
|
|
101
94
|
bl_context: typing.Any
|
|
102
95
|
bl_label: typing.Any
|
|
@@ -128,9 +121,7 @@ class EEVEE_MATERIAL_PT_settings(
|
|
|
128
121
|
"""
|
|
129
122
|
...
|
|
130
123
|
|
|
131
|
-
class EEVEE_MATERIAL_PT_surface(
|
|
132
|
-
bpy.types.Panel, MaterialButtonsPanel, bpy_types._GenericUI
|
|
133
|
-
):
|
|
124
|
+
class EEVEE_MATERIAL_PT_surface(MaterialButtonsPanel, bpy.types.Panel):
|
|
134
125
|
COMPAT_ENGINES: typing.Any
|
|
135
126
|
bl_context: typing.Any
|
|
136
127
|
bl_label: typing.Any
|
|
@@ -162,9 +153,7 @@ class EEVEE_MATERIAL_PT_surface(
|
|
|
162
153
|
"""
|
|
163
154
|
...
|
|
164
155
|
|
|
165
|
-
class EEVEE_MATERIAL_PT_thickness(
|
|
166
|
-
bpy.types.Panel, MaterialButtonsPanel, bpy_types._GenericUI
|
|
167
|
-
):
|
|
156
|
+
class EEVEE_MATERIAL_PT_thickness(MaterialButtonsPanel, bpy.types.Panel):
|
|
168
157
|
COMPAT_ENGINES: typing.Any
|
|
169
158
|
bl_context: typing.Any
|
|
170
159
|
bl_label: typing.Any
|
|
@@ -206,9 +195,7 @@ class EEVEE_MATERIAL_PT_thickness(
|
|
|
206
195
|
"""
|
|
207
196
|
...
|
|
208
197
|
|
|
209
|
-
class EEVEE_MATERIAL_PT_viewport_settings(
|
|
210
|
-
bpy.types.Panel, MaterialButtonsPanel, bpy_types._GenericUI
|
|
211
|
-
):
|
|
198
|
+
class EEVEE_MATERIAL_PT_viewport_settings(MaterialButtonsPanel, bpy.types.Panel):
|
|
212
199
|
COMPAT_ENGINES: typing.Any
|
|
213
200
|
bl_context: typing.Any
|
|
214
201
|
bl_label: typing.Any
|
|
@@ -241,9 +228,7 @@ class EEVEE_MATERIAL_PT_viewport_settings(
|
|
|
241
228
|
"""
|
|
242
229
|
...
|
|
243
230
|
|
|
244
|
-
class EEVEE_MATERIAL_PT_volume(
|
|
245
|
-
bpy.types.Panel, MaterialButtonsPanel, bpy_types._GenericUI
|
|
246
|
-
):
|
|
231
|
+
class EEVEE_MATERIAL_PT_volume(MaterialButtonsPanel, bpy.types.Panel):
|
|
247
232
|
COMPAT_ENGINES: typing.Any
|
|
248
233
|
bl_context: typing.Any
|
|
249
234
|
bl_label: typing.Any
|
|
@@ -285,9 +270,7 @@ class EEVEE_MATERIAL_PT_volume(
|
|
|
285
270
|
"""
|
|
286
271
|
...
|
|
287
272
|
|
|
288
|
-
class EEVEE_NEXT_MATERIAL_PT_settings(
|
|
289
|
-
bpy.types.Panel, MaterialButtonsPanel, bpy_types._GenericUI
|
|
290
|
-
):
|
|
273
|
+
class EEVEE_NEXT_MATERIAL_PT_settings(MaterialButtonsPanel, bpy.types.Panel):
|
|
291
274
|
COMPAT_ENGINES: typing.Any
|
|
292
275
|
bl_context: typing.Any
|
|
293
276
|
bl_label: typing.Any
|
|
@@ -319,9 +302,7 @@ class EEVEE_NEXT_MATERIAL_PT_settings(
|
|
|
319
302
|
"""
|
|
320
303
|
...
|
|
321
304
|
|
|
322
|
-
class EEVEE_NEXT_MATERIAL_PT_settings_surface(
|
|
323
|
-
bpy.types.Panel, MaterialButtonsPanel, bpy_types._GenericUI
|
|
324
|
-
):
|
|
305
|
+
class EEVEE_NEXT_MATERIAL_PT_settings_surface(MaterialButtonsPanel, bpy.types.Panel):
|
|
325
306
|
COMPAT_ENGINES: typing.Any
|
|
326
307
|
bl_context: typing.Any
|
|
327
308
|
bl_label: typing.Any
|
|
@@ -354,9 +335,7 @@ class EEVEE_NEXT_MATERIAL_PT_settings_surface(
|
|
|
354
335
|
"""
|
|
355
336
|
...
|
|
356
337
|
|
|
357
|
-
class EEVEE_NEXT_MATERIAL_PT_settings_volume(
|
|
358
|
-
bpy.types.Panel, MaterialButtonsPanel, bpy_types._GenericUI
|
|
359
|
-
):
|
|
338
|
+
class EEVEE_NEXT_MATERIAL_PT_settings_volume(MaterialButtonsPanel, bpy.types.Panel):
|
|
360
339
|
COMPAT_ENGINES: typing.Any
|
|
361
340
|
bl_context: typing.Any
|
|
362
341
|
bl_label: typing.Any
|
|
@@ -389,7 +368,7 @@ class EEVEE_NEXT_MATERIAL_PT_settings_volume(
|
|
|
389
368
|
"""
|
|
390
369
|
...
|
|
391
370
|
|
|
392
|
-
class MATERIAL_MT_context_menu(bpy.types.Menu
|
|
371
|
+
class MATERIAL_MT_context_menu(bpy.types.Menu):
|
|
393
372
|
bl_label: typing.Any
|
|
394
373
|
bl_rna: typing.Any
|
|
395
374
|
id_data: typing.Any
|
|
@@ -418,10 +397,7 @@ class MATERIAL_MT_context_menu(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
418
397
|
...
|
|
419
398
|
|
|
420
399
|
class MATERIAL_PT_custom_props(
|
|
421
|
-
bpy.types.Panel
|
|
422
|
-
MaterialButtonsPanel,
|
|
423
|
-
rna_prop_ui.PropertyPanel,
|
|
424
|
-
bpy_types._GenericUI,
|
|
400
|
+
rna_prop_ui.PropertyPanel, MaterialButtonsPanel, bpy.types.Panel
|
|
425
401
|
):
|
|
426
402
|
"""The subclass should have its own poll function
|
|
427
403
|
and the variable '_context_path' MUST be set.
|
|
@@ -453,7 +429,7 @@ class MATERIAL_PT_custom_props(
|
|
|
453
429
|
"""
|
|
454
430
|
...
|
|
455
431
|
|
|
456
|
-
class MATERIAL_PT_lineart(bpy.types.Panel
|
|
432
|
+
class MATERIAL_PT_lineart(MaterialButtonsPanel, bpy.types.Panel):
|
|
457
433
|
bl_context: typing.Any
|
|
458
434
|
bl_label: typing.Any
|
|
459
435
|
bl_options: typing.Any
|
|
@@ -494,7 +470,7 @@ class MATERIAL_PT_lineart(bpy.types.Panel, MaterialButtonsPanel, bpy_types._Gene
|
|
|
494
470
|
"""
|
|
495
471
|
...
|
|
496
472
|
|
|
497
|
-
class MATERIAL_PT_preview(bpy.types.Panel
|
|
473
|
+
class MATERIAL_PT_preview(MaterialButtonsPanel, bpy.types.Panel):
|
|
498
474
|
COMPAT_ENGINES: typing.Any
|
|
499
475
|
bl_context: typing.Any
|
|
500
476
|
bl_label: typing.Any
|
|
@@ -527,7 +503,7 @@ class MATERIAL_PT_preview(bpy.types.Panel, MaterialButtonsPanel, bpy_types._Gene
|
|
|
527
503
|
"""
|
|
528
504
|
...
|
|
529
505
|
|
|
530
|
-
class MATERIAL_PT_viewport(bpy.types.Panel
|
|
506
|
+
class MATERIAL_PT_viewport(MaterialButtonsPanel, bpy.types.Panel):
|
|
531
507
|
bl_context: typing.Any
|
|
532
508
|
bl_label: typing.Any
|
|
533
509
|
bl_options: typing.Any
|
|
@@ -568,7 +544,7 @@ class MATERIAL_PT_viewport(bpy.types.Panel, MaterialButtonsPanel, bpy_types._Gen
|
|
|
568
544
|
"""
|
|
569
545
|
...
|
|
570
546
|
|
|
571
|
-
class MATERIAL_UL_matslots(bpy.types.UIList
|
|
547
|
+
class MATERIAL_UL_matslots(bpy.types.UIList):
|
|
572
548
|
bl_rna: typing.Any
|
|
573
549
|
id_data: typing.Any
|
|
574
550
|
|