fake-bpy-module 20240721__py3-none-any.whl → 20240722__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- 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
- bpy_extras/node_shader_utils/__init__.pyi +118 -118
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/RECORD +71 -71
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/WHEEL +1 -1
- keyingsets_builtins/__init__.pyi +2 -2
- nodeitems_builtins/__init__.pyi +3 -3
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/top_level.txt +0 -0
|
@@ -3,7 +3,6 @@ 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")
|
|
@@ -20,7 +19,7 @@ class ColorAttributesListBase:
|
|
|
20
19
|
"""
|
|
21
20
|
...
|
|
22
21
|
|
|
23
|
-
class DATA_PT_context_mesh(bpy.types.Panel,
|
|
22
|
+
class DATA_PT_context_mesh(bpy.types.Panel, bpy_types._GenericUI):
|
|
24
23
|
COMPAT_ENGINES: typing.Any
|
|
25
24
|
bl_context: typing.Any
|
|
26
25
|
bl_label: typing.Any
|
|
@@ -53,9 +52,7 @@ class DATA_PT_context_mesh(bpy.types.Panel, MeshButtonsPanel, bpy_types._Generic
|
|
|
53
52
|
"""
|
|
54
53
|
...
|
|
55
54
|
|
|
56
|
-
class DATA_PT_custom_props_mesh(
|
|
57
|
-
bpy.types.Panel, MeshButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
|
|
58
|
-
):
|
|
55
|
+
class DATA_PT_custom_props_mesh(bpy.types.Panel, bpy_types._GenericUI):
|
|
59
56
|
"""The subclass should have its own poll function
|
|
60
57
|
and the variable '_context_path' MUST be set.
|
|
61
58
|
"""
|
|
@@ -86,7 +83,7 @@ class DATA_PT_custom_props_mesh(
|
|
|
86
83
|
"""
|
|
87
84
|
...
|
|
88
85
|
|
|
89
|
-
class DATA_PT_customdata(bpy.types.Panel,
|
|
86
|
+
class DATA_PT_customdata(bpy.types.Panel, bpy_types._GenericUI):
|
|
90
87
|
COMPAT_ENGINES: typing.Any
|
|
91
88
|
bl_context: typing.Any
|
|
92
89
|
bl_label: typing.Any
|
|
@@ -119,7 +116,7 @@ class DATA_PT_customdata(bpy.types.Panel, MeshButtonsPanel, bpy_types._GenericUI
|
|
|
119
116
|
"""
|
|
120
117
|
...
|
|
121
118
|
|
|
122
|
-
class DATA_PT_mesh_attributes(bpy.types.Panel,
|
|
119
|
+
class DATA_PT_mesh_attributes(bpy.types.Panel, bpy_types._GenericUI):
|
|
123
120
|
COMPAT_ENGINES: typing.Any
|
|
124
121
|
bl_context: typing.Any
|
|
125
122
|
bl_label: typing.Any
|
|
@@ -152,7 +149,7 @@ class DATA_PT_mesh_attributes(bpy.types.Panel, MeshButtonsPanel, bpy_types._Gene
|
|
|
152
149
|
"""
|
|
153
150
|
...
|
|
154
151
|
|
|
155
|
-
class DATA_PT_remesh(bpy.types.Panel,
|
|
152
|
+
class DATA_PT_remesh(bpy.types.Panel, bpy_types._GenericUI):
|
|
156
153
|
COMPAT_ENGINES: typing.Any
|
|
157
154
|
bl_context: typing.Any
|
|
158
155
|
bl_label: typing.Any
|
|
@@ -185,7 +182,7 @@ class DATA_PT_remesh(bpy.types.Panel, MeshButtonsPanel, bpy_types._GenericUI):
|
|
|
185
182
|
"""
|
|
186
183
|
...
|
|
187
184
|
|
|
188
|
-
class DATA_PT_shape_keys(bpy.types.Panel,
|
|
185
|
+
class DATA_PT_shape_keys(bpy.types.Panel, bpy_types._GenericUI):
|
|
189
186
|
COMPAT_ENGINES: typing.Any
|
|
190
187
|
bl_context: typing.Any
|
|
191
188
|
bl_label: typing.Any
|
|
@@ -225,7 +222,7 @@ class DATA_PT_shape_keys(bpy.types.Panel, MeshButtonsPanel, bpy_types._GenericUI
|
|
|
225
222
|
"""
|
|
226
223
|
...
|
|
227
224
|
|
|
228
|
-
class DATA_PT_texture_space(bpy.types.Panel,
|
|
225
|
+
class DATA_PT_texture_space(bpy.types.Panel, bpy_types._GenericUI):
|
|
229
226
|
COMPAT_ENGINES: typing.Any
|
|
230
227
|
bl_context: typing.Any
|
|
231
228
|
bl_label: typing.Any
|
|
@@ -258,7 +255,7 @@ class DATA_PT_texture_space(bpy.types.Panel, MeshButtonsPanel, bpy_types._Generi
|
|
|
258
255
|
"""
|
|
259
256
|
...
|
|
260
257
|
|
|
261
|
-
class DATA_PT_uv_texture(bpy.types.Panel,
|
|
258
|
+
class DATA_PT_uv_texture(bpy.types.Panel, bpy_types._GenericUI):
|
|
262
259
|
COMPAT_ENGINES: typing.Any
|
|
263
260
|
bl_context: typing.Any
|
|
264
261
|
bl_label: typing.Any
|
|
@@ -291,9 +288,7 @@ class DATA_PT_uv_texture(bpy.types.Panel, MeshButtonsPanel, bpy_types._GenericUI
|
|
|
291
288
|
"""
|
|
292
289
|
...
|
|
293
290
|
|
|
294
|
-
class DATA_PT_vertex_colors(
|
|
295
|
-
bpy.types.Panel, DATA_PT_mesh_attributes, MeshButtonsPanel, bpy_types._GenericUI
|
|
296
|
-
):
|
|
291
|
+
class DATA_PT_vertex_colors(bpy.types.Panel, MeshButtonsPanel, bpy_types._GenericUI):
|
|
297
292
|
COMPAT_ENGINES: typing.Any
|
|
298
293
|
bl_context: typing.Any
|
|
299
294
|
bl_label: typing.Any
|
|
@@ -326,7 +321,7 @@ class DATA_PT_vertex_colors(
|
|
|
326
321
|
"""
|
|
327
322
|
...
|
|
328
323
|
|
|
329
|
-
class DATA_PT_vertex_groups(bpy.types.Panel,
|
|
324
|
+
class DATA_PT_vertex_groups(bpy.types.Panel, bpy_types._GenericUI):
|
|
330
325
|
COMPAT_ENGINES: typing.Any
|
|
331
326
|
bl_context: typing.Any
|
|
332
327
|
bl_label: typing.Any
|
|
@@ -532,8 +527,9 @@ class MESH_UL_attributes(bpy.types.UIList, bpy_types._GenericUI):
|
|
|
532
527
|
"""
|
|
533
528
|
...
|
|
534
529
|
|
|
535
|
-
class
|
|
530
|
+
class MESH_UL_color_attributes(bpy.types.UIList, bpy_types._GenericUI):
|
|
536
531
|
bl_rna: typing.Any
|
|
532
|
+
display_domain_names: typing.Any
|
|
537
533
|
id_data: typing.Any
|
|
538
534
|
|
|
539
535
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -553,23 +549,32 @@ class MESH_UL_shape_keys(bpy.types.UIList, bpy_types._GenericUI):
|
|
|
553
549
|
...
|
|
554
550
|
|
|
555
551
|
def draw_item(
|
|
556
|
-
self,
|
|
552
|
+
self,
|
|
553
|
+
_context,
|
|
554
|
+
layout,
|
|
555
|
+
data,
|
|
556
|
+
attribute,
|
|
557
|
+
_icon,
|
|
558
|
+
_active_data,
|
|
559
|
+
_active_propname,
|
|
560
|
+
_index,
|
|
557
561
|
):
|
|
558
562
|
"""
|
|
559
563
|
|
|
560
564
|
:param _context:
|
|
561
565
|
:param layout:
|
|
562
|
-
:param
|
|
563
|
-
:param
|
|
564
|
-
:param
|
|
565
|
-
:param
|
|
566
|
+
:param data:
|
|
567
|
+
:param attribute:
|
|
568
|
+
:param _icon:
|
|
569
|
+
:param _active_data:
|
|
566
570
|
:param _active_propname:
|
|
567
|
-
:param
|
|
571
|
+
:param _index:
|
|
568
572
|
"""
|
|
569
573
|
...
|
|
570
574
|
|
|
571
|
-
class
|
|
575
|
+
class MESH_UL_color_attributes_selector(bpy.types.UIList, bpy_types._GenericUI):
|
|
572
576
|
bl_rna: typing.Any
|
|
577
|
+
display_domain_names: typing.Any
|
|
573
578
|
id_data: typing.Any
|
|
574
579
|
|
|
575
580
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -593,8 +598,8 @@ class MESH_UL_uvmaps(bpy.types.UIList, bpy_types._GenericUI):
|
|
|
593
598
|
_context,
|
|
594
599
|
layout,
|
|
595
600
|
_data,
|
|
596
|
-
|
|
597
|
-
|
|
601
|
+
attribute,
|
|
602
|
+
_icon,
|
|
598
603
|
_active_data,
|
|
599
604
|
_active_propname,
|
|
600
605
|
_index,
|
|
@@ -604,15 +609,15 @@ class MESH_UL_uvmaps(bpy.types.UIList, bpy_types._GenericUI):
|
|
|
604
609
|
:param _context:
|
|
605
610
|
:param layout:
|
|
606
611
|
:param _data:
|
|
607
|
-
:param
|
|
608
|
-
:param
|
|
612
|
+
:param attribute:
|
|
613
|
+
:param _icon:
|
|
609
614
|
:param _active_data:
|
|
610
615
|
:param _active_propname:
|
|
611
616
|
:param _index:
|
|
612
617
|
"""
|
|
613
618
|
...
|
|
614
619
|
|
|
615
|
-
class
|
|
620
|
+
class MESH_UL_shape_keys(bpy.types.UIList, bpy_types._GenericUI):
|
|
616
621
|
bl_rna: typing.Any
|
|
617
622
|
id_data: typing.Any
|
|
618
623
|
|
|
@@ -633,15 +638,7 @@ class MESH_UL_vgroups(bpy.types.UIList, bpy_types._GenericUI):
|
|
|
633
638
|
...
|
|
634
639
|
|
|
635
640
|
def draw_item(
|
|
636
|
-
self,
|
|
637
|
-
_context,
|
|
638
|
-
layout,
|
|
639
|
-
_data,
|
|
640
|
-
item,
|
|
641
|
-
icon,
|
|
642
|
-
_active_data_,
|
|
643
|
-
_active_propname,
|
|
644
|
-
_index,
|
|
641
|
+
self, _context, layout, _data, item, icon, active_data, _active_propname, index
|
|
645
642
|
):
|
|
646
643
|
"""
|
|
647
644
|
|
|
@@ -650,30 +647,14 @@ class MESH_UL_vgroups(bpy.types.UIList, bpy_types._GenericUI):
|
|
|
650
647
|
:param _data:
|
|
651
648
|
:param item:
|
|
652
649
|
:param icon:
|
|
653
|
-
:param
|
|
650
|
+
:param active_data:
|
|
654
651
|
:param _active_propname:
|
|
655
|
-
:param
|
|
656
|
-
"""
|
|
657
|
-
...
|
|
658
|
-
|
|
659
|
-
class MeshButtonsPanel:
|
|
660
|
-
bl_context: typing.Any
|
|
661
|
-
bl_region_type: typing.Any
|
|
662
|
-
bl_space_type: typing.Any
|
|
663
|
-
|
|
664
|
-
@classmethod
|
|
665
|
-
def poll(cls, context):
|
|
666
|
-
"""
|
|
667
|
-
|
|
668
|
-
:param context:
|
|
652
|
+
:param index:
|
|
669
653
|
"""
|
|
670
654
|
...
|
|
671
655
|
|
|
672
|
-
class
|
|
673
|
-
bpy_types._GenericUI, bpy.types.UIList, ColorAttributesListBase
|
|
674
|
-
):
|
|
656
|
+
class MESH_UL_uvmaps(bpy.types.UIList, bpy_types._GenericUI):
|
|
675
657
|
bl_rna: typing.Any
|
|
676
|
-
display_domain_names: typing.Any
|
|
677
658
|
id_data: typing.Any
|
|
678
659
|
|
|
679
660
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -696,9 +677,9 @@ class MESH_UL_color_attributes(
|
|
|
696
677
|
self,
|
|
697
678
|
_context,
|
|
698
679
|
layout,
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
680
|
+
_data,
|
|
681
|
+
item,
|
|
682
|
+
icon,
|
|
702
683
|
_active_data,
|
|
703
684
|
_active_propname,
|
|
704
685
|
_index,
|
|
@@ -707,20 +688,17 @@ class MESH_UL_color_attributes(
|
|
|
707
688
|
|
|
708
689
|
:param _context:
|
|
709
690
|
:param layout:
|
|
710
|
-
:param
|
|
711
|
-
:param
|
|
712
|
-
:param
|
|
691
|
+
:param _data:
|
|
692
|
+
:param item:
|
|
693
|
+
:param icon:
|
|
713
694
|
:param _active_data:
|
|
714
695
|
:param _active_propname:
|
|
715
696
|
:param _index:
|
|
716
697
|
"""
|
|
717
698
|
...
|
|
718
699
|
|
|
719
|
-
class
|
|
720
|
-
bpy_types._GenericUI, bpy.types.UIList, ColorAttributesListBase
|
|
721
|
-
):
|
|
700
|
+
class MESH_UL_vgroups(bpy.types.UIList, bpy_types._GenericUI):
|
|
722
701
|
bl_rna: typing.Any
|
|
723
|
-
display_domain_names: typing.Any
|
|
724
702
|
id_data: typing.Any
|
|
725
703
|
|
|
726
704
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -744,9 +722,9 @@ class MESH_UL_color_attributes_selector(
|
|
|
744
722
|
_context,
|
|
745
723
|
layout,
|
|
746
724
|
_data,
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
725
|
+
item,
|
|
726
|
+
icon,
|
|
727
|
+
_active_data_,
|
|
750
728
|
_active_propname,
|
|
751
729
|
_index,
|
|
752
730
|
):
|
|
@@ -755,12 +733,25 @@ class MESH_UL_color_attributes_selector(
|
|
|
755
733
|
:param _context:
|
|
756
734
|
:param layout:
|
|
757
735
|
:param _data:
|
|
758
|
-
:param
|
|
759
|
-
:param
|
|
760
|
-
:param
|
|
736
|
+
:param item:
|
|
737
|
+
:param icon:
|
|
738
|
+
:param _active_data_:
|
|
761
739
|
:param _active_propname:
|
|
762
740
|
:param _index:
|
|
763
741
|
"""
|
|
764
742
|
...
|
|
765
743
|
|
|
744
|
+
class MeshButtonsPanel:
|
|
745
|
+
bl_context: typing.Any
|
|
746
|
+
bl_region_type: typing.Any
|
|
747
|
+
bl_space_type: typing.Any
|
|
748
|
+
|
|
749
|
+
@classmethod
|
|
750
|
+
def poll(cls, context):
|
|
751
|
+
"""
|
|
752
|
+
|
|
753
|
+
:param context:
|
|
754
|
+
"""
|
|
755
|
+
...
|
|
756
|
+
|
|
766
757
|
def draw_attribute_warnings(context, layout): ...
|
|
@@ -3,12 +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 DATA_PT_context_metaball(bpy.types.Panel,
|
|
10
|
+
class DATA_PT_context_metaball(bpy.types.Panel, bpy_types._GenericUI):
|
|
12
11
|
bl_context: typing.Any
|
|
13
12
|
bl_label: typing.Any
|
|
14
13
|
bl_options: typing.Any
|
|
@@ -40,9 +39,7 @@ class DATA_PT_context_metaball(bpy.types.Panel, DataButtonsPanel, bpy_types._Gen
|
|
|
40
39
|
"""
|
|
41
40
|
...
|
|
42
41
|
|
|
43
|
-
class DATA_PT_custom_props_metaball(
|
|
44
|
-
bpy.types.Panel, DataButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
|
|
45
|
-
):
|
|
42
|
+
class DATA_PT_custom_props_metaball(bpy.types.Panel, bpy_types._GenericUI):
|
|
46
43
|
"""The subclass should have its own poll function
|
|
47
44
|
and the variable '_context_path' MUST be set.
|
|
48
45
|
"""
|
|
@@ -73,9 +70,7 @@ class DATA_PT_custom_props_metaball(
|
|
|
73
70
|
"""
|
|
74
71
|
...
|
|
75
72
|
|
|
76
|
-
class DATA_PT_mball_texture_space(
|
|
77
|
-
bpy.types.Panel, DataButtonsPanel, bpy_types._GenericUI
|
|
78
|
-
):
|
|
73
|
+
class DATA_PT_mball_texture_space(bpy.types.Panel, bpy_types._GenericUI):
|
|
79
74
|
COMPAT_ENGINES: typing.Any
|
|
80
75
|
bl_context: typing.Any
|
|
81
76
|
bl_label: typing.Any
|
|
@@ -108,7 +103,7 @@ class DATA_PT_mball_texture_space(
|
|
|
108
103
|
"""
|
|
109
104
|
...
|
|
110
105
|
|
|
111
|
-
class DATA_PT_metaball(bpy.types.Panel,
|
|
106
|
+
class DATA_PT_metaball(bpy.types.Panel, bpy_types._GenericUI):
|
|
112
107
|
bl_context: typing.Any
|
|
113
108
|
bl_label: typing.Any
|
|
114
109
|
bl_region_type: typing.Any
|
|
@@ -139,7 +134,7 @@ class DATA_PT_metaball(bpy.types.Panel, DataButtonsPanel, bpy_types._GenericUI):
|
|
|
139
134
|
"""
|
|
140
135
|
...
|
|
141
136
|
|
|
142
|
-
class DATA_PT_metaball_element(bpy.types.Panel,
|
|
137
|
+
class DATA_PT_metaball_element(bpy.types.Panel, bpy_types._GenericUI):
|
|
143
138
|
bl_context: typing.Any
|
|
144
139
|
bl_label: typing.Any
|
|
145
140
|
bl_region_type: typing.Any
|
|
@@ -45,9 +45,7 @@ class AddModifierMenu(bpy.types.Operator):
|
|
|
45
45
|
"""
|
|
46
46
|
...
|
|
47
47
|
|
|
48
|
-
class DATA_PT_gpencil_modifiers(
|
|
49
|
-
bpy.types.Panel, ModifierButtonsPanel, bpy_types._GenericUI
|
|
50
|
-
):
|
|
48
|
+
class DATA_PT_gpencil_modifiers(bpy.types.Panel, bpy_types._GenericUI):
|
|
51
49
|
bl_context: typing.Any
|
|
52
50
|
bl_label: typing.Any
|
|
53
51
|
bl_options: typing.Any
|
|
@@ -87,7 +85,7 @@ class DATA_PT_gpencil_modifiers(
|
|
|
87
85
|
"""
|
|
88
86
|
...
|
|
89
87
|
|
|
90
|
-
class DATA_PT_modifiers(bpy.types.Panel,
|
|
88
|
+
class DATA_PT_modifiers(bpy.types.Panel, bpy_types._GenericUI):
|
|
91
89
|
bl_context: typing.Any
|
|
92
90
|
bl_label: typing.Any
|
|
93
91
|
bl_options: typing.Any
|
|
@@ -147,7 +145,7 @@ class ModifierButtonsPanel:
|
|
|
147
145
|
bl_region_type: typing.Any
|
|
148
146
|
bl_space_type: typing.Any
|
|
149
147
|
|
|
150
|
-
class OBJECT_MT_modifier_add(bpy.types.Menu,
|
|
148
|
+
class OBJECT_MT_modifier_add(bpy.types.Menu, bpy_types._GenericUI):
|
|
151
149
|
MODIFIER_TYPES_I18N_CONTEXT: typing.Any
|
|
152
150
|
MODIFIER_TYPES_TO_ICONS: typing.Any
|
|
153
151
|
MODIFIER_TYPES_TO_LABELS: typing.Any
|
|
@@ -179,9 +177,7 @@ class OBJECT_MT_modifier_add(bpy.types.Menu, ModifierAddMenu, bpy_types._Generic
|
|
|
179
177
|
"""
|
|
180
178
|
...
|
|
181
179
|
|
|
182
|
-
class OBJECT_MT_modifier_add_color(
|
|
183
|
-
bpy.types.Menu, ModifierAddMenu, bpy_types._GenericUI
|
|
184
|
-
):
|
|
180
|
+
class OBJECT_MT_modifier_add_color(bpy.types.Menu, bpy_types._GenericUI):
|
|
185
181
|
MODIFIER_TYPES_I18N_CONTEXT: typing.Any
|
|
186
182
|
MODIFIER_TYPES_TO_ICONS: typing.Any
|
|
187
183
|
MODIFIER_TYPES_TO_LABELS: typing.Any
|
|
@@ -213,9 +209,7 @@ class OBJECT_MT_modifier_add_color(
|
|
|
213
209
|
"""
|
|
214
210
|
...
|
|
215
211
|
|
|
216
|
-
class OBJECT_MT_modifier_add_deform(
|
|
217
|
-
bpy.types.Menu, ModifierAddMenu, bpy_types._GenericUI
|
|
218
|
-
):
|
|
212
|
+
class OBJECT_MT_modifier_add_deform(bpy.types.Menu, bpy_types._GenericUI):
|
|
219
213
|
MODIFIER_TYPES_I18N_CONTEXT: typing.Any
|
|
220
214
|
MODIFIER_TYPES_TO_ICONS: typing.Any
|
|
221
215
|
MODIFIER_TYPES_TO_LABELS: typing.Any
|
|
@@ -247,9 +241,7 @@ class OBJECT_MT_modifier_add_deform(
|
|
|
247
241
|
"""
|
|
248
242
|
...
|
|
249
243
|
|
|
250
|
-
class OBJECT_MT_modifier_add_edit(
|
|
251
|
-
bpy.types.Menu, ModifierAddMenu, bpy_types._GenericUI
|
|
252
|
-
):
|
|
244
|
+
class OBJECT_MT_modifier_add_edit(bpy.types.Menu, bpy_types._GenericUI):
|
|
253
245
|
MODIFIER_TYPES_I18N_CONTEXT: typing.Any
|
|
254
246
|
MODIFIER_TYPES_TO_ICONS: typing.Any
|
|
255
247
|
MODIFIER_TYPES_TO_LABELS: typing.Any
|
|
@@ -281,9 +273,7 @@ class OBJECT_MT_modifier_add_edit(
|
|
|
281
273
|
"""
|
|
282
274
|
...
|
|
283
275
|
|
|
284
|
-
class OBJECT_MT_modifier_add_generate(
|
|
285
|
-
bpy.types.Menu, ModifierAddMenu, bpy_types._GenericUI
|
|
286
|
-
):
|
|
276
|
+
class OBJECT_MT_modifier_add_generate(bpy.types.Menu, bpy_types._GenericUI):
|
|
287
277
|
MODIFIER_TYPES_I18N_CONTEXT: typing.Any
|
|
288
278
|
MODIFIER_TYPES_TO_ICONS: typing.Any
|
|
289
279
|
MODIFIER_TYPES_TO_LABELS: typing.Any
|
|
@@ -315,9 +305,7 @@ class OBJECT_MT_modifier_add_generate(
|
|
|
315
305
|
"""
|
|
316
306
|
...
|
|
317
307
|
|
|
318
|
-
class OBJECT_MT_modifier_add_normals(
|
|
319
|
-
bpy.types.Menu, ModifierAddMenu, bpy_types._GenericUI
|
|
320
|
-
):
|
|
308
|
+
class OBJECT_MT_modifier_add_normals(bpy.types.Menu, bpy_types._GenericUI):
|
|
321
309
|
MODIFIER_TYPES_I18N_CONTEXT: typing.Any
|
|
322
310
|
MODIFIER_TYPES_TO_ICONS: typing.Any
|
|
323
311
|
MODIFIER_TYPES_TO_LABELS: typing.Any
|
|
@@ -349,9 +337,7 @@ class OBJECT_MT_modifier_add_normals(
|
|
|
349
337
|
"""
|
|
350
338
|
...
|
|
351
339
|
|
|
352
|
-
class OBJECT_MT_modifier_add_physics(
|
|
353
|
-
bpy.types.Menu, ModifierAddMenu, bpy_types._GenericUI
|
|
354
|
-
):
|
|
340
|
+
class OBJECT_MT_modifier_add_physics(bpy.types.Menu, bpy_types._GenericUI):
|
|
355
341
|
MODIFIER_TYPES_I18N_CONTEXT: typing.Any
|
|
356
342
|
MODIFIER_TYPES_TO_ICONS: typing.Any
|
|
357
343
|
MODIFIER_TYPES_TO_LABELS: 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 DATA_PT_context_pointcloud(
|
|
12
|
-
bpy.types.Panel, DataButtonsPanel, bpy_types._GenericUI
|
|
13
|
-
):
|
|
10
|
+
class DATA_PT_context_pointcloud(bpy.types.Panel, bpy_types._GenericUI):
|
|
14
11
|
COMPAT_ENGINES: typing.Any
|
|
15
12
|
bl_context: typing.Any
|
|
16
13
|
bl_label: typing.Any
|
|
@@ -43,9 +40,7 @@ class DATA_PT_context_pointcloud(
|
|
|
43
40
|
"""
|
|
44
41
|
...
|
|
45
42
|
|
|
46
|
-
class DATA_PT_custom_props_pointcloud(
|
|
47
|
-
bpy.types.Panel, DataButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
|
|
48
|
-
):
|
|
43
|
+
class DATA_PT_custom_props_pointcloud(bpy.types.Panel, bpy_types._GenericUI):
|
|
49
44
|
"""The subclass should have its own poll function
|
|
50
45
|
and the variable '_context_path' MUST be set.
|
|
51
46
|
"""
|
|
@@ -76,9 +71,7 @@ class DATA_PT_custom_props_pointcloud(
|
|
|
76
71
|
"""
|
|
77
72
|
...
|
|
78
73
|
|
|
79
|
-
class DATA_PT_pointcloud_attributes(
|
|
80
|
-
bpy.types.Panel, DataButtonsPanel, bpy_types._GenericUI
|
|
81
|
-
):
|
|
74
|
+
class DATA_PT_pointcloud_attributes(bpy.types.Panel, bpy_types._GenericUI):
|
|
82
75
|
COMPAT_ENGINES: typing.Any
|
|
83
76
|
bl_context: typing.Any
|
|
84
77
|
bl_label: typing.Any
|
|
@@ -7,7 +7,7 @@ import bpy_types
|
|
|
7
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
8
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
9
9
|
|
|
10
|
-
class DATA_PT_shader_fx(bpy.types.Panel,
|
|
10
|
+
class DATA_PT_shader_fx(bpy.types.Panel, bpy_types._GenericUI):
|
|
11
11
|
bl_context: typing.Any
|
|
12
12
|
bl_label: typing.Any
|
|
13
13
|
bl_options: typing.Any
|
|
@@ -3,12 +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 DATA_PT_cone(bpy.types.Panel,
|
|
10
|
+
class DATA_PT_cone(bpy.types.Panel, bpy_types._GenericUI):
|
|
12
11
|
COMPAT_ENGINES: typing.Any
|
|
13
12
|
bl_context: typing.Any
|
|
14
13
|
bl_label: typing.Any
|
|
@@ -41,7 +40,7 @@ class DATA_PT_cone(bpy.types.Panel, DataButtonsPanel, bpy_types._GenericUI):
|
|
|
41
40
|
"""
|
|
42
41
|
...
|
|
43
42
|
|
|
44
|
-
class DATA_PT_context_speaker(bpy.types.Panel,
|
|
43
|
+
class DATA_PT_context_speaker(bpy.types.Panel, bpy_types._GenericUI):
|
|
45
44
|
COMPAT_ENGINES: typing.Any
|
|
46
45
|
bl_context: typing.Any
|
|
47
46
|
bl_label: typing.Any
|
|
@@ -74,9 +73,7 @@ class DATA_PT_context_speaker(bpy.types.Panel, DataButtonsPanel, bpy_types._Gene
|
|
|
74
73
|
"""
|
|
75
74
|
...
|
|
76
75
|
|
|
77
|
-
class DATA_PT_custom_props_speaker(
|
|
78
|
-
bpy.types.Panel, DataButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
|
|
79
|
-
):
|
|
76
|
+
class DATA_PT_custom_props_speaker(bpy.types.Panel, bpy_types._GenericUI):
|
|
80
77
|
"""The subclass should have its own poll function
|
|
81
78
|
and the variable '_context_path' MUST be set.
|
|
82
79
|
"""
|
|
@@ -107,7 +104,7 @@ class DATA_PT_custom_props_speaker(
|
|
|
107
104
|
"""
|
|
108
105
|
...
|
|
109
106
|
|
|
110
|
-
class DATA_PT_distance(bpy.types.Panel,
|
|
107
|
+
class DATA_PT_distance(bpy.types.Panel, bpy_types._GenericUI):
|
|
111
108
|
COMPAT_ENGINES: typing.Any
|
|
112
109
|
bl_context: typing.Any
|
|
113
110
|
bl_label: typing.Any
|
|
@@ -140,7 +137,7 @@ class DATA_PT_distance(bpy.types.Panel, DataButtonsPanel, bpy_types._GenericUI):
|
|
|
140
137
|
"""
|
|
141
138
|
...
|
|
142
139
|
|
|
143
|
-
class DATA_PT_speaker(bpy.types.Panel,
|
|
140
|
+
class DATA_PT_speaker(bpy.types.Panel, bpy_types._GenericUI):
|
|
144
141
|
COMPAT_ENGINES: typing.Any
|
|
145
142
|
bl_context: typing.Any
|
|
146
143
|
bl_label: typing.Any
|
|
@@ -3,12 +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 DATA_PT_context_volume(bpy.types.Panel,
|
|
10
|
+
class DATA_PT_context_volume(bpy.types.Panel, bpy_types._GenericUI):
|
|
12
11
|
COMPAT_ENGINES: typing.Any
|
|
13
12
|
bl_context: typing.Any
|
|
14
13
|
bl_label: typing.Any
|
|
@@ -41,9 +40,7 @@ class DATA_PT_context_volume(bpy.types.Panel, DataButtonsPanel, bpy_types._Gener
|
|
|
41
40
|
"""
|
|
42
41
|
...
|
|
43
42
|
|
|
44
|
-
class DATA_PT_custom_props_volume(
|
|
45
|
-
bpy.types.Panel, DataButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
|
|
46
|
-
):
|
|
43
|
+
class DATA_PT_custom_props_volume(bpy.types.Panel, bpy_types._GenericUI):
|
|
47
44
|
"""The subclass should have its own poll function
|
|
48
45
|
and the variable '_context_path' MUST be set.
|
|
49
46
|
"""
|
|
@@ -74,7 +71,7 @@ class DATA_PT_custom_props_volume(
|
|
|
74
71
|
"""
|
|
75
72
|
...
|
|
76
73
|
|
|
77
|
-
class DATA_PT_volume_file(bpy.types.Panel,
|
|
74
|
+
class DATA_PT_volume_file(bpy.types.Panel, bpy_types._GenericUI):
|
|
78
75
|
COMPAT_ENGINES: typing.Any
|
|
79
76
|
bl_context: typing.Any
|
|
80
77
|
bl_label: typing.Any
|
|
@@ -106,7 +103,7 @@ class DATA_PT_volume_file(bpy.types.Panel, DataButtonsPanel, bpy_types._GenericU
|
|
|
106
103
|
"""
|
|
107
104
|
...
|
|
108
105
|
|
|
109
|
-
class DATA_PT_volume_grids(bpy.types.Panel,
|
|
106
|
+
class DATA_PT_volume_grids(bpy.types.Panel, bpy_types._GenericUI):
|
|
110
107
|
COMPAT_ENGINES: typing.Any
|
|
111
108
|
bl_context: typing.Any
|
|
112
109
|
bl_label: typing.Any
|
|
@@ -138,7 +135,7 @@ class DATA_PT_volume_grids(bpy.types.Panel, DataButtonsPanel, bpy_types._Generic
|
|
|
138
135
|
"""
|
|
139
136
|
...
|
|
140
137
|
|
|
141
|
-
class DATA_PT_volume_render(bpy.types.Panel,
|
|
138
|
+
class DATA_PT_volume_render(bpy.types.Panel, bpy_types._GenericUI):
|
|
142
139
|
COMPAT_ENGINES: typing.Any
|
|
143
140
|
bl_context: typing.Any
|
|
144
141
|
bl_label: typing.Any
|
|
@@ -170,9 +167,7 @@ class DATA_PT_volume_render(bpy.types.Panel, DataButtonsPanel, bpy_types._Generi
|
|
|
170
167
|
"""
|
|
171
168
|
...
|
|
172
169
|
|
|
173
|
-
class DATA_PT_volume_viewport_display(
|
|
174
|
-
bpy.types.Panel, DataButtonsPanel, bpy_types._GenericUI
|
|
175
|
-
):
|
|
170
|
+
class DATA_PT_volume_viewport_display(bpy.types.Panel, bpy_types._GenericUI):
|
|
176
171
|
COMPAT_ENGINES: typing.Any
|
|
177
172
|
bl_context: typing.Any
|
|
178
173
|
bl_label: typing.Any
|
|
@@ -204,9 +199,7 @@ class DATA_PT_volume_viewport_display(
|
|
|
204
199
|
"""
|
|
205
200
|
...
|
|
206
201
|
|
|
207
|
-
class DATA_PT_volume_viewport_display_slicing(
|
|
208
|
-
bpy.types.Panel, DataButtonsPanel, bpy_types._GenericUI
|
|
209
|
-
):
|
|
202
|
+
class DATA_PT_volume_viewport_display_slicing(bpy.types.Panel, bpy_types._GenericUI):
|
|
210
203
|
COMPAT_ENGINES: typing.Any
|
|
211
204
|
bl_context: typing.Any
|
|
212
205
|
bl_label: typing.Any
|