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,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
|
import rna_prop_ui
|
|
7
6
|
|
|
8
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
@@ -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(MeshButtonsPanel, bpy.types.Panel):
|
|
24
23
|
COMPAT_ENGINES: typing.Any
|
|
25
24
|
bl_context: typing.Any
|
|
26
25
|
bl_label: typing.Any
|
|
@@ -54,7 +53,7 @@ class DATA_PT_context_mesh(bpy.types.Panel, MeshButtonsPanel, bpy_types._Generic
|
|
|
54
53
|
...
|
|
55
54
|
|
|
56
55
|
class DATA_PT_custom_props_mesh(
|
|
57
|
-
|
|
56
|
+
rna_prop_ui.PropertyPanel, MeshButtonsPanel, bpy.types.Panel
|
|
58
57
|
):
|
|
59
58
|
"""The subclass should have its own poll function
|
|
60
59
|
and the variable '_context_path' MUST be set.
|
|
@@ -86,7 +85,7 @@ class DATA_PT_custom_props_mesh(
|
|
|
86
85
|
"""
|
|
87
86
|
...
|
|
88
87
|
|
|
89
|
-
class DATA_PT_customdata(bpy.types.Panel
|
|
88
|
+
class DATA_PT_customdata(MeshButtonsPanel, bpy.types.Panel):
|
|
90
89
|
COMPAT_ENGINES: typing.Any
|
|
91
90
|
bl_context: typing.Any
|
|
92
91
|
bl_label: typing.Any
|
|
@@ -119,7 +118,7 @@ class DATA_PT_customdata(bpy.types.Panel, MeshButtonsPanel, bpy_types._GenericUI
|
|
|
119
118
|
"""
|
|
120
119
|
...
|
|
121
120
|
|
|
122
|
-
class DATA_PT_mesh_attributes(bpy.types.Panel
|
|
121
|
+
class DATA_PT_mesh_attributes(MeshButtonsPanel, bpy.types.Panel):
|
|
123
122
|
COMPAT_ENGINES: typing.Any
|
|
124
123
|
bl_context: typing.Any
|
|
125
124
|
bl_label: typing.Any
|
|
@@ -152,7 +151,7 @@ class DATA_PT_mesh_attributes(bpy.types.Panel, MeshButtonsPanel, bpy_types._Gene
|
|
|
152
151
|
"""
|
|
153
152
|
...
|
|
154
153
|
|
|
155
|
-
class DATA_PT_remesh(bpy.types.Panel
|
|
154
|
+
class DATA_PT_remesh(MeshButtonsPanel, bpy.types.Panel):
|
|
156
155
|
COMPAT_ENGINES: typing.Any
|
|
157
156
|
bl_context: typing.Any
|
|
158
157
|
bl_label: typing.Any
|
|
@@ -185,7 +184,7 @@ class DATA_PT_remesh(bpy.types.Panel, MeshButtonsPanel, bpy_types._GenericUI):
|
|
|
185
184
|
"""
|
|
186
185
|
...
|
|
187
186
|
|
|
188
|
-
class DATA_PT_shape_keys(bpy.types.Panel
|
|
187
|
+
class DATA_PT_shape_keys(MeshButtonsPanel, bpy.types.Panel):
|
|
189
188
|
COMPAT_ENGINES: typing.Any
|
|
190
189
|
bl_context: typing.Any
|
|
191
190
|
bl_label: typing.Any
|
|
@@ -225,7 +224,7 @@ class DATA_PT_shape_keys(bpy.types.Panel, MeshButtonsPanel, bpy_types._GenericUI
|
|
|
225
224
|
"""
|
|
226
225
|
...
|
|
227
226
|
|
|
228
|
-
class DATA_PT_texture_space(bpy.types.Panel
|
|
227
|
+
class DATA_PT_texture_space(MeshButtonsPanel, bpy.types.Panel):
|
|
229
228
|
COMPAT_ENGINES: typing.Any
|
|
230
229
|
bl_context: typing.Any
|
|
231
230
|
bl_label: typing.Any
|
|
@@ -258,7 +257,7 @@ class DATA_PT_texture_space(bpy.types.Panel, MeshButtonsPanel, bpy_types._Generi
|
|
|
258
257
|
"""
|
|
259
258
|
...
|
|
260
259
|
|
|
261
|
-
class DATA_PT_uv_texture(bpy.types.Panel
|
|
260
|
+
class DATA_PT_uv_texture(MeshButtonsPanel, bpy.types.Panel):
|
|
262
261
|
COMPAT_ENGINES: typing.Any
|
|
263
262
|
bl_context: typing.Any
|
|
264
263
|
bl_label: typing.Any
|
|
@@ -291,9 +290,7 @@ class DATA_PT_uv_texture(bpy.types.Panel, MeshButtonsPanel, bpy_types._GenericUI
|
|
|
291
290
|
"""
|
|
292
291
|
...
|
|
293
292
|
|
|
294
|
-
class DATA_PT_vertex_colors(
|
|
295
|
-
bpy.types.Panel, DATA_PT_mesh_attributes, MeshButtonsPanel, bpy_types._GenericUI
|
|
296
|
-
):
|
|
293
|
+
class DATA_PT_vertex_colors(DATA_PT_mesh_attributes, bpy.types.Panel):
|
|
297
294
|
COMPAT_ENGINES: typing.Any
|
|
298
295
|
bl_context: typing.Any
|
|
299
296
|
bl_label: typing.Any
|
|
@@ -326,7 +323,7 @@ class DATA_PT_vertex_colors(
|
|
|
326
323
|
"""
|
|
327
324
|
...
|
|
328
325
|
|
|
329
|
-
class DATA_PT_vertex_groups(bpy.types.Panel
|
|
326
|
+
class DATA_PT_vertex_groups(MeshButtonsPanel, bpy.types.Panel):
|
|
330
327
|
COMPAT_ENGINES: typing.Any
|
|
331
328
|
bl_context: typing.Any
|
|
332
329
|
bl_label: typing.Any
|
|
@@ -366,7 +363,7 @@ class DATA_PT_vertex_groups(bpy.types.Panel, MeshButtonsPanel, bpy_types._Generi
|
|
|
366
363
|
"""
|
|
367
364
|
...
|
|
368
365
|
|
|
369
|
-
class MESH_MT_attribute_context_menu(bpy.types.Menu
|
|
366
|
+
class MESH_MT_attribute_context_menu(bpy.types.Menu):
|
|
370
367
|
bl_label: typing.Any
|
|
371
368
|
bl_rna: typing.Any
|
|
372
369
|
id_data: typing.Any
|
|
@@ -394,7 +391,7 @@ class MESH_MT_attribute_context_menu(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
394
391
|
"""
|
|
395
392
|
...
|
|
396
393
|
|
|
397
|
-
class MESH_MT_color_attribute_context_menu(bpy.types.Menu
|
|
394
|
+
class MESH_MT_color_attribute_context_menu(bpy.types.Menu):
|
|
398
395
|
bl_label: typing.Any
|
|
399
396
|
bl_rna: typing.Any
|
|
400
397
|
id_data: typing.Any
|
|
@@ -422,7 +419,7 @@ class MESH_MT_color_attribute_context_menu(bpy.types.Menu, bpy_types._GenericUI)
|
|
|
422
419
|
"""
|
|
423
420
|
...
|
|
424
421
|
|
|
425
|
-
class MESH_MT_shape_key_context_menu(bpy.types.Menu
|
|
422
|
+
class MESH_MT_shape_key_context_menu(bpy.types.Menu):
|
|
426
423
|
bl_label: typing.Any
|
|
427
424
|
bl_rna: typing.Any
|
|
428
425
|
id_data: typing.Any
|
|
@@ -450,7 +447,7 @@ class MESH_MT_shape_key_context_menu(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
450
447
|
"""
|
|
451
448
|
...
|
|
452
449
|
|
|
453
|
-
class MESH_MT_vertex_group_context_menu(bpy.types.Menu
|
|
450
|
+
class MESH_MT_vertex_group_context_menu(bpy.types.Menu):
|
|
454
451
|
bl_label: typing.Any
|
|
455
452
|
bl_rna: typing.Any
|
|
456
453
|
id_data: typing.Any
|
|
@@ -478,7 +475,7 @@ class MESH_MT_vertex_group_context_menu(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
478
475
|
"""
|
|
479
476
|
...
|
|
480
477
|
|
|
481
|
-
class MESH_UL_attributes(bpy.types.UIList
|
|
478
|
+
class MESH_UL_attributes(bpy.types.UIList):
|
|
482
479
|
bl_rna: typing.Any
|
|
483
480
|
display_domain_names: typing.Any
|
|
484
481
|
id_data: typing.Any
|
|
@@ -532,7 +529,7 @@ class MESH_UL_attributes(bpy.types.UIList, bpy_types._GenericUI):
|
|
|
532
529
|
"""
|
|
533
530
|
...
|
|
534
531
|
|
|
535
|
-
class MESH_UL_shape_keys(bpy.types.UIList
|
|
532
|
+
class MESH_UL_shape_keys(bpy.types.UIList):
|
|
536
533
|
bl_rna: typing.Any
|
|
537
534
|
id_data: typing.Any
|
|
538
535
|
|
|
@@ -568,7 +565,7 @@ class MESH_UL_shape_keys(bpy.types.UIList, bpy_types._GenericUI):
|
|
|
568
565
|
"""
|
|
569
566
|
...
|
|
570
567
|
|
|
571
|
-
class MESH_UL_uvmaps(bpy.types.UIList
|
|
568
|
+
class MESH_UL_uvmaps(bpy.types.UIList):
|
|
572
569
|
bl_rna: typing.Any
|
|
573
570
|
id_data: typing.Any
|
|
574
571
|
|
|
@@ -612,7 +609,7 @@ class MESH_UL_uvmaps(bpy.types.UIList, bpy_types._GenericUI):
|
|
|
612
609
|
"""
|
|
613
610
|
...
|
|
614
611
|
|
|
615
|
-
class MESH_UL_vgroups(bpy.types.UIList
|
|
612
|
+
class MESH_UL_vgroups(bpy.types.UIList):
|
|
616
613
|
bl_rna: typing.Any
|
|
617
614
|
id_data: typing.Any
|
|
618
615
|
|
|
@@ -669,9 +666,7 @@ class MeshButtonsPanel:
|
|
|
669
666
|
"""
|
|
670
667
|
...
|
|
671
668
|
|
|
672
|
-
class MESH_UL_color_attributes(
|
|
673
|
-
bpy_types._GenericUI, bpy.types.UIList, ColorAttributesListBase
|
|
674
|
-
):
|
|
669
|
+
class MESH_UL_color_attributes(bpy.types.UIList, ColorAttributesListBase):
|
|
675
670
|
bl_rna: typing.Any
|
|
676
671
|
display_domain_names: typing.Any
|
|
677
672
|
id_data: typing.Any
|
|
@@ -716,9 +711,7 @@ class MESH_UL_color_attributes(
|
|
|
716
711
|
"""
|
|
717
712
|
...
|
|
718
713
|
|
|
719
|
-
class MESH_UL_color_attributes_selector(
|
|
720
|
-
bpy_types._GenericUI, bpy.types.UIList, ColorAttributesListBase
|
|
721
|
-
):
|
|
714
|
+
class MESH_UL_color_attributes_selector(bpy.types.UIList, ColorAttributesListBase):
|
|
722
715
|
bl_rna: typing.Any
|
|
723
716
|
display_domain_names: typing.Any
|
|
724
717
|
id_data: typing.Any
|
|
@@ -2,13 +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 DATA_PT_context_metaball(bpy.types.Panel
|
|
10
|
+
class DATA_PT_context_metaball(DataButtonsPanel, bpy.types.Panel):
|
|
12
11
|
bl_context: typing.Any
|
|
13
12
|
bl_label: typing.Any
|
|
14
13
|
bl_options: typing.Any
|
|
@@ -41,7 +40,7 @@ class DATA_PT_context_metaball(bpy.types.Panel, DataButtonsPanel, bpy_types._Gen
|
|
|
41
40
|
...
|
|
42
41
|
|
|
43
42
|
class DATA_PT_custom_props_metaball(
|
|
44
|
-
|
|
43
|
+
rna_prop_ui.PropertyPanel, DataButtonsPanel, bpy.types.Panel
|
|
45
44
|
):
|
|
46
45
|
"""The subclass should have its own poll function
|
|
47
46
|
and the variable '_context_path' MUST be set.
|
|
@@ -73,9 +72,7 @@ class DATA_PT_custom_props_metaball(
|
|
|
73
72
|
"""
|
|
74
73
|
...
|
|
75
74
|
|
|
76
|
-
class DATA_PT_mball_texture_space(
|
|
77
|
-
bpy.types.Panel, DataButtonsPanel, bpy_types._GenericUI
|
|
78
|
-
):
|
|
75
|
+
class DATA_PT_mball_texture_space(DataButtonsPanel, bpy.types.Panel):
|
|
79
76
|
COMPAT_ENGINES: typing.Any
|
|
80
77
|
bl_context: typing.Any
|
|
81
78
|
bl_label: typing.Any
|
|
@@ -108,7 +105,7 @@ class DATA_PT_mball_texture_space(
|
|
|
108
105
|
"""
|
|
109
106
|
...
|
|
110
107
|
|
|
111
|
-
class DATA_PT_metaball(bpy.types.Panel
|
|
108
|
+
class DATA_PT_metaball(DataButtonsPanel, bpy.types.Panel):
|
|
112
109
|
bl_context: typing.Any
|
|
113
110
|
bl_label: typing.Any
|
|
114
111
|
bl_region_type: typing.Any
|
|
@@ -139,7 +136,7 @@ class DATA_PT_metaball(bpy.types.Panel, DataButtonsPanel, bpy_types._GenericUI):
|
|
|
139
136
|
"""
|
|
140
137
|
...
|
|
141
138
|
|
|
142
|
-
class DATA_PT_metaball_element(bpy.types.Panel
|
|
139
|
+
class DATA_PT_metaball_element(DataButtonsPanel, bpy.types.Panel):
|
|
143
140
|
bl_context: typing.Any
|
|
144
141
|
bl_label: typing.Any
|
|
145
142
|
bl_region_type: 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")
|
|
@@ -45,9 +44,7 @@ class AddModifierMenu(bpy.types.Operator):
|
|
|
45
44
|
"""
|
|
46
45
|
...
|
|
47
46
|
|
|
48
|
-
class DATA_PT_gpencil_modifiers(
|
|
49
|
-
bpy.types.Panel, ModifierButtonsPanel, bpy_types._GenericUI
|
|
50
|
-
):
|
|
47
|
+
class DATA_PT_gpencil_modifiers(ModifierButtonsPanel, bpy.types.Panel):
|
|
51
48
|
bl_context: typing.Any
|
|
52
49
|
bl_label: typing.Any
|
|
53
50
|
bl_options: typing.Any
|
|
@@ -87,7 +84,7 @@ class DATA_PT_gpencil_modifiers(
|
|
|
87
84
|
"""
|
|
88
85
|
...
|
|
89
86
|
|
|
90
|
-
class DATA_PT_modifiers(bpy.types.Panel
|
|
87
|
+
class DATA_PT_modifiers(ModifierButtonsPanel, bpy.types.Panel):
|
|
91
88
|
bl_context: typing.Any
|
|
92
89
|
bl_label: typing.Any
|
|
93
90
|
bl_options: typing.Any
|
|
@@ -147,7 +144,7 @@ class ModifierButtonsPanel:
|
|
|
147
144
|
bl_region_type: typing.Any
|
|
148
145
|
bl_space_type: typing.Any
|
|
149
146
|
|
|
150
|
-
class OBJECT_MT_modifier_add(bpy.types.Menu
|
|
147
|
+
class OBJECT_MT_modifier_add(ModifierAddMenu, bpy.types.Menu):
|
|
151
148
|
MODIFIER_TYPES_I18N_CONTEXT: typing.Any
|
|
152
149
|
MODIFIER_TYPES_TO_ICONS: typing.Any
|
|
153
150
|
MODIFIER_TYPES_TO_LABELS: typing.Any
|
|
@@ -179,9 +176,7 @@ class OBJECT_MT_modifier_add(bpy.types.Menu, ModifierAddMenu, bpy_types._Generic
|
|
|
179
176
|
"""
|
|
180
177
|
...
|
|
181
178
|
|
|
182
|
-
class OBJECT_MT_modifier_add_color(
|
|
183
|
-
bpy.types.Menu, ModifierAddMenu, bpy_types._GenericUI
|
|
184
|
-
):
|
|
179
|
+
class OBJECT_MT_modifier_add_color(ModifierAddMenu, bpy.types.Menu):
|
|
185
180
|
MODIFIER_TYPES_I18N_CONTEXT: typing.Any
|
|
186
181
|
MODIFIER_TYPES_TO_ICONS: typing.Any
|
|
187
182
|
MODIFIER_TYPES_TO_LABELS: typing.Any
|
|
@@ -213,9 +208,7 @@ class OBJECT_MT_modifier_add_color(
|
|
|
213
208
|
"""
|
|
214
209
|
...
|
|
215
210
|
|
|
216
|
-
class OBJECT_MT_modifier_add_deform(
|
|
217
|
-
bpy.types.Menu, ModifierAddMenu, bpy_types._GenericUI
|
|
218
|
-
):
|
|
211
|
+
class OBJECT_MT_modifier_add_deform(ModifierAddMenu, bpy.types.Menu):
|
|
219
212
|
MODIFIER_TYPES_I18N_CONTEXT: typing.Any
|
|
220
213
|
MODIFIER_TYPES_TO_ICONS: typing.Any
|
|
221
214
|
MODIFIER_TYPES_TO_LABELS: typing.Any
|
|
@@ -247,9 +240,7 @@ class OBJECT_MT_modifier_add_deform(
|
|
|
247
240
|
"""
|
|
248
241
|
...
|
|
249
242
|
|
|
250
|
-
class OBJECT_MT_modifier_add_edit(
|
|
251
|
-
bpy.types.Menu, ModifierAddMenu, bpy_types._GenericUI
|
|
252
|
-
):
|
|
243
|
+
class OBJECT_MT_modifier_add_edit(ModifierAddMenu, bpy.types.Menu):
|
|
253
244
|
MODIFIER_TYPES_I18N_CONTEXT: typing.Any
|
|
254
245
|
MODIFIER_TYPES_TO_ICONS: typing.Any
|
|
255
246
|
MODIFIER_TYPES_TO_LABELS: typing.Any
|
|
@@ -281,9 +272,7 @@ class OBJECT_MT_modifier_add_edit(
|
|
|
281
272
|
"""
|
|
282
273
|
...
|
|
283
274
|
|
|
284
|
-
class OBJECT_MT_modifier_add_generate(
|
|
285
|
-
bpy.types.Menu, ModifierAddMenu, bpy_types._GenericUI
|
|
286
|
-
):
|
|
275
|
+
class OBJECT_MT_modifier_add_generate(ModifierAddMenu, bpy.types.Menu):
|
|
287
276
|
MODIFIER_TYPES_I18N_CONTEXT: typing.Any
|
|
288
277
|
MODIFIER_TYPES_TO_ICONS: typing.Any
|
|
289
278
|
MODIFIER_TYPES_TO_LABELS: typing.Any
|
|
@@ -315,9 +304,7 @@ class OBJECT_MT_modifier_add_generate(
|
|
|
315
304
|
"""
|
|
316
305
|
...
|
|
317
306
|
|
|
318
|
-
class OBJECT_MT_modifier_add_normals(
|
|
319
|
-
bpy.types.Menu, ModifierAddMenu, bpy_types._GenericUI
|
|
320
|
-
):
|
|
307
|
+
class OBJECT_MT_modifier_add_normals(ModifierAddMenu, bpy.types.Menu):
|
|
321
308
|
MODIFIER_TYPES_I18N_CONTEXT: typing.Any
|
|
322
309
|
MODIFIER_TYPES_TO_ICONS: typing.Any
|
|
323
310
|
MODIFIER_TYPES_TO_LABELS: typing.Any
|
|
@@ -349,9 +336,7 @@ class OBJECT_MT_modifier_add_normals(
|
|
|
349
336
|
"""
|
|
350
337
|
...
|
|
351
338
|
|
|
352
|
-
class OBJECT_MT_modifier_add_physics(
|
|
353
|
-
bpy.types.Menu, ModifierAddMenu, bpy_types._GenericUI
|
|
354
|
-
):
|
|
339
|
+
class OBJECT_MT_modifier_add_physics(ModifierAddMenu, bpy.types.Menu):
|
|
355
340
|
MODIFIER_TYPES_I18N_CONTEXT: typing.Any
|
|
356
341
|
MODIFIER_TYPES_TO_ICONS: typing.Any
|
|
357
342
|
MODIFIER_TYPES_TO_LABELS: typing.Any
|
|
@@ -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 DATA_PT_context_pointcloud(
|
|
12
|
-
bpy.types.Panel, DataButtonsPanel, bpy_types._GenericUI
|
|
13
|
-
):
|
|
10
|
+
class DATA_PT_context_pointcloud(DataButtonsPanel, bpy.types.Panel):
|
|
14
11
|
COMPAT_ENGINES: typing.Any
|
|
15
12
|
bl_context: typing.Any
|
|
16
13
|
bl_label: typing.Any
|
|
@@ -44,7 +41,7 @@ class DATA_PT_context_pointcloud(
|
|
|
44
41
|
...
|
|
45
42
|
|
|
46
43
|
class DATA_PT_custom_props_pointcloud(
|
|
47
|
-
|
|
44
|
+
rna_prop_ui.PropertyPanel, DataButtonsPanel, bpy.types.Panel
|
|
48
45
|
):
|
|
49
46
|
"""The subclass should have its own poll function
|
|
50
47
|
and the variable '_context_path' MUST be set.
|
|
@@ -76,9 +73,7 @@ class DATA_PT_custom_props_pointcloud(
|
|
|
76
73
|
"""
|
|
77
74
|
...
|
|
78
75
|
|
|
79
|
-
class DATA_PT_pointcloud_attributes(
|
|
80
|
-
bpy.types.Panel, DataButtonsPanel, bpy_types._GenericUI
|
|
81
|
-
):
|
|
76
|
+
class DATA_PT_pointcloud_attributes(DataButtonsPanel, bpy.types.Panel):
|
|
82
77
|
COMPAT_ENGINES: typing.Any
|
|
83
78
|
bl_context: typing.Any
|
|
84
79
|
bl_label: typing.Any
|
|
@@ -123,7 +118,7 @@ class DataButtonsPanel:
|
|
|
123
118
|
"""
|
|
124
119
|
...
|
|
125
120
|
|
|
126
|
-
class POINTCLOUD_MT_add_attribute(bpy.types.Menu
|
|
121
|
+
class POINTCLOUD_MT_add_attribute(bpy.types.Menu):
|
|
127
122
|
bl_label: typing.Any
|
|
128
123
|
bl_rna: typing.Any
|
|
129
124
|
id_data: typing.Any
|
|
@@ -163,7 +158,7 @@ class POINTCLOUD_MT_add_attribute(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
163
158
|
"""
|
|
164
159
|
...
|
|
165
160
|
|
|
166
|
-
class POINTCLOUD_UL_attributes(bpy.types.UIList
|
|
161
|
+
class POINTCLOUD_UL_attributes(bpy.types.UIList):
|
|
167
162
|
bl_rna: typing.Any
|
|
168
163
|
id_data: typing.Any
|
|
169
164
|
|
|
@@ -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 DATA_PT_shader_fx(bpy.types.Panel
|
|
9
|
+
class DATA_PT_shader_fx(ShaderFxButtonsPanel, bpy.types.Panel):
|
|
11
10
|
bl_context: typing.Any
|
|
12
11
|
bl_label: typing.Any
|
|
13
12
|
bl_options: typing.Any
|
|
@@ -2,13 +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 DATA_PT_cone(bpy.types.Panel
|
|
10
|
+
class DATA_PT_cone(DataButtonsPanel, bpy.types.Panel):
|
|
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(DataButtonsPanel, bpy.types.Panel):
|
|
45
44
|
COMPAT_ENGINES: typing.Any
|
|
46
45
|
bl_context: typing.Any
|
|
47
46
|
bl_label: typing.Any
|
|
@@ -75,7 +74,7 @@ class DATA_PT_context_speaker(bpy.types.Panel, DataButtonsPanel, bpy_types._Gene
|
|
|
75
74
|
...
|
|
76
75
|
|
|
77
76
|
class DATA_PT_custom_props_speaker(
|
|
78
|
-
|
|
77
|
+
rna_prop_ui.PropertyPanel, DataButtonsPanel, bpy.types.Panel
|
|
79
78
|
):
|
|
80
79
|
"""The subclass should have its own poll function
|
|
81
80
|
and the variable '_context_path' MUST be set.
|
|
@@ -107,7 +106,7 @@ class DATA_PT_custom_props_speaker(
|
|
|
107
106
|
"""
|
|
108
107
|
...
|
|
109
108
|
|
|
110
|
-
class DATA_PT_distance(bpy.types.Panel
|
|
109
|
+
class DATA_PT_distance(DataButtonsPanel, bpy.types.Panel):
|
|
111
110
|
COMPAT_ENGINES: typing.Any
|
|
112
111
|
bl_context: typing.Any
|
|
113
112
|
bl_label: typing.Any
|
|
@@ -140,7 +139,7 @@ class DATA_PT_distance(bpy.types.Panel, DataButtonsPanel, bpy_types._GenericUI):
|
|
|
140
139
|
"""
|
|
141
140
|
...
|
|
142
141
|
|
|
143
|
-
class DATA_PT_speaker(bpy.types.Panel
|
|
142
|
+
class DATA_PT_speaker(DataButtonsPanel, bpy.types.Panel):
|
|
144
143
|
COMPAT_ENGINES: typing.Any
|
|
145
144
|
bl_context: typing.Any
|
|
146
145
|
bl_label: typing.Any
|
|
@@ -2,13 +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 DATA_PT_context_volume(bpy.types.Panel
|
|
10
|
+
class DATA_PT_context_volume(DataButtonsPanel, bpy.types.Panel):
|
|
12
11
|
COMPAT_ENGINES: typing.Any
|
|
13
12
|
bl_context: typing.Any
|
|
14
13
|
bl_label: typing.Any
|
|
@@ -42,7 +41,7 @@ class DATA_PT_context_volume(bpy.types.Panel, DataButtonsPanel, bpy_types._Gener
|
|
|
42
41
|
...
|
|
43
42
|
|
|
44
43
|
class DATA_PT_custom_props_volume(
|
|
45
|
-
|
|
44
|
+
rna_prop_ui.PropertyPanel, DataButtonsPanel, bpy.types.Panel
|
|
46
45
|
):
|
|
47
46
|
"""The subclass should have its own poll function
|
|
48
47
|
and the variable '_context_path' MUST be set.
|
|
@@ -74,7 +73,7 @@ class DATA_PT_custom_props_volume(
|
|
|
74
73
|
"""
|
|
75
74
|
...
|
|
76
75
|
|
|
77
|
-
class DATA_PT_volume_file(bpy.types.Panel
|
|
76
|
+
class DATA_PT_volume_file(DataButtonsPanel, bpy.types.Panel):
|
|
78
77
|
COMPAT_ENGINES: typing.Any
|
|
79
78
|
bl_context: typing.Any
|
|
80
79
|
bl_label: typing.Any
|
|
@@ -106,7 +105,7 @@ class DATA_PT_volume_file(bpy.types.Panel, DataButtonsPanel, bpy_types._GenericU
|
|
|
106
105
|
"""
|
|
107
106
|
...
|
|
108
107
|
|
|
109
|
-
class DATA_PT_volume_grids(bpy.types.Panel
|
|
108
|
+
class DATA_PT_volume_grids(DataButtonsPanel, bpy.types.Panel):
|
|
110
109
|
COMPAT_ENGINES: typing.Any
|
|
111
110
|
bl_context: typing.Any
|
|
112
111
|
bl_label: typing.Any
|
|
@@ -138,7 +137,7 @@ class DATA_PT_volume_grids(bpy.types.Panel, DataButtonsPanel, bpy_types._Generic
|
|
|
138
137
|
"""
|
|
139
138
|
...
|
|
140
139
|
|
|
141
|
-
class DATA_PT_volume_render(bpy.types.Panel
|
|
140
|
+
class DATA_PT_volume_render(DataButtonsPanel, bpy.types.Panel):
|
|
142
141
|
COMPAT_ENGINES: typing.Any
|
|
143
142
|
bl_context: typing.Any
|
|
144
143
|
bl_label: typing.Any
|
|
@@ -170,9 +169,7 @@ class DATA_PT_volume_render(bpy.types.Panel, DataButtonsPanel, bpy_types._Generi
|
|
|
170
169
|
"""
|
|
171
170
|
...
|
|
172
171
|
|
|
173
|
-
class DATA_PT_volume_viewport_display(
|
|
174
|
-
bpy.types.Panel, DataButtonsPanel, bpy_types._GenericUI
|
|
175
|
-
):
|
|
172
|
+
class DATA_PT_volume_viewport_display(DataButtonsPanel, bpy.types.Panel):
|
|
176
173
|
COMPAT_ENGINES: typing.Any
|
|
177
174
|
bl_context: typing.Any
|
|
178
175
|
bl_label: typing.Any
|
|
@@ -204,9 +201,7 @@ class DATA_PT_volume_viewport_display(
|
|
|
204
201
|
"""
|
|
205
202
|
...
|
|
206
203
|
|
|
207
|
-
class DATA_PT_volume_viewport_display_slicing(
|
|
208
|
-
bpy.types.Panel, DataButtonsPanel, bpy_types._GenericUI
|
|
209
|
-
):
|
|
204
|
+
class DATA_PT_volume_viewport_display_slicing(DataButtonsPanel, bpy.types.Panel):
|
|
210
205
|
COMPAT_ENGINES: typing.Any
|
|
211
206
|
bl_context: typing.Any
|
|
212
207
|
bl_label: typing.Any
|
|
@@ -259,7 +254,7 @@ class DataButtonsPanel:
|
|
|
259
254
|
"""
|
|
260
255
|
...
|
|
261
256
|
|
|
262
|
-
class VOLUME_UL_grids(bpy.types.UIList
|
|
257
|
+
class VOLUME_UL_grids(bpy.types.UIList):
|
|
263
258
|
bl_rna: typing.Any
|
|
264
259
|
id_data: typing.Any
|
|
265
260
|
|