fake-bpy-module 20240720__py3-none-any.whl → 20240722__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- aud/__init__.pyi +77 -77
- bl_operators/add_mesh_torus/__init__.pyi +1 -2
- bl_operators/assets/__init__.pyi +2 -2
- bl_operators/bone_selection_sets/__init__.pyi +16 -28
- bl_operators/connect_to_output/__init__.pyi +1 -4
- bl_operators/image_as_planes/__init__.pyi +2 -12
- bl_operators/node/__init__.pyi +14 -16
- bl_operators/object_quick_effects/__init__.pyi +3 -3
- bl_operators/presets/__init__.pyi +22 -25
- bl_operators/sequencer/__init__.pyi +76 -76
- bl_ui/generic_ui_list/__init__.pyi +3 -3
- bl_ui/properties_collection/__init__.pyi +5 -19
- bl_ui/properties_constraint/__init__.pyi +79 -289
- bl_ui/properties_data_armature/__init__.pyi +9 -33
- bl_ui/properties_data_bone/__init__.pyi +10 -17
- bl_ui/properties_data_camera/__init__.pyi +14 -32
- bl_ui/properties_data_curve/__init__.pyi +69 -88
- bl_ui/properties_data_curves/__init__.pyi +4 -9
- bl_ui/properties_data_empty/__init__.pyi +2 -2
- bl_ui/properties_data_gpencil/__init__.pyi +15 -50
- bl_ui/properties_data_grease_pencil/__init__.pyi +10 -36
- bl_ui/properties_data_lattice/__init__.pyi +3 -6
- bl_ui/properties_data_light/__init__.pyi +12 -25
- bl_ui/properties_data_lightprobe/__init__.pyi +13 -35
- bl_ui/properties_data_mesh/__init__.pyi +63 -72
- bl_ui/properties_data_metaball/__init__.pyi +5 -10
- bl_ui/properties_data_modifier/__init__.pyi +9 -23
- bl_ui/properties_data_pointcloud/__init__.pyi +3 -10
- bl_ui/properties_data_shaderfx/__init__.pyi +1 -1
- bl_ui/properties_data_speaker/__init__.pyi +5 -8
- bl_ui/properties_data_volume/__init__.pyi +7 -14
- bl_ui/properties_freestyle/__init__.pyi +9 -42
- bl_ui/properties_material/__init__.pyi +14 -40
- bl_ui/properties_material_gpencil/__init__.pyi +8 -32
- bl_ui/properties_object/__init__.pyi +13 -31
- bl_ui/properties_output/__init__.pyi +16 -43
- bl_ui/properties_paint_common/__init__.pyi +17 -17
- bl_ui/properties_particle/__init__.pyi +50 -135
- bl_ui/properties_physics_cloth/__init__.pyi +14 -35
- bl_ui/properties_physics_common/__init__.pyi +1 -1
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +21 -57
- bl_ui/properties_physics_field/__init__.pyi +10 -26
- bl_ui/properties_physics_fluid/__init__.pyi +28 -51
- bl_ui/properties_physics_rigidbody/__init__.pyi +8 -18
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +13 -25
- bl_ui/properties_physics_softbody/__init__.pyi +15 -43
- bl_ui/properties_render/__init__.pyi +54 -150
- bl_ui/properties_scene/__init__.pyi +29 -42
- bl_ui/properties_texture/__init__.pyi +26 -58
- bl_ui/properties_view_layer/__init__.pyi +16 -43
- bl_ui/properties_workspace/__init__.pyi +3 -9
- bl_ui/properties_world/__init__.pyi +10 -19
- bl_ui/space_clip/__init__.pyi +31 -93
- bl_ui/space_dopesheet/__init__.pyi +13 -66
- bl_ui/space_filebrowser/__init__.pyi +17 -38
- bl_ui/space_graph/__init__.pyi +1 -6
- bl_ui/space_image/__init__.pyi +190 -235
- bl_ui/space_nla/__init__.pyi +2 -11
- bl_ui/space_node/__init__.pyi +3 -16
- bl_ui/space_sequencer/__init__.pyi +34 -104
- bl_ui/space_time/__init__.pyi +3 -7
- bl_ui/space_toolsystem_toolbar/__init__.pyi +4 -21
- bl_ui/space_userpref/__init__.pyi +76 -215
- bl_ui/space_view3d/__init__.pyi +91 -147
- bl_ui/space_view3d_toolbar/__init__.pyi +435 -543
- bmesh/types/__init__.pyi +25 -25
- bpy/app/timers/__init__.pyi +6 -6
- bpy/types/__init__.pyi +113 -111
- bpy_extras/node_shader_utils/__init__.pyi +118 -118
- {fake_bpy_module-20240720.dist-info → fake_bpy_module-20240722.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240720.dist-info → fake_bpy_module-20240722.dist-info}/RECORD +81 -81
- {fake_bpy_module-20240720.dist-info → fake_bpy_module-20240722.dist-info}/WHEEL +1 -1
- freestyle/chainingiterators/__init__.pyi +4 -4
- freestyle/types/__init__.pyi +63 -65
- idprop/types/__init__.pyi +2 -2
- imbuf/types/__init__.pyi +2 -2
- keyingsets_builtins/__init__.pyi +2 -2
- mathutils/__init__.pyi +1004 -965
- mathutils/bvhtree/__init__.pyi +2 -2
- nodeitems_builtins/__init__.pyi +3 -3
- {fake_bpy_module-20240720.dist-info → fake_bpy_module-20240722.dist-info}/top_level.txt +0 -0
|
@@ -7,9 +7,7 @@ import bpy_types
|
|
|
7
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
8
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
9
9
|
|
|
10
|
-
class MATERIAL_PT_freestyle_line(
|
|
11
|
-
bpy.types.Panel, MaterialFreestyleButtonsPanel, bpy_types._GenericUI
|
|
12
|
-
):
|
|
10
|
+
class MATERIAL_PT_freestyle_line(bpy.types.Panel, bpy_types._GenericUI):
|
|
13
11
|
COMPAT_ENGINES: typing.Any
|
|
14
12
|
bl_context: typing.Any
|
|
15
13
|
bl_label: typing.Any
|
|
@@ -83,9 +81,7 @@ class RENDER_MT_lineset_context_menu(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
83
81
|
"""
|
|
84
82
|
...
|
|
85
83
|
|
|
86
|
-
class RENDER_PT_freestyle(
|
|
87
|
-
bpy.types.Panel, RenderFreestyleButtonsPanel, bpy_types._GenericUI
|
|
88
|
-
):
|
|
84
|
+
class RENDER_PT_freestyle(bpy.types.Panel, bpy_types._GenericUI):
|
|
89
85
|
COMPAT_ENGINES: typing.Any
|
|
90
86
|
bl_context: typing.Any
|
|
91
87
|
bl_label: typing.Any
|
|
@@ -139,9 +135,7 @@ class RenderFreestyleButtonsPanel:
|
|
|
139
135
|
"""
|
|
140
136
|
...
|
|
141
137
|
|
|
142
|
-
class VIEWLAYER_PT_freestyle(
|
|
143
|
-
bpy.types.Panel, ViewLayerFreestyleButtonsPanel, bpy_types._GenericUI
|
|
144
|
-
):
|
|
138
|
+
class VIEWLAYER_PT_freestyle(bpy.types.Panel, bpy_types._GenericUI):
|
|
145
139
|
COMPAT_ENGINES: typing.Any
|
|
146
140
|
bl_context: typing.Any
|
|
147
141
|
bl_label: typing.Any
|
|
@@ -181,9 +175,7 @@ class VIEWLAYER_PT_freestyle(
|
|
|
181
175
|
"""
|
|
182
176
|
...
|
|
183
177
|
|
|
184
|
-
class VIEWLAYER_PT_freestyle_edge_detection(
|
|
185
|
-
bpy.types.Panel, ViewLayerFreestyleButtonsPanel, bpy_types._GenericUI
|
|
186
|
-
):
|
|
178
|
+
class VIEWLAYER_PT_freestyle_edge_detection(bpy.types.Panel, bpy_types._GenericUI):
|
|
187
179
|
COMPAT_ENGINES: typing.Any
|
|
188
180
|
bl_context: typing.Any
|
|
189
181
|
bl_label: typing.Any
|
|
@@ -218,10 +210,7 @@ class VIEWLAYER_PT_freestyle_edge_detection(
|
|
|
218
210
|
...
|
|
219
211
|
|
|
220
212
|
class VIEWLAYER_PT_freestyle_lineset(
|
|
221
|
-
bpy.types.Panel,
|
|
222
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
223
|
-
ViewLayerFreestyleButtonsPanel,
|
|
224
|
-
bpy_types._GenericUI,
|
|
213
|
+
bpy.types.Panel, ViewLayerFreestyleButtonsPanel, bpy_types._GenericUI
|
|
225
214
|
):
|
|
226
215
|
COMPAT_ENGINES: typing.Any
|
|
227
216
|
bl_context: typing.Any
|
|
@@ -267,7 +256,6 @@ class VIEWLAYER_PT_freestyle_lineset(
|
|
|
267
256
|
class VIEWLAYER_PT_freestyle_lineset_collection(
|
|
268
257
|
bpy.types.Panel,
|
|
269
258
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
270
|
-
ViewLayerFreestyleLineStyle,
|
|
271
259
|
ViewLayerFreestyleButtonsPanel,
|
|
272
260
|
bpy_types._GenericUI,
|
|
273
261
|
):
|
|
@@ -315,7 +303,6 @@ class VIEWLAYER_PT_freestyle_lineset_collection(
|
|
|
315
303
|
class VIEWLAYER_PT_freestyle_lineset_edgetype(
|
|
316
304
|
bpy.types.Panel,
|
|
317
305
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
318
|
-
ViewLayerFreestyleLineStyle,
|
|
319
306
|
ViewLayerFreestyleButtonsPanel,
|
|
320
307
|
bpy_types._GenericUI,
|
|
321
308
|
):
|
|
@@ -371,7 +358,6 @@ class VIEWLAYER_PT_freestyle_lineset_edgetype(
|
|
|
371
358
|
class VIEWLAYER_PT_freestyle_lineset_facemarks(
|
|
372
359
|
bpy.types.Panel,
|
|
373
360
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
374
|
-
ViewLayerFreestyleLineStyle,
|
|
375
361
|
ViewLayerFreestyleButtonsPanel,
|
|
376
362
|
bpy_types._GenericUI,
|
|
377
363
|
):
|
|
@@ -419,7 +405,6 @@ class VIEWLAYER_PT_freestyle_lineset_facemarks(
|
|
|
419
405
|
class VIEWLAYER_PT_freestyle_lineset_visibilty(
|
|
420
406
|
bpy.types.Panel,
|
|
421
407
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
422
|
-
ViewLayerFreestyleLineStyle,
|
|
423
408
|
ViewLayerFreestyleButtonsPanel,
|
|
424
409
|
bpy_types._GenericUI,
|
|
425
410
|
):
|
|
@@ -466,7 +451,6 @@ class VIEWLAYER_PT_freestyle_lineset_visibilty(
|
|
|
466
451
|
class VIEWLAYER_PT_freestyle_linestyle_alpha(
|
|
467
452
|
bpy.types.Panel,
|
|
468
453
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
469
|
-
ViewLayerFreestyleLineStyle,
|
|
470
454
|
ViewLayerFreestyleButtonsPanel,
|
|
471
455
|
bpy_types._GenericUI,
|
|
472
456
|
):
|
|
@@ -514,7 +498,6 @@ class VIEWLAYER_PT_freestyle_linestyle_alpha(
|
|
|
514
498
|
class VIEWLAYER_PT_freestyle_linestyle_color(
|
|
515
499
|
bpy.types.Panel,
|
|
516
500
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
517
|
-
ViewLayerFreestyleLineStyle,
|
|
518
501
|
ViewLayerFreestyleButtonsPanel,
|
|
519
502
|
bpy_types._GenericUI,
|
|
520
503
|
):
|
|
@@ -562,7 +545,6 @@ class VIEWLAYER_PT_freestyle_linestyle_color(
|
|
|
562
545
|
class VIEWLAYER_PT_freestyle_linestyle_geometry(
|
|
563
546
|
bpy.types.Panel,
|
|
564
547
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
565
|
-
ViewLayerFreestyleLineStyle,
|
|
566
548
|
ViewLayerFreestyleButtonsPanel,
|
|
567
549
|
bpy_types._GenericUI,
|
|
568
550
|
):
|
|
@@ -610,7 +592,6 @@ class VIEWLAYER_PT_freestyle_linestyle_geometry(
|
|
|
610
592
|
class VIEWLAYER_PT_freestyle_linestyle_strokes(
|
|
611
593
|
bpy.types.Panel,
|
|
612
594
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
613
|
-
ViewLayerFreestyleLineStyle,
|
|
614
595
|
ViewLayerFreestyleButtonsPanel,
|
|
615
596
|
bpy_types._GenericUI,
|
|
616
597
|
):
|
|
@@ -650,7 +631,6 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes(
|
|
|
650
631
|
class VIEWLAYER_PT_freestyle_linestyle_strokes_chaining(
|
|
651
632
|
bpy.types.Panel,
|
|
652
633
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
653
|
-
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
654
634
|
ViewLayerFreestyleLineStyle,
|
|
655
635
|
ViewLayerFreestyleButtonsPanel,
|
|
656
636
|
bpy_types._GenericUI,
|
|
@@ -698,7 +678,6 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_chaining(
|
|
|
698
678
|
class VIEWLAYER_PT_freestyle_linestyle_strokes_dashedline(
|
|
699
679
|
bpy.types.Panel,
|
|
700
680
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
701
|
-
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
702
681
|
ViewLayerFreestyleLineStyle,
|
|
703
682
|
ViewLayerFreestyleButtonsPanel,
|
|
704
683
|
bpy_types._GenericUI,
|
|
@@ -747,7 +726,6 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_dashedline(
|
|
|
747
726
|
class VIEWLAYER_PT_freestyle_linestyle_strokes_selection(
|
|
748
727
|
bpy.types.Panel,
|
|
749
728
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
750
|
-
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
751
729
|
ViewLayerFreestyleLineStyle,
|
|
752
730
|
ViewLayerFreestyleButtonsPanel,
|
|
753
731
|
bpy_types._GenericUI,
|
|
@@ -789,7 +767,6 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_selection(
|
|
|
789
767
|
class VIEWLAYER_PT_freestyle_linestyle_strokes_sorting(
|
|
790
768
|
bpy.types.Panel,
|
|
791
769
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
792
|
-
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
793
770
|
ViewLayerFreestyleLineStyle,
|
|
794
771
|
ViewLayerFreestyleButtonsPanel,
|
|
795
772
|
bpy_types._GenericUI,
|
|
@@ -838,7 +815,6 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_sorting(
|
|
|
838
815
|
class VIEWLAYER_PT_freestyle_linestyle_strokes_splitting(
|
|
839
816
|
bpy.types.Panel,
|
|
840
817
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
841
|
-
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
842
818
|
ViewLayerFreestyleLineStyle,
|
|
843
819
|
ViewLayerFreestyleButtonsPanel,
|
|
844
820
|
bpy_types._GenericUI,
|
|
@@ -880,7 +856,6 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_splitting(
|
|
|
880
856
|
class VIEWLAYER_PT_freestyle_linestyle_strokes_splitting_pattern(
|
|
881
857
|
bpy.types.Panel,
|
|
882
858
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
883
|
-
ViewLayerFreestyleLinestyleStrokesSubPanel,
|
|
884
859
|
ViewLayerFreestyleLineStyle,
|
|
885
860
|
ViewLayerFreestyleButtonsPanel,
|
|
886
861
|
bpy_types._GenericUI,
|
|
@@ -929,7 +904,6 @@ class VIEWLAYER_PT_freestyle_linestyle_strokes_splitting_pattern(
|
|
|
929
904
|
class VIEWLAYER_PT_freestyle_linestyle_texture(
|
|
930
905
|
bpy.types.Panel,
|
|
931
906
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
932
|
-
ViewLayerFreestyleLineStyle,
|
|
933
907
|
ViewLayerFreestyleButtonsPanel,
|
|
934
908
|
bpy_types._GenericUI,
|
|
935
909
|
):
|
|
@@ -969,7 +943,6 @@ class VIEWLAYER_PT_freestyle_linestyle_texture(
|
|
|
969
943
|
class VIEWLAYER_PT_freestyle_linestyle_thickness(
|
|
970
944
|
bpy.types.Panel,
|
|
971
945
|
ViewLayerFreestyleEditorButtonsPanel,
|
|
972
|
-
ViewLayerFreestyleLineStyle,
|
|
973
946
|
ViewLayerFreestyleButtonsPanel,
|
|
974
947
|
bpy_types._GenericUI,
|
|
975
948
|
):
|
|
@@ -1014,9 +987,7 @@ class VIEWLAYER_PT_freestyle_linestyle_thickness(
|
|
|
1014
987
|
"""
|
|
1015
988
|
...
|
|
1016
989
|
|
|
1017
|
-
class VIEWLAYER_PT_freestyle_style_modules(
|
|
1018
|
-
bpy.types.Panel, ViewLayerFreestyleButtonsPanel, bpy_types._GenericUI
|
|
1019
|
-
):
|
|
990
|
+
class VIEWLAYER_PT_freestyle_style_modules(bpy.types.Panel, bpy_types._GenericUI):
|
|
1020
991
|
COMPAT_ENGINES: typing.Any
|
|
1021
992
|
bl_context: typing.Any
|
|
1022
993
|
bl_label: typing.Any
|
|
@@ -1108,7 +1079,7 @@ class ViewLayerFreestyleButtonsPanel:
|
|
|
1108
1079
|
"""
|
|
1109
1080
|
...
|
|
1110
1081
|
|
|
1111
|
-
class ViewLayerFreestyleEditorButtonsPanel
|
|
1082
|
+
class ViewLayerFreestyleEditorButtonsPanel:
|
|
1112
1083
|
bl_context: typing.Any
|
|
1113
1084
|
bl_order: typing.Any
|
|
1114
1085
|
bl_region_type: typing.Any
|
|
@@ -1122,9 +1093,7 @@ class ViewLayerFreestyleEditorButtonsPanel(ViewLayerFreestyleButtonsPanel):
|
|
|
1122
1093
|
"""
|
|
1123
1094
|
...
|
|
1124
1095
|
|
|
1125
|
-
class ViewLayerFreestyleLineStyle(
|
|
1126
|
-
ViewLayerFreestyleEditorButtonsPanel, ViewLayerFreestyleButtonsPanel
|
|
1127
|
-
):
|
|
1096
|
+
class ViewLayerFreestyleLineStyle(ViewLayerFreestyleButtonsPanel):
|
|
1128
1097
|
COMPAT_ENGINES: typing.Any
|
|
1129
1098
|
bl_context: typing.Any
|
|
1130
1099
|
bl_order: typing.Any
|
|
@@ -1140,9 +1109,7 @@ class ViewLayerFreestyleLineStyle(
|
|
|
1140
1109
|
...
|
|
1141
1110
|
|
|
1142
1111
|
class ViewLayerFreestyleLinestyleStrokesSubPanel(
|
|
1143
|
-
ViewLayerFreestyleEditorButtonsPanel,
|
|
1144
|
-
ViewLayerFreestyleLineStyle,
|
|
1145
|
-
ViewLayerFreestyleButtonsPanel,
|
|
1112
|
+
ViewLayerFreestyleEditorButtonsPanel, ViewLayerFreestyleButtonsPanel
|
|
1146
1113
|
):
|
|
1147
1114
|
COMPAT_ENGINES: typing.Any
|
|
1148
1115
|
bl_context: typing.Any
|
|
@@ -3,14 +3,11 @@ import collections.abc
|
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bpy.types
|
|
5
5
|
import bpy_types
|
|
6
|
-
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(bpy.types.Panel, bpy_types._GenericUI):
|
|
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(bpy.types.Panel, bpy_types._GenericUI):
|
|
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(bpy.types.Panel, bpy_types._GenericUI):
|
|
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(bpy.types.Panel, bpy_types._GenericUI):
|
|
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(bpy.types.Panel, bpy_types._GenericUI):
|
|
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(bpy.types.Panel, bpy_types._GenericUI):
|
|
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(bpy.types.Panel, bpy_types._GenericUI):
|
|
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(bpy.types.Panel, bpy_types._GenericUI):
|
|
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(bpy.types.Panel, bpy_types._GenericUI):
|
|
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(bpy.types.Panel, bpy_types._GenericUI):
|
|
360
339
|
COMPAT_ENGINES: typing.Any
|
|
361
340
|
bl_context: typing.Any
|
|
362
341
|
bl_label: typing.Any
|
|
@@ -417,12 +396,7 @@ class MATERIAL_MT_context_menu(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
417
396
|
"""
|
|
418
397
|
...
|
|
419
398
|
|
|
420
|
-
class MATERIAL_PT_custom_props(
|
|
421
|
-
bpy.types.Panel,
|
|
422
|
-
MaterialButtonsPanel,
|
|
423
|
-
rna_prop_ui.PropertyPanel,
|
|
424
|
-
bpy_types._GenericUI,
|
|
425
|
-
):
|
|
399
|
+
class MATERIAL_PT_custom_props(bpy.types.Panel, bpy_types._GenericUI):
|
|
426
400
|
"""The subclass should have its own poll function
|
|
427
401
|
and the variable '_context_path' MUST be set.
|
|
428
402
|
"""
|
|
@@ -453,7 +427,7 @@ class MATERIAL_PT_custom_props(
|
|
|
453
427
|
"""
|
|
454
428
|
...
|
|
455
429
|
|
|
456
|
-
class MATERIAL_PT_lineart(bpy.types.Panel,
|
|
430
|
+
class MATERIAL_PT_lineart(bpy.types.Panel, bpy_types._GenericUI):
|
|
457
431
|
bl_context: typing.Any
|
|
458
432
|
bl_label: typing.Any
|
|
459
433
|
bl_options: typing.Any
|
|
@@ -494,7 +468,7 @@ class MATERIAL_PT_lineart(bpy.types.Panel, MaterialButtonsPanel, bpy_types._Gene
|
|
|
494
468
|
"""
|
|
495
469
|
...
|
|
496
470
|
|
|
497
|
-
class MATERIAL_PT_preview(bpy.types.Panel,
|
|
471
|
+
class MATERIAL_PT_preview(bpy.types.Panel, bpy_types._GenericUI):
|
|
498
472
|
COMPAT_ENGINES: typing.Any
|
|
499
473
|
bl_context: typing.Any
|
|
500
474
|
bl_label: typing.Any
|
|
@@ -527,7 +501,7 @@ class MATERIAL_PT_preview(bpy.types.Panel, MaterialButtonsPanel, bpy_types._Gene
|
|
|
527
501
|
"""
|
|
528
502
|
...
|
|
529
503
|
|
|
530
|
-
class MATERIAL_PT_viewport(bpy.types.Panel,
|
|
504
|
+
class MATERIAL_PT_viewport(bpy.types.Panel, bpy_types._GenericUI):
|
|
531
505
|
bl_context: typing.Any
|
|
532
506
|
bl_label: typing.Any
|
|
533
507
|
bl_options: typing.Any
|
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bl_ui.properties_grease_pencil_common
|
|
5
|
-
import bl_ui.utils
|
|
6
4
|
import bpy.types
|
|
7
5
|
import bpy_types
|
|
8
|
-
import rna_prop_ui
|
|
9
6
|
|
|
10
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
11
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
@@ -95,12 +92,7 @@ class GPMaterialButtonsPanel:
|
|
|
95
92
|
"""
|
|
96
93
|
...
|
|
97
94
|
|
|
98
|
-
class MATERIAL_PT_gpencil_custom_props(
|
|
99
|
-
bpy.types.Panel,
|
|
100
|
-
GPMaterialButtonsPanel,
|
|
101
|
-
rna_prop_ui.PropertyPanel,
|
|
102
|
-
bpy_types._GenericUI,
|
|
103
|
-
):
|
|
95
|
+
class MATERIAL_PT_gpencil_custom_props(bpy.types.Panel, bpy_types._GenericUI):
|
|
104
96
|
"""The subclass should have its own poll function
|
|
105
97
|
and the variable '_context_path' MUST be set.
|
|
106
98
|
"""
|
|
@@ -131,9 +123,7 @@ class MATERIAL_PT_gpencil_custom_props(
|
|
|
131
123
|
"""
|
|
132
124
|
...
|
|
133
125
|
|
|
134
|
-
class MATERIAL_PT_gpencil_fillcolor(
|
|
135
|
-
bpy.types.Panel, GPMaterialButtonsPanel, bpy_types._GenericUI
|
|
136
|
-
):
|
|
126
|
+
class MATERIAL_PT_gpencil_fillcolor(bpy.types.Panel, bpy_types._GenericUI):
|
|
137
127
|
bl_context: typing.Any
|
|
138
128
|
bl_label: typing.Any
|
|
139
129
|
bl_parent_id: typing.Any
|
|
@@ -172,9 +162,7 @@ class MATERIAL_PT_gpencil_fillcolor(
|
|
|
172
162
|
"""
|
|
173
163
|
...
|
|
174
164
|
|
|
175
|
-
class MATERIAL_PT_gpencil_material_presets(
|
|
176
|
-
bpy.types.Panel, bl_ui.utils.PresetPanel, bpy_types._GenericUI
|
|
177
|
-
):
|
|
165
|
+
class MATERIAL_PT_gpencil_material_presets(bpy.types.Panel, bpy_types._GenericUI):
|
|
178
166
|
"""Material settings"""
|
|
179
167
|
|
|
180
168
|
bl_label: typing.Any
|
|
@@ -202,9 +190,7 @@ class MATERIAL_PT_gpencil_material_presets(
|
|
|
202
190
|
"""
|
|
203
191
|
...
|
|
204
192
|
|
|
205
|
-
class MATERIAL_PT_gpencil_preview(
|
|
206
|
-
bpy.types.Panel, GPMaterialButtonsPanel, bpy_types._GenericUI
|
|
207
|
-
):
|
|
193
|
+
class MATERIAL_PT_gpencil_preview(bpy.types.Panel, bpy_types._GenericUI):
|
|
208
194
|
COMPAT_ENGINES: typing.Any
|
|
209
195
|
bl_context: typing.Any
|
|
210
196
|
bl_label: typing.Any
|
|
@@ -237,9 +223,7 @@ class MATERIAL_PT_gpencil_preview(
|
|
|
237
223
|
"""
|
|
238
224
|
...
|
|
239
225
|
|
|
240
|
-
class MATERIAL_PT_gpencil_settings(
|
|
241
|
-
bpy.types.Panel, GPMaterialButtonsPanel, bpy_types._GenericUI
|
|
242
|
-
):
|
|
226
|
+
class MATERIAL_PT_gpencil_settings(bpy.types.Panel, bpy_types._GenericUI):
|
|
243
227
|
bl_context: typing.Any
|
|
244
228
|
bl_label: typing.Any
|
|
245
229
|
bl_options: typing.Any
|
|
@@ -271,11 +255,7 @@ class MATERIAL_PT_gpencil_settings(
|
|
|
271
255
|
"""
|
|
272
256
|
...
|
|
273
257
|
|
|
274
|
-
class MATERIAL_PT_gpencil_slots(
|
|
275
|
-
bpy.types.Panel,
|
|
276
|
-
bl_ui.properties_grease_pencil_common.GreasePencilMaterialsPanel,
|
|
277
|
-
bpy_types._GenericUI,
|
|
278
|
-
):
|
|
258
|
+
class MATERIAL_PT_gpencil_slots(bpy.types.Panel, bpy_types._GenericUI):
|
|
279
259
|
bl_context: typing.Any
|
|
280
260
|
bl_label: typing.Any
|
|
281
261
|
bl_options: typing.Any
|
|
@@ -308,9 +288,7 @@ class MATERIAL_PT_gpencil_slots(
|
|
|
308
288
|
"""
|
|
309
289
|
...
|
|
310
290
|
|
|
311
|
-
class MATERIAL_PT_gpencil_strokecolor(
|
|
312
|
-
bpy.types.Panel, GPMaterialButtonsPanel, bpy_types._GenericUI
|
|
313
|
-
):
|
|
291
|
+
class MATERIAL_PT_gpencil_strokecolor(bpy.types.Panel, bpy_types._GenericUI):
|
|
314
292
|
bl_context: typing.Any
|
|
315
293
|
bl_label: typing.Any
|
|
316
294
|
bl_parent_id: typing.Any
|
|
@@ -349,9 +327,7 @@ class MATERIAL_PT_gpencil_strokecolor(
|
|
|
349
327
|
"""
|
|
350
328
|
...
|
|
351
329
|
|
|
352
|
-
class MATERIAL_PT_gpencil_surface(
|
|
353
|
-
bpy.types.Panel, GPMaterialButtonsPanel, bpy_types._GenericUI
|
|
354
|
-
):
|
|
330
|
+
class MATERIAL_PT_gpencil_surface(bpy.types.Panel, bpy_types._GenericUI):
|
|
355
331
|
bl_context: typing.Any
|
|
356
332
|
bl_label: typing.Any
|
|
357
333
|
bl_region_type: typing.Any
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bl_ui.properties_animviz
|
|
5
4
|
import bpy.types
|
|
6
5
|
import bpy_types
|
|
7
|
-
import rna_prop_ui
|
|
8
6
|
|
|
9
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
10
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
@@ -37,7 +35,7 @@ class COLLECTION_MT_context_menu(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
37
35
|
"""
|
|
38
36
|
...
|
|
39
37
|
|
|
40
|
-
class OBJECT_PT_collections(bpy.types.Panel,
|
|
38
|
+
class OBJECT_PT_collections(bpy.types.Panel, bpy_types._GenericUI):
|
|
41
39
|
bl_context: typing.Any
|
|
42
40
|
bl_label: typing.Any
|
|
43
41
|
bl_options: typing.Any
|
|
@@ -69,9 +67,7 @@ class OBJECT_PT_collections(bpy.types.Panel, ObjectButtonsPanel, bpy_types._Gene
|
|
|
69
67
|
"""
|
|
70
68
|
...
|
|
71
69
|
|
|
72
|
-
class OBJECT_PT_context_object(
|
|
73
|
-
bpy.types.Panel, ObjectButtonsPanel, bpy_types._GenericUI
|
|
74
|
-
):
|
|
70
|
+
class OBJECT_PT_context_object(bpy.types.Panel, bpy_types._GenericUI):
|
|
75
71
|
bl_context: typing.Any
|
|
76
72
|
bl_label: typing.Any
|
|
77
73
|
bl_options: typing.Any
|
|
@@ -103,9 +99,7 @@ class OBJECT_PT_context_object(
|
|
|
103
99
|
"""
|
|
104
100
|
...
|
|
105
101
|
|
|
106
|
-
class OBJECT_PT_custom_props(
|
|
107
|
-
bpy.types.Panel, ObjectButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
|
|
108
|
-
):
|
|
102
|
+
class OBJECT_PT_custom_props(bpy.types.Panel, bpy_types._GenericUI):
|
|
109
103
|
"""The subclass should have its own poll function
|
|
110
104
|
and the variable '_context_path' MUST be set.
|
|
111
105
|
"""
|
|
@@ -136,9 +130,7 @@ class OBJECT_PT_custom_props(
|
|
|
136
130
|
"""
|
|
137
131
|
...
|
|
138
132
|
|
|
139
|
-
class OBJECT_PT_delta_transform(
|
|
140
|
-
bpy.types.Panel, ObjectButtonsPanel, bpy_types._GenericUI
|
|
141
|
-
):
|
|
133
|
+
class OBJECT_PT_delta_transform(bpy.types.Panel, bpy_types._GenericUI):
|
|
142
134
|
bl_context: typing.Any
|
|
143
135
|
bl_label: typing.Any
|
|
144
136
|
bl_options: typing.Any
|
|
@@ -171,7 +163,7 @@ class OBJECT_PT_delta_transform(
|
|
|
171
163
|
"""
|
|
172
164
|
...
|
|
173
165
|
|
|
174
|
-
class OBJECT_PT_display(bpy.types.Panel,
|
|
166
|
+
class OBJECT_PT_display(bpy.types.Panel, bpy_types._GenericUI):
|
|
175
167
|
bl_context: typing.Any
|
|
176
168
|
bl_label: typing.Any
|
|
177
169
|
bl_options: typing.Any
|
|
@@ -204,7 +196,7 @@ class OBJECT_PT_display(bpy.types.Panel, ObjectButtonsPanel, bpy_types._GenericU
|
|
|
204
196
|
"""
|
|
205
197
|
...
|
|
206
198
|
|
|
207
|
-
class OBJECT_PT_instancing(bpy.types.Panel,
|
|
199
|
+
class OBJECT_PT_instancing(bpy.types.Panel, bpy_types._GenericUI):
|
|
208
200
|
bl_context: typing.Any
|
|
209
201
|
bl_label: typing.Any
|
|
210
202
|
bl_options: typing.Any
|
|
@@ -244,9 +236,7 @@ class OBJECT_PT_instancing(bpy.types.Panel, ObjectButtonsPanel, bpy_types._Gener
|
|
|
244
236
|
"""
|
|
245
237
|
...
|
|
246
238
|
|
|
247
|
-
class OBJECT_PT_instancing_size(
|
|
248
|
-
bpy.types.Panel, ObjectButtonsPanel, bpy_types._GenericUI
|
|
249
|
-
):
|
|
239
|
+
class OBJECT_PT_instancing_size(bpy.types.Panel, bpy_types._GenericUI):
|
|
250
240
|
bl_context: typing.Any
|
|
251
241
|
bl_label: typing.Any
|
|
252
242
|
bl_parent_id: typing.Any
|
|
@@ -293,7 +283,7 @@ class OBJECT_PT_instancing_size(
|
|
|
293
283
|
"""
|
|
294
284
|
...
|
|
295
285
|
|
|
296
|
-
class OBJECT_PT_lineart(bpy.types.Panel,
|
|
286
|
+
class OBJECT_PT_lineart(bpy.types.Panel, bpy_types._GenericUI):
|
|
297
287
|
bl_context: typing.Any
|
|
298
288
|
bl_label: typing.Any
|
|
299
289
|
bl_options: typing.Any
|
|
@@ -334,11 +324,7 @@ class OBJECT_PT_lineart(bpy.types.Panel, ObjectButtonsPanel, bpy_types._GenericU
|
|
|
334
324
|
"""
|
|
335
325
|
...
|
|
336
326
|
|
|
337
|
-
class OBJECT_PT_motion_paths(
|
|
338
|
-
bpy.types.Panel,
|
|
339
|
-
bl_ui.properties_animviz.MotionPathButtonsPanel,
|
|
340
|
-
bpy_types._GenericUI,
|
|
341
|
-
):
|
|
327
|
+
class OBJECT_PT_motion_paths(bpy.types.Panel, bpy_types._GenericUI):
|
|
342
328
|
bl_context: typing.Any
|
|
343
329
|
bl_label: typing.Any
|
|
344
330
|
bl_options: typing.Any
|
|
@@ -378,11 +364,7 @@ class OBJECT_PT_motion_paths(
|
|
|
378
364
|
"""
|
|
379
365
|
...
|
|
380
366
|
|
|
381
|
-
class OBJECT_PT_motion_paths_display(
|
|
382
|
-
bpy.types.Panel,
|
|
383
|
-
bl_ui.properties_animviz.MotionPathButtonsPanel_display,
|
|
384
|
-
bpy_types._GenericUI,
|
|
385
|
-
):
|
|
367
|
+
class OBJECT_PT_motion_paths_display(bpy.types.Panel, bpy_types._GenericUI):
|
|
386
368
|
bl_context: typing.Any
|
|
387
369
|
bl_label: typing.Any
|
|
388
370
|
bl_options: typing.Any
|
|
@@ -423,7 +405,7 @@ class OBJECT_PT_motion_paths_display(
|
|
|
423
405
|
"""
|
|
424
406
|
...
|
|
425
407
|
|
|
426
|
-
class OBJECT_PT_relations(bpy.types.Panel,
|
|
408
|
+
class OBJECT_PT_relations(bpy.types.Panel, bpy_types._GenericUI):
|
|
427
409
|
bl_context: typing.Any
|
|
428
410
|
bl_label: typing.Any
|
|
429
411
|
bl_options: typing.Any
|
|
@@ -455,7 +437,7 @@ class OBJECT_PT_relations(bpy.types.Panel, ObjectButtonsPanel, bpy_types._Generi
|
|
|
455
437
|
"""
|
|
456
438
|
...
|
|
457
439
|
|
|
458
|
-
class OBJECT_PT_transform(bpy.types.Panel,
|
|
440
|
+
class OBJECT_PT_transform(bpy.types.Panel, bpy_types._GenericUI):
|
|
459
441
|
bl_context: typing.Any
|
|
460
442
|
bl_label: typing.Any
|
|
461
443
|
bl_region_type: typing.Any
|
|
@@ -486,7 +468,7 @@ class OBJECT_PT_transform(bpy.types.Panel, ObjectButtonsPanel, bpy_types._Generi
|
|
|
486
468
|
"""
|
|
487
469
|
...
|
|
488
470
|
|
|
489
|
-
class OBJECT_PT_visibility(bpy.types.Panel,
|
|
471
|
+
class OBJECT_PT_visibility(bpy.types.Panel, bpy_types._GenericUI):
|
|
490
472
|
COMPAT_ENGINES: typing.Any
|
|
491
473
|
bl_context: typing.Any
|
|
492
474
|
bl_label: typing.Any
|