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,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 NODE_MT_category_GEO_GROUP(bpy.types.Menu
|
|
9
|
+
class NODE_MT_category_GEO_GROUP(bpy.types.Menu):
|
|
11
10
|
bl_idname: typing.Any
|
|
12
11
|
bl_label: typing.Any
|
|
13
12
|
bl_rna: typing.Any
|
|
@@ -36,7 +35,7 @@ class NODE_MT_category_GEO_GROUP(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
36
35
|
"""
|
|
37
36
|
...
|
|
38
37
|
|
|
39
|
-
class NODE_MT_category_GEO_OUTPUT(bpy.types.Menu
|
|
38
|
+
class NODE_MT_category_GEO_OUTPUT(bpy.types.Menu):
|
|
40
39
|
bl_idname: typing.Any
|
|
41
40
|
bl_label: typing.Any
|
|
42
41
|
bl_rna: typing.Any
|
|
@@ -65,7 +64,7 @@ class NODE_MT_category_GEO_OUTPUT(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
65
64
|
"""
|
|
66
65
|
...
|
|
67
66
|
|
|
68
|
-
class NODE_MT_category_GEO_POINT(bpy.types.Menu
|
|
67
|
+
class NODE_MT_category_GEO_POINT(bpy.types.Menu):
|
|
69
68
|
bl_idname: typing.Any
|
|
70
69
|
bl_label: typing.Any
|
|
71
70
|
bl_rna: typing.Any
|
|
@@ -94,7 +93,7 @@ class NODE_MT_category_GEO_POINT(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
94
93
|
"""
|
|
95
94
|
...
|
|
96
95
|
|
|
97
|
-
class NODE_MT_category_GEO_TEXT(bpy.types.Menu
|
|
96
|
+
class NODE_MT_category_GEO_TEXT(bpy.types.Menu):
|
|
98
97
|
bl_idname: typing.Any
|
|
99
98
|
bl_label: typing.Any
|
|
100
99
|
bl_rna: typing.Any
|
|
@@ -123,7 +122,7 @@ class NODE_MT_category_GEO_TEXT(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
123
122
|
"""
|
|
124
123
|
...
|
|
125
124
|
|
|
126
|
-
class NODE_MT_category_GEO_TEXTURE(bpy.types.Menu
|
|
125
|
+
class NODE_MT_category_GEO_TEXTURE(bpy.types.Menu):
|
|
127
126
|
bl_idname: typing.Any
|
|
128
127
|
bl_label: typing.Any
|
|
129
128
|
bl_rna: typing.Any
|
|
@@ -152,7 +151,7 @@ class NODE_MT_category_GEO_TEXTURE(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
152
151
|
"""
|
|
153
152
|
...
|
|
154
153
|
|
|
155
|
-
class NODE_MT_category_GEO_UTILITIES(bpy.types.Menu
|
|
154
|
+
class NODE_MT_category_GEO_UTILITIES(bpy.types.Menu):
|
|
156
155
|
bl_idname: typing.Any
|
|
157
156
|
bl_label: typing.Any
|
|
158
157
|
bl_rna: typing.Any
|
|
@@ -181,7 +180,7 @@ class NODE_MT_category_GEO_UTILITIES(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
181
180
|
"""
|
|
182
181
|
...
|
|
183
182
|
|
|
184
|
-
class NODE_MT_category_GEO_UTILITIES_DEPRECATED(bpy.types.Menu
|
|
183
|
+
class NODE_MT_category_GEO_UTILITIES_DEPRECATED(bpy.types.Menu):
|
|
185
184
|
bl_idname: typing.Any
|
|
186
185
|
bl_label: typing.Any
|
|
187
186
|
bl_rna: typing.Any
|
|
@@ -210,7 +209,7 @@ class NODE_MT_category_GEO_UTILITIES_DEPRECATED(bpy.types.Menu, bpy_types._Gener
|
|
|
210
209
|
"""
|
|
211
210
|
...
|
|
212
211
|
|
|
213
|
-
class NODE_MT_category_GEO_UTILITIES_FIELD(bpy.types.Menu
|
|
212
|
+
class NODE_MT_category_GEO_UTILITIES_FIELD(bpy.types.Menu):
|
|
214
213
|
bl_idname: typing.Any
|
|
215
214
|
bl_label: typing.Any
|
|
216
215
|
bl_rna: typing.Any
|
|
@@ -239,7 +238,7 @@ class NODE_MT_category_GEO_UTILITIES_FIELD(bpy.types.Menu, bpy_types._GenericUI)
|
|
|
239
238
|
"""
|
|
240
239
|
...
|
|
241
240
|
|
|
242
|
-
class NODE_MT_category_GEO_UTILITIES_MATH(bpy.types.Menu
|
|
241
|
+
class NODE_MT_category_GEO_UTILITIES_MATH(bpy.types.Menu):
|
|
243
242
|
bl_idname: typing.Any
|
|
244
243
|
bl_label: typing.Any
|
|
245
244
|
bl_rna: typing.Any
|
|
@@ -268,7 +267,7 @@ class NODE_MT_category_GEO_UTILITIES_MATH(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
268
267
|
"""
|
|
269
268
|
...
|
|
270
269
|
|
|
271
|
-
class NODE_MT_category_GEO_UTILITIES_ROTATION(bpy.types.Menu
|
|
270
|
+
class NODE_MT_category_GEO_UTILITIES_ROTATION(bpy.types.Menu):
|
|
272
271
|
bl_idname: typing.Any
|
|
273
272
|
bl_label: typing.Any
|
|
274
273
|
bl_rna: typing.Any
|
|
@@ -297,7 +296,7 @@ class NODE_MT_category_GEO_UTILITIES_ROTATION(bpy.types.Menu, bpy_types._Generic
|
|
|
297
296
|
"""
|
|
298
297
|
...
|
|
299
298
|
|
|
300
|
-
class NODE_MT_category_GEO_UV(bpy.types.Menu
|
|
299
|
+
class NODE_MT_category_GEO_UV(bpy.types.Menu):
|
|
301
300
|
bl_idname: typing.Any
|
|
302
301
|
bl_label: typing.Any
|
|
303
302
|
bl_rna: typing.Any
|
|
@@ -326,7 +325,7 @@ class NODE_MT_category_GEO_UV(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
326
325
|
"""
|
|
327
326
|
...
|
|
328
327
|
|
|
329
|
-
class NODE_MT_category_GEO_VECTOR(bpy.types.Menu
|
|
328
|
+
class NODE_MT_category_GEO_VECTOR(bpy.types.Menu):
|
|
330
329
|
bl_idname: typing.Any
|
|
331
330
|
bl_label: typing.Any
|
|
332
331
|
bl_rna: typing.Any
|
|
@@ -355,7 +354,7 @@ class NODE_MT_category_GEO_VECTOR(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
355
354
|
"""
|
|
356
355
|
...
|
|
357
356
|
|
|
358
|
-
class NODE_MT_category_GEO_VOLUME(bpy.types.Menu
|
|
357
|
+
class NODE_MT_category_GEO_VOLUME(bpy.types.Menu):
|
|
359
358
|
bl_idname: typing.Any
|
|
360
359
|
bl_label: typing.Any
|
|
361
360
|
bl_rna: typing.Any
|
|
@@ -385,7 +384,7 @@ class NODE_MT_category_GEO_VOLUME(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
385
384
|
"""
|
|
386
385
|
...
|
|
387
386
|
|
|
388
|
-
class NODE_MT_category_PRIMITIVES_MESH(bpy.types.Menu
|
|
387
|
+
class NODE_MT_category_PRIMITIVES_MESH(bpy.types.Menu):
|
|
389
388
|
bl_idname: typing.Any
|
|
390
389
|
bl_label: typing.Any
|
|
391
390
|
bl_rna: typing.Any
|
|
@@ -414,7 +413,7 @@ class NODE_MT_category_PRIMITIVES_MESH(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
414
413
|
"""
|
|
415
414
|
...
|
|
416
415
|
|
|
417
|
-
class NODE_MT_category_import(bpy.types.Menu
|
|
416
|
+
class NODE_MT_category_import(bpy.types.Menu):
|
|
418
417
|
bl_idname: typing.Any
|
|
419
418
|
bl_label: typing.Any
|
|
420
419
|
bl_rna: typing.Any
|
|
@@ -443,7 +442,7 @@ class NODE_MT_category_import(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
443
442
|
"""
|
|
444
443
|
...
|
|
445
444
|
|
|
446
|
-
class NODE_MT_category_simulation(bpy.types.Menu
|
|
445
|
+
class NODE_MT_category_simulation(bpy.types.Menu):
|
|
447
446
|
bl_idname: typing.Any
|
|
448
447
|
bl_label: typing.Any
|
|
449
448
|
bl_rna: typing.Any
|
|
@@ -472,7 +471,7 @@ class NODE_MT_category_simulation(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
472
471
|
"""
|
|
473
472
|
...
|
|
474
473
|
|
|
475
|
-
class NODE_MT_category_utilities_matrix(bpy.types.Menu
|
|
474
|
+
class NODE_MT_category_utilities_matrix(bpy.types.Menu):
|
|
476
475
|
bl_idname: typing.Any
|
|
477
476
|
bl_label: typing.Any
|
|
478
477
|
bl_rna: typing.Any
|
|
@@ -501,7 +500,7 @@ class NODE_MT_category_utilities_matrix(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
501
500
|
"""
|
|
502
501
|
...
|
|
503
502
|
|
|
504
|
-
class NODE_MT_geometry_node_GEO_ATTRIBUTE(bpy.types.Menu
|
|
503
|
+
class NODE_MT_geometry_node_GEO_ATTRIBUTE(bpy.types.Menu):
|
|
505
504
|
bl_idname: typing.Any
|
|
506
505
|
bl_label: typing.Any
|
|
507
506
|
bl_rna: typing.Any
|
|
@@ -530,7 +529,7 @@ class NODE_MT_geometry_node_GEO_ATTRIBUTE(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
530
529
|
"""
|
|
531
530
|
...
|
|
532
531
|
|
|
533
|
-
class NODE_MT_geometry_node_GEO_COLOR(bpy.types.Menu
|
|
532
|
+
class NODE_MT_geometry_node_GEO_COLOR(bpy.types.Menu):
|
|
534
533
|
bl_idname: typing.Any
|
|
535
534
|
bl_label: typing.Any
|
|
536
535
|
bl_rna: typing.Any
|
|
@@ -559,7 +558,7 @@ class NODE_MT_geometry_node_GEO_COLOR(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
559
558
|
"""
|
|
560
559
|
...
|
|
561
560
|
|
|
562
|
-
class NODE_MT_geometry_node_GEO_CURVE(bpy.types.Menu
|
|
561
|
+
class NODE_MT_geometry_node_GEO_CURVE(bpy.types.Menu):
|
|
563
562
|
bl_idname: typing.Any
|
|
564
563
|
bl_label: typing.Any
|
|
565
564
|
bl_rna: typing.Any
|
|
@@ -588,7 +587,7 @@ class NODE_MT_geometry_node_GEO_CURVE(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
588
587
|
"""
|
|
589
588
|
...
|
|
590
589
|
|
|
591
|
-
class NODE_MT_geometry_node_GEO_CURVE_OPERATIONS(bpy.types.Menu
|
|
590
|
+
class NODE_MT_geometry_node_GEO_CURVE_OPERATIONS(bpy.types.Menu):
|
|
592
591
|
bl_idname: typing.Any
|
|
593
592
|
bl_label: typing.Any
|
|
594
593
|
bl_rna: typing.Any
|
|
@@ -617,7 +616,7 @@ class NODE_MT_geometry_node_GEO_CURVE_OPERATIONS(bpy.types.Menu, bpy_types._Gene
|
|
|
617
616
|
"""
|
|
618
617
|
...
|
|
619
618
|
|
|
620
|
-
class NODE_MT_geometry_node_GEO_CURVE_READ(bpy.types.Menu
|
|
619
|
+
class NODE_MT_geometry_node_GEO_CURVE_READ(bpy.types.Menu):
|
|
621
620
|
bl_idname: typing.Any
|
|
622
621
|
bl_label: typing.Any
|
|
623
622
|
bl_rna: typing.Any
|
|
@@ -646,7 +645,7 @@ class NODE_MT_geometry_node_GEO_CURVE_READ(bpy.types.Menu, bpy_types._GenericUI)
|
|
|
646
645
|
"""
|
|
647
646
|
...
|
|
648
647
|
|
|
649
|
-
class NODE_MT_geometry_node_GEO_CURVE_SAMPLE(bpy.types.Menu
|
|
648
|
+
class NODE_MT_geometry_node_GEO_CURVE_SAMPLE(bpy.types.Menu):
|
|
650
649
|
bl_idname: typing.Any
|
|
651
650
|
bl_label: typing.Any
|
|
652
651
|
bl_rna: typing.Any
|
|
@@ -675,7 +674,7 @@ class NODE_MT_geometry_node_GEO_CURVE_SAMPLE(bpy.types.Menu, bpy_types._GenericU
|
|
|
675
674
|
"""
|
|
676
675
|
...
|
|
677
676
|
|
|
678
|
-
class NODE_MT_geometry_node_GEO_CURVE_WRITE(bpy.types.Menu
|
|
677
|
+
class NODE_MT_geometry_node_GEO_CURVE_WRITE(bpy.types.Menu):
|
|
679
678
|
bl_idname: typing.Any
|
|
680
679
|
bl_label: typing.Any
|
|
681
680
|
bl_rna: typing.Any
|
|
@@ -704,7 +703,7 @@ class NODE_MT_geometry_node_GEO_CURVE_WRITE(bpy.types.Menu, bpy_types._GenericUI
|
|
|
704
703
|
"""
|
|
705
704
|
...
|
|
706
705
|
|
|
707
|
-
class NODE_MT_geometry_node_GEO_GEOMETRY(bpy.types.Menu
|
|
706
|
+
class NODE_MT_geometry_node_GEO_GEOMETRY(bpy.types.Menu):
|
|
708
707
|
bl_idname: typing.Any
|
|
709
708
|
bl_label: typing.Any
|
|
710
709
|
bl_rna: typing.Any
|
|
@@ -733,9 +732,7 @@ class NODE_MT_geometry_node_GEO_GEOMETRY(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
733
732
|
"""
|
|
734
733
|
...
|
|
735
734
|
|
|
736
|
-
class NODE_MT_geometry_node_GEO_GEOMETRY_OPERATIONS(
|
|
737
|
-
bpy.types.Menu, bpy_types._GenericUI
|
|
738
|
-
):
|
|
735
|
+
class NODE_MT_geometry_node_GEO_GEOMETRY_OPERATIONS(bpy.types.Menu):
|
|
739
736
|
bl_idname: typing.Any
|
|
740
737
|
bl_label: typing.Any
|
|
741
738
|
bl_rna: typing.Any
|
|
@@ -764,7 +761,7 @@ class NODE_MT_geometry_node_GEO_GEOMETRY_OPERATIONS(
|
|
|
764
761
|
"""
|
|
765
762
|
...
|
|
766
763
|
|
|
767
|
-
class NODE_MT_geometry_node_GEO_GEOMETRY_READ(bpy.types.Menu
|
|
764
|
+
class NODE_MT_geometry_node_GEO_GEOMETRY_READ(bpy.types.Menu):
|
|
768
765
|
bl_idname: typing.Any
|
|
769
766
|
bl_label: typing.Any
|
|
770
767
|
bl_rna: typing.Any
|
|
@@ -793,7 +790,7 @@ class NODE_MT_geometry_node_GEO_GEOMETRY_READ(bpy.types.Menu, bpy_types._Generic
|
|
|
793
790
|
"""
|
|
794
791
|
...
|
|
795
792
|
|
|
796
|
-
class NODE_MT_geometry_node_GEO_GEOMETRY_SAMPLE(bpy.types.Menu
|
|
793
|
+
class NODE_MT_geometry_node_GEO_GEOMETRY_SAMPLE(bpy.types.Menu):
|
|
797
794
|
bl_idname: typing.Any
|
|
798
795
|
bl_label: typing.Any
|
|
799
796
|
bl_rna: typing.Any
|
|
@@ -822,7 +819,7 @@ class NODE_MT_geometry_node_GEO_GEOMETRY_SAMPLE(bpy.types.Menu, bpy_types._Gener
|
|
|
822
819
|
"""
|
|
823
820
|
...
|
|
824
821
|
|
|
825
|
-
class NODE_MT_geometry_node_GEO_GEOMETRY_WRITE(bpy.types.Menu
|
|
822
|
+
class NODE_MT_geometry_node_GEO_GEOMETRY_WRITE(bpy.types.Menu):
|
|
826
823
|
bl_idname: typing.Any
|
|
827
824
|
bl_label: typing.Any
|
|
828
825
|
bl_rna: typing.Any
|
|
@@ -851,7 +848,7 @@ class NODE_MT_geometry_node_GEO_GEOMETRY_WRITE(bpy.types.Menu, bpy_types._Generi
|
|
|
851
848
|
"""
|
|
852
849
|
...
|
|
853
850
|
|
|
854
|
-
class NODE_MT_geometry_node_GEO_INPUT(bpy.types.Menu
|
|
851
|
+
class NODE_MT_geometry_node_GEO_INPUT(bpy.types.Menu):
|
|
855
852
|
bl_idname: typing.Any
|
|
856
853
|
bl_label: typing.Any
|
|
857
854
|
bl_rna: typing.Any
|
|
@@ -880,7 +877,7 @@ class NODE_MT_geometry_node_GEO_INPUT(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
880
877
|
"""
|
|
881
878
|
...
|
|
882
879
|
|
|
883
|
-
class NODE_MT_geometry_node_GEO_INPUT_CONSTANT(bpy.types.Menu
|
|
880
|
+
class NODE_MT_geometry_node_GEO_INPUT_CONSTANT(bpy.types.Menu):
|
|
884
881
|
bl_idname: typing.Any
|
|
885
882
|
bl_label: typing.Any
|
|
886
883
|
bl_rna: typing.Any
|
|
@@ -910,7 +907,7 @@ class NODE_MT_geometry_node_GEO_INPUT_CONSTANT(bpy.types.Menu, bpy_types._Generi
|
|
|
910
907
|
"""
|
|
911
908
|
...
|
|
912
909
|
|
|
913
|
-
class NODE_MT_geometry_node_GEO_INPUT_GIZMO(bpy.types.Menu
|
|
910
|
+
class NODE_MT_geometry_node_GEO_INPUT_GIZMO(bpy.types.Menu):
|
|
914
911
|
bl_idname: typing.Any
|
|
915
912
|
bl_label: typing.Any
|
|
916
913
|
bl_rna: typing.Any
|
|
@@ -939,7 +936,7 @@ class NODE_MT_geometry_node_GEO_INPUT_GIZMO(bpy.types.Menu, bpy_types._GenericUI
|
|
|
939
936
|
"""
|
|
940
937
|
...
|
|
941
938
|
|
|
942
|
-
class NODE_MT_geometry_node_GEO_INPUT_GROUP(bpy.types.Menu
|
|
939
|
+
class NODE_MT_geometry_node_GEO_INPUT_GROUP(bpy.types.Menu):
|
|
943
940
|
bl_idname: typing.Any
|
|
944
941
|
bl_label: typing.Any
|
|
945
942
|
bl_rna: typing.Any
|
|
@@ -968,7 +965,7 @@ class NODE_MT_geometry_node_GEO_INPUT_GROUP(bpy.types.Menu, bpy_types._GenericUI
|
|
|
968
965
|
"""
|
|
969
966
|
...
|
|
970
967
|
|
|
971
|
-
class NODE_MT_geometry_node_GEO_INPUT_SCENE(bpy.types.Menu
|
|
968
|
+
class NODE_MT_geometry_node_GEO_INPUT_SCENE(bpy.types.Menu):
|
|
972
969
|
bl_idname: typing.Any
|
|
973
970
|
bl_label: typing.Any
|
|
974
971
|
bl_rna: typing.Any
|
|
@@ -997,7 +994,7 @@ class NODE_MT_geometry_node_GEO_INPUT_SCENE(bpy.types.Menu, bpy_types._GenericUI
|
|
|
997
994
|
"""
|
|
998
995
|
...
|
|
999
996
|
|
|
1000
|
-
class NODE_MT_geometry_node_GEO_INSTANCE(bpy.types.Menu
|
|
997
|
+
class NODE_MT_geometry_node_GEO_INSTANCE(bpy.types.Menu):
|
|
1001
998
|
bl_idname: typing.Any
|
|
1002
999
|
bl_label: typing.Any
|
|
1003
1000
|
bl_rna: typing.Any
|
|
@@ -1026,7 +1023,7 @@ class NODE_MT_geometry_node_GEO_INSTANCE(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
1026
1023
|
"""
|
|
1027
1024
|
...
|
|
1028
1025
|
|
|
1029
|
-
class NODE_MT_geometry_node_GEO_MATERIAL(bpy.types.Menu
|
|
1026
|
+
class NODE_MT_geometry_node_GEO_MATERIAL(bpy.types.Menu):
|
|
1030
1027
|
bl_idname: typing.Any
|
|
1031
1028
|
bl_label: typing.Any
|
|
1032
1029
|
bl_rna: typing.Any
|
|
@@ -1055,7 +1052,7 @@ class NODE_MT_geometry_node_GEO_MATERIAL(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
1055
1052
|
"""
|
|
1056
1053
|
...
|
|
1057
1054
|
|
|
1058
|
-
class NODE_MT_geometry_node_GEO_MESH(bpy.types.Menu
|
|
1055
|
+
class NODE_MT_geometry_node_GEO_MESH(bpy.types.Menu):
|
|
1059
1056
|
bl_idname: typing.Any
|
|
1060
1057
|
bl_label: typing.Any
|
|
1061
1058
|
bl_rna: typing.Any
|
|
@@ -1084,7 +1081,7 @@ class NODE_MT_geometry_node_GEO_MESH(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
1084
1081
|
"""
|
|
1085
1082
|
...
|
|
1086
1083
|
|
|
1087
|
-
class NODE_MT_geometry_node_GEO_MESH_OPERATIONS(bpy.types.Menu
|
|
1084
|
+
class NODE_MT_geometry_node_GEO_MESH_OPERATIONS(bpy.types.Menu):
|
|
1088
1085
|
bl_idname: typing.Any
|
|
1089
1086
|
bl_label: typing.Any
|
|
1090
1087
|
bl_rna: typing.Any
|
|
@@ -1113,7 +1110,7 @@ class NODE_MT_geometry_node_GEO_MESH_OPERATIONS(bpy.types.Menu, bpy_types._Gener
|
|
|
1113
1110
|
"""
|
|
1114
1111
|
...
|
|
1115
1112
|
|
|
1116
|
-
class NODE_MT_geometry_node_GEO_MESH_READ(bpy.types.Menu
|
|
1113
|
+
class NODE_MT_geometry_node_GEO_MESH_READ(bpy.types.Menu):
|
|
1117
1114
|
bl_idname: typing.Any
|
|
1118
1115
|
bl_label: typing.Any
|
|
1119
1116
|
bl_rna: typing.Any
|
|
@@ -1142,7 +1139,7 @@ class NODE_MT_geometry_node_GEO_MESH_READ(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
1142
1139
|
"""
|
|
1143
1140
|
...
|
|
1144
1141
|
|
|
1145
|
-
class NODE_MT_geometry_node_GEO_MESH_SAMPLE(bpy.types.Menu
|
|
1142
|
+
class NODE_MT_geometry_node_GEO_MESH_SAMPLE(bpy.types.Menu):
|
|
1146
1143
|
bl_idname: typing.Any
|
|
1147
1144
|
bl_label: typing.Any
|
|
1148
1145
|
bl_rna: typing.Any
|
|
@@ -1171,7 +1168,7 @@ class NODE_MT_geometry_node_GEO_MESH_SAMPLE(bpy.types.Menu, bpy_types._GenericUI
|
|
|
1171
1168
|
"""
|
|
1172
1169
|
...
|
|
1173
1170
|
|
|
1174
|
-
class NODE_MT_geometry_node_GEO_MESH_WRITE(bpy.types.Menu
|
|
1171
|
+
class NODE_MT_geometry_node_GEO_MESH_WRITE(bpy.types.Menu):
|
|
1175
1172
|
bl_idname: typing.Any
|
|
1176
1173
|
bl_label: typing.Any
|
|
1177
1174
|
bl_rna: typing.Any
|
|
@@ -1200,7 +1197,7 @@ class NODE_MT_geometry_node_GEO_MESH_WRITE(bpy.types.Menu, bpy_types._GenericUI)
|
|
|
1200
1197
|
"""
|
|
1201
1198
|
...
|
|
1202
1199
|
|
|
1203
|
-
class NODE_MT_geometry_node_GEO_PRIMITIVES_CURVE(bpy.types.Menu
|
|
1200
|
+
class NODE_MT_geometry_node_GEO_PRIMITIVES_CURVE(bpy.types.Menu):
|
|
1204
1201
|
bl_idname: typing.Any
|
|
1205
1202
|
bl_label: typing.Any
|
|
1206
1203
|
bl_rna: typing.Any
|
|
@@ -1229,7 +1226,7 @@ class NODE_MT_geometry_node_GEO_PRIMITIVES_CURVE(bpy.types.Menu, bpy_types._Gene
|
|
|
1229
1226
|
"""
|
|
1230
1227
|
...
|
|
1231
1228
|
|
|
1232
|
-
class NODE_MT_geometry_node_GEO_VOLUME_OPERATIONS(bpy.types.Menu
|
|
1229
|
+
class NODE_MT_geometry_node_GEO_VOLUME_OPERATIONS(bpy.types.Menu):
|
|
1233
1230
|
bl_idname: typing.Any
|
|
1234
1231
|
bl_label: typing.Any
|
|
1235
1232
|
bl_rna: typing.Any
|
|
@@ -1258,7 +1255,7 @@ class NODE_MT_geometry_node_GEO_VOLUME_OPERATIONS(bpy.types.Menu, bpy_types._Gen
|
|
|
1258
1255
|
"""
|
|
1259
1256
|
...
|
|
1260
1257
|
|
|
1261
|
-
class NODE_MT_geometry_node_GEO_VOLUME_PRIMITIVES(bpy.types.Menu
|
|
1258
|
+
class NODE_MT_geometry_node_GEO_VOLUME_PRIMITIVES(bpy.types.Menu):
|
|
1262
1259
|
bl_idname: typing.Any
|
|
1263
1260
|
bl_label: typing.Any
|
|
1264
1261
|
bl_rna: typing.Any
|
|
@@ -1287,7 +1284,7 @@ class NODE_MT_geometry_node_GEO_VOLUME_PRIMITIVES(bpy.types.Menu, bpy_types._Gen
|
|
|
1287
1284
|
"""
|
|
1288
1285
|
...
|
|
1289
1286
|
|
|
1290
|
-
class NODE_MT_geometry_node_GEO_VOLUME_READ(bpy.types.Menu
|
|
1287
|
+
class NODE_MT_geometry_node_GEO_VOLUME_READ(bpy.types.Menu):
|
|
1291
1288
|
bl_idname: typing.Any
|
|
1292
1289
|
bl_label: typing.Any
|
|
1293
1290
|
bl_rna: typing.Any
|
|
@@ -1316,7 +1313,7 @@ class NODE_MT_geometry_node_GEO_VOLUME_READ(bpy.types.Menu, bpy_types._GenericUI
|
|
|
1316
1313
|
"""
|
|
1317
1314
|
...
|
|
1318
1315
|
|
|
1319
|
-
class NODE_MT_geometry_node_GEO_VOLUME_WRITE(bpy.types.Menu
|
|
1316
|
+
class NODE_MT_geometry_node_GEO_VOLUME_WRITE(bpy.types.Menu):
|
|
1320
1317
|
bl_idname: typing.Any
|
|
1321
1318
|
bl_label: typing.Any
|
|
1322
1319
|
bl_rna: typing.Any
|
|
@@ -1345,7 +1342,7 @@ class NODE_MT_geometry_node_GEO_VOLUME_WRITE(bpy.types.Menu, bpy_types._GenericU
|
|
|
1345
1342
|
"""
|
|
1346
1343
|
...
|
|
1347
1344
|
|
|
1348
|
-
class NODE_MT_geometry_node_add_all(bpy.types.Menu
|
|
1345
|
+
class NODE_MT_geometry_node_add_all(bpy.types.Menu):
|
|
1349
1346
|
bl_idname: typing.Any
|
|
1350
1347
|
bl_label: typing.Any
|
|
1351
1348
|
bl_rna: typing.Any
|
|
@@ -1374,7 +1371,7 @@ class NODE_MT_geometry_node_add_all(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
1374
1371
|
"""
|
|
1375
1372
|
...
|
|
1376
1373
|
|
|
1377
|
-
class NODE_MT_geometry_node_curve_topology(bpy.types.Menu
|
|
1374
|
+
class NODE_MT_geometry_node_curve_topology(bpy.types.Menu):
|
|
1378
1375
|
bl_idname: typing.Any
|
|
1379
1376
|
bl_label: typing.Any
|
|
1380
1377
|
bl_rna: typing.Any
|
|
@@ -1403,7 +1400,7 @@ class NODE_MT_geometry_node_curve_topology(bpy.types.Menu, bpy_types._GenericUI)
|
|
|
1403
1400
|
"""
|
|
1404
1401
|
...
|
|
1405
1402
|
|
|
1406
|
-
class NODE_MT_geometry_node_mesh_topology(bpy.types.Menu
|
|
1403
|
+
class NODE_MT_geometry_node_mesh_topology(bpy.types.Menu):
|
|
1407
1404
|
bl_idname: typing.Any
|
|
1408
1405
|
bl_label: typing.Any
|
|
1409
1406
|
bl_rna: typing.Any
|
|
@@ -1432,7 +1429,7 @@ class NODE_MT_geometry_node_mesh_topology(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
1432
1429
|
"""
|
|
1433
1430
|
...
|
|
1434
1431
|
|
|
1435
|
-
class NODE_MT_geometry_node_volume_sample(bpy.types.Menu
|
|
1432
|
+
class NODE_MT_geometry_node_volume_sample(bpy.types.Menu):
|
|
1436
1433
|
bl_idname: typing.Any
|
|
1437
1434
|
bl_label: typing.Any
|
|
1438
1435
|
bl_rna: 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 NODE_MT_category_shader_color(bpy.types.Menu
|
|
9
|
+
class NODE_MT_category_shader_color(bpy.types.Menu):
|
|
11
10
|
bl_idname: typing.Any
|
|
12
11
|
bl_label: typing.Any
|
|
13
12
|
bl_rna: typing.Any
|
|
@@ -36,7 +35,7 @@ class NODE_MT_category_shader_color(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
36
35
|
"""
|
|
37
36
|
...
|
|
38
37
|
|
|
39
|
-
class NODE_MT_category_shader_converter(bpy.types.Menu
|
|
38
|
+
class NODE_MT_category_shader_converter(bpy.types.Menu):
|
|
40
39
|
bl_idname: typing.Any
|
|
41
40
|
bl_label: typing.Any
|
|
42
41
|
bl_rna: typing.Any
|
|
@@ -65,7 +64,7 @@ class NODE_MT_category_shader_converter(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
65
64
|
"""
|
|
66
65
|
...
|
|
67
66
|
|
|
68
|
-
class NODE_MT_category_shader_group(bpy.types.Menu
|
|
67
|
+
class NODE_MT_category_shader_group(bpy.types.Menu):
|
|
69
68
|
bl_idname: typing.Any
|
|
70
69
|
bl_label: typing.Any
|
|
71
70
|
bl_rna: typing.Any
|
|
@@ -94,7 +93,7 @@ class NODE_MT_category_shader_group(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
94
93
|
"""
|
|
95
94
|
...
|
|
96
95
|
|
|
97
|
-
class NODE_MT_category_shader_input(bpy.types.Menu
|
|
96
|
+
class NODE_MT_category_shader_input(bpy.types.Menu):
|
|
98
97
|
bl_idname: typing.Any
|
|
99
98
|
bl_label: typing.Any
|
|
100
99
|
bl_rna: typing.Any
|
|
@@ -123,7 +122,7 @@ class NODE_MT_category_shader_input(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
123
122
|
"""
|
|
124
123
|
...
|
|
125
124
|
|
|
126
|
-
class NODE_MT_category_shader_output(bpy.types.Menu
|
|
125
|
+
class NODE_MT_category_shader_output(bpy.types.Menu):
|
|
127
126
|
bl_idname: typing.Any
|
|
128
127
|
bl_label: typing.Any
|
|
129
128
|
bl_rna: typing.Any
|
|
@@ -145,7 +144,7 @@ class NODE_MT_category_shader_output(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
145
144
|
"""
|
|
146
145
|
...
|
|
147
146
|
|
|
148
|
-
class NODE_MT_category_shader_script(bpy.types.Menu
|
|
147
|
+
class NODE_MT_category_shader_script(bpy.types.Menu):
|
|
149
148
|
bl_idname: typing.Any
|
|
150
149
|
bl_label: typing.Any
|
|
151
150
|
bl_rna: typing.Any
|
|
@@ -174,7 +173,7 @@ class NODE_MT_category_shader_script(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
174
173
|
"""
|
|
175
174
|
...
|
|
176
175
|
|
|
177
|
-
class NODE_MT_category_shader_shader(bpy.types.Menu
|
|
176
|
+
class NODE_MT_category_shader_shader(bpy.types.Menu):
|
|
178
177
|
bl_idname: typing.Any
|
|
179
178
|
bl_label: typing.Any
|
|
180
179
|
bl_rna: typing.Any
|
|
@@ -203,7 +202,7 @@ class NODE_MT_category_shader_shader(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
203
202
|
"""
|
|
204
203
|
...
|
|
205
204
|
|
|
206
|
-
class NODE_MT_category_shader_texture(bpy.types.Menu
|
|
205
|
+
class NODE_MT_category_shader_texture(bpy.types.Menu):
|
|
207
206
|
bl_idname: typing.Any
|
|
208
207
|
bl_label: typing.Any
|
|
209
208
|
bl_rna: typing.Any
|
|
@@ -232,7 +231,7 @@ class NODE_MT_category_shader_texture(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
232
231
|
"""
|
|
233
232
|
...
|
|
234
233
|
|
|
235
|
-
class NODE_MT_category_shader_vector(bpy.types.Menu
|
|
234
|
+
class NODE_MT_category_shader_vector(bpy.types.Menu):
|
|
236
235
|
bl_idname: typing.Any
|
|
237
236
|
bl_label: typing.Any
|
|
238
237
|
bl_rna: typing.Any
|
|
@@ -261,7 +260,7 @@ class NODE_MT_category_shader_vector(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
261
260
|
"""
|
|
262
261
|
...
|
|
263
262
|
|
|
264
|
-
class NODE_MT_shader_node_add_all(bpy.types.Menu
|
|
263
|
+
class NODE_MT_shader_node_add_all(bpy.types.Menu):
|
|
265
264
|
bl_idname: typing.Any
|
|
266
265
|
bl_label: typing.Any
|
|
267
266
|
bl_rna: 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 NODE_MT_category_texture_color(bpy.types.Menu
|
|
9
|
+
class NODE_MT_category_texture_color(bpy.types.Menu):
|
|
11
10
|
bl_idname: typing.Any
|
|
12
11
|
bl_label: typing.Any
|
|
13
12
|
bl_rna: typing.Any
|
|
@@ -36,7 +35,7 @@ class NODE_MT_category_texture_color(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
36
35
|
"""
|
|
37
36
|
...
|
|
38
37
|
|
|
39
|
-
class NODE_MT_category_texture_converter(bpy.types.Menu
|
|
38
|
+
class NODE_MT_category_texture_converter(bpy.types.Menu):
|
|
40
39
|
bl_idname: typing.Any
|
|
41
40
|
bl_label: typing.Any
|
|
42
41
|
bl_rna: typing.Any
|
|
@@ -65,7 +64,7 @@ class NODE_MT_category_texture_converter(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
65
64
|
"""
|
|
66
65
|
...
|
|
67
66
|
|
|
68
|
-
class NODE_MT_category_texture_distort(bpy.types.Menu
|
|
67
|
+
class NODE_MT_category_texture_distort(bpy.types.Menu):
|
|
69
68
|
bl_idname: typing.Any
|
|
70
69
|
bl_label: typing.Any
|
|
71
70
|
bl_rna: typing.Any
|
|
@@ -94,7 +93,7 @@ class NODE_MT_category_texture_distort(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
94
93
|
"""
|
|
95
94
|
...
|
|
96
95
|
|
|
97
|
-
class NODE_MT_category_texture_group(bpy.types.Menu
|
|
96
|
+
class NODE_MT_category_texture_group(bpy.types.Menu):
|
|
98
97
|
bl_idname: typing.Any
|
|
99
98
|
bl_label: typing.Any
|
|
100
99
|
bl_rna: typing.Any
|
|
@@ -123,7 +122,7 @@ class NODE_MT_category_texture_group(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
123
122
|
"""
|
|
124
123
|
...
|
|
125
124
|
|
|
126
|
-
class NODE_MT_category_texture_input(bpy.types.Menu
|
|
125
|
+
class NODE_MT_category_texture_input(bpy.types.Menu):
|
|
127
126
|
bl_idname: typing.Any
|
|
128
127
|
bl_label: typing.Any
|
|
129
128
|
bl_rna: typing.Any
|
|
@@ -152,7 +151,7 @@ class NODE_MT_category_texture_input(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
152
151
|
"""
|
|
153
152
|
...
|
|
154
153
|
|
|
155
|
-
class NODE_MT_category_texture_output(bpy.types.Menu
|
|
154
|
+
class NODE_MT_category_texture_output(bpy.types.Menu):
|
|
156
155
|
bl_idname: typing.Any
|
|
157
156
|
bl_label: typing.Any
|
|
158
157
|
bl_rna: typing.Any
|
|
@@ -181,7 +180,7 @@ class NODE_MT_category_texture_output(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
181
180
|
"""
|
|
182
181
|
...
|
|
183
182
|
|
|
184
|
-
class NODE_MT_category_texture_pattern(bpy.types.Menu
|
|
183
|
+
class NODE_MT_category_texture_pattern(bpy.types.Menu):
|
|
185
184
|
bl_idname: typing.Any
|
|
186
185
|
bl_label: typing.Any
|
|
187
186
|
bl_rna: typing.Any
|
|
@@ -210,7 +209,7 @@ class NODE_MT_category_texture_pattern(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
210
209
|
"""
|
|
211
210
|
...
|
|
212
211
|
|
|
213
|
-
class NODE_MT_category_texture_texture(bpy.types.Menu
|
|
212
|
+
class NODE_MT_category_texture_texture(bpy.types.Menu):
|
|
214
213
|
bl_idname: typing.Any
|
|
215
214
|
bl_label: typing.Any
|
|
216
215
|
bl_rna: typing.Any
|
|
@@ -239,7 +238,7 @@ class NODE_MT_category_texture_texture(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
239
238
|
"""
|
|
240
239
|
...
|
|
241
240
|
|
|
242
|
-
class NODE_MT_texture_node_add_all(bpy.types.Menu
|
|
241
|
+
class NODE_MT_texture_node_add_all(bpy.types.Menu):
|
|
243
242
|
bl_idname: typing.Any
|
|
244
243
|
bl_label: typing.Any
|
|
245
244
|
bl_rna: 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 COLLECTION_MT_context_menu_instance_offset(bpy.types.Menu
|
|
10
|
+
class COLLECTION_MT_context_menu_instance_offset(bpy.types.Menu):
|
|
12
11
|
bl_label: typing.Any
|
|
13
12
|
bl_rna: typing.Any
|
|
14
13
|
id_data: typing.Any
|
|
@@ -37,10 +36,7 @@ class COLLECTION_MT_context_menu_instance_offset(bpy.types.Menu, bpy_types._Gene
|
|
|
37
36
|
...
|
|
38
37
|
|
|
39
38
|
class COLLECTION_PT_collection_custom_props(
|
|
40
|
-
bpy.types.Panel
|
|
41
|
-
CollectionButtonsPanel,
|
|
42
|
-
rna_prop_ui.PropertyPanel,
|
|
43
|
-
bpy_types._GenericUI,
|
|
39
|
+
rna_prop_ui.PropertyPanel, CollectionButtonsPanel, bpy.types.Panel
|
|
44
40
|
):
|
|
45
41
|
"""The subclass should have its own poll function
|
|
46
42
|
and the variable '_context_path' MUST be set.
|
|
@@ -71,9 +67,7 @@ class COLLECTION_PT_collection_custom_props(
|
|
|
71
67
|
"""
|
|
72
68
|
...
|
|
73
69
|
|
|
74
|
-
class COLLECTION_PT_collection_flags(
|
|
75
|
-
bpy.types.Panel, CollectionButtonsPanel, bpy_types._GenericUI
|
|
76
|
-
):
|
|
70
|
+
class COLLECTION_PT_collection_flags(CollectionButtonsPanel, bpy.types.Panel):
|
|
77
71
|
bl_context: typing.Any
|
|
78
72
|
bl_label: typing.Any
|
|
79
73
|
bl_region_type: typing.Any
|
|
@@ -104,9 +98,7 @@ class COLLECTION_PT_collection_flags(
|
|
|
104
98
|
"""
|
|
105
99
|
...
|
|
106
100
|
|
|
107
|
-
class COLLECTION_PT_exporters(
|
|
108
|
-
bpy.types.Panel, CollectionButtonsPanel, bpy_types._GenericUI
|
|
109
|
-
):
|
|
101
|
+
class COLLECTION_PT_exporters(CollectionButtonsPanel, bpy.types.Panel):
|
|
110
102
|
bl_context: typing.Any
|
|
111
103
|
bl_label: typing.Any
|
|
112
104
|
bl_region_type: typing.Any
|
|
@@ -137,9 +129,7 @@ class COLLECTION_PT_exporters(
|
|
|
137
129
|
"""
|
|
138
130
|
...
|
|
139
131
|
|
|
140
|
-
class COLLECTION_PT_instancing(
|
|
141
|
-
bpy.types.Panel, CollectionButtonsPanel, bpy_types._GenericUI
|
|
142
|
-
):
|
|
132
|
+
class COLLECTION_PT_instancing(CollectionButtonsPanel, bpy.types.Panel):
|
|
143
133
|
bl_context: typing.Any
|
|
144
134
|
bl_label: typing.Any
|
|
145
135
|
bl_region_type: typing.Any
|
|
@@ -170,9 +160,7 @@ class COLLECTION_PT_instancing(
|
|
|
170
160
|
"""
|
|
171
161
|
...
|
|
172
162
|
|
|
173
|
-
class COLLECTION_PT_lineart_collection(
|
|
174
|
-
bpy.types.Panel, CollectionButtonsPanel, bpy_types._GenericUI
|
|
175
|
-
):
|
|
163
|
+
class COLLECTION_PT_lineart_collection(CollectionButtonsPanel, bpy.types.Panel):
|
|
176
164
|
bl_context: typing.Any
|
|
177
165
|
bl_label: typing.Any
|
|
178
166
|
bl_order: typing.Any
|