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
|
@@ -1,8 +1,6 @@
|
|
|
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
6
|
|
|
@@ -19,9 +17,7 @@ class CompositorPerformanceButtonsPanel:
|
|
|
19
17
|
"""
|
|
20
18
|
...
|
|
21
19
|
|
|
22
|
-
class RENDER_PT_color_management(
|
|
23
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
24
|
-
):
|
|
20
|
+
class RENDER_PT_color_management(bpy.types.Panel, bpy_types._GenericUI):
|
|
25
21
|
COMPAT_ENGINES: typing.Any
|
|
26
22
|
bl_context: typing.Any
|
|
27
23
|
bl_label: typing.Any
|
|
@@ -55,9 +51,7 @@ class RENDER_PT_color_management(
|
|
|
55
51
|
"""
|
|
56
52
|
...
|
|
57
53
|
|
|
58
|
-
class RENDER_PT_color_management_curves(
|
|
59
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
60
|
-
):
|
|
54
|
+
class RENDER_PT_color_management_curves(bpy.types.Panel, bpy_types._GenericUI):
|
|
61
55
|
COMPAT_ENGINES: typing.Any
|
|
62
56
|
bl_context: typing.Any
|
|
63
57
|
bl_label: typing.Any
|
|
@@ -99,7 +93,7 @@ class RENDER_PT_color_management_curves(
|
|
|
99
93
|
...
|
|
100
94
|
|
|
101
95
|
class RENDER_PT_color_management_display_settings(
|
|
102
|
-
bpy.types.Panel,
|
|
96
|
+
bpy.types.Panel, bpy_types._GenericUI
|
|
103
97
|
):
|
|
104
98
|
COMPAT_ENGINES: typing.Any
|
|
105
99
|
bl_context: typing.Any
|
|
@@ -134,9 +128,7 @@ class RENDER_PT_color_management_display_settings(
|
|
|
134
128
|
"""
|
|
135
129
|
...
|
|
136
130
|
|
|
137
|
-
class RENDER_PT_color_management_white_balance(
|
|
138
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
139
|
-
):
|
|
131
|
+
class RENDER_PT_color_management_white_balance(bpy.types.Panel, bpy_types._GenericUI):
|
|
140
132
|
COMPAT_ENGINES: typing.Any
|
|
141
133
|
bl_context: typing.Any
|
|
142
134
|
bl_label: typing.Any
|
|
@@ -185,7 +177,7 @@ class RENDER_PT_color_management_white_balance(
|
|
|
185
177
|
...
|
|
186
178
|
|
|
187
179
|
class RENDER_PT_color_management_white_balance_presets(
|
|
188
|
-
bpy.types.Panel,
|
|
180
|
+
bpy.types.Panel, bpy_types._GenericUI
|
|
189
181
|
):
|
|
190
182
|
bl_label: typing.Any
|
|
191
183
|
bl_region_type: typing.Any
|
|
@@ -245,9 +237,7 @@ class RENDER_PT_context(bpy.types.Panel, bpy_types._GenericUI):
|
|
|
245
237
|
"""
|
|
246
238
|
...
|
|
247
239
|
|
|
248
|
-
class RENDER_PT_eevee_ambient_occlusion(
|
|
249
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
250
|
-
):
|
|
240
|
+
class RENDER_PT_eevee_ambient_occlusion(bpy.types.Panel, bpy_types._GenericUI):
|
|
251
241
|
COMPAT_ENGINES: typing.Any
|
|
252
242
|
bl_context: typing.Any
|
|
253
243
|
bl_label: typing.Any
|
|
@@ -295,7 +285,7 @@ class RENDER_PT_eevee_ambient_occlusion(
|
|
|
295
285
|
"""
|
|
296
286
|
...
|
|
297
287
|
|
|
298
|
-
class RENDER_PT_eevee_bloom(bpy.types.Panel,
|
|
288
|
+
class RENDER_PT_eevee_bloom(bpy.types.Panel, bpy_types._GenericUI):
|
|
299
289
|
COMPAT_ENGINES: typing.Any
|
|
300
290
|
bl_context: typing.Any
|
|
301
291
|
bl_label: typing.Any
|
|
@@ -343,9 +333,7 @@ class RENDER_PT_eevee_bloom(bpy.types.Panel, RenderButtonsPanel, bpy_types._Gene
|
|
|
343
333
|
"""
|
|
344
334
|
...
|
|
345
335
|
|
|
346
|
-
class RENDER_PT_eevee_depth_of_field(
|
|
347
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
348
|
-
):
|
|
336
|
+
class RENDER_PT_eevee_depth_of_field(bpy.types.Panel, bpy_types._GenericUI):
|
|
349
337
|
COMPAT_ENGINES: typing.Any
|
|
350
338
|
bl_context: typing.Any
|
|
351
339
|
bl_label: typing.Any
|
|
@@ -386,7 +374,7 @@ class RENDER_PT_eevee_depth_of_field(
|
|
|
386
374
|
"""
|
|
387
375
|
...
|
|
388
376
|
|
|
389
|
-
class RENDER_PT_eevee_film(bpy.types.Panel,
|
|
377
|
+
class RENDER_PT_eevee_film(bpy.types.Panel, bpy_types._GenericUI):
|
|
390
378
|
COMPAT_ENGINES: typing.Any
|
|
391
379
|
bl_context: typing.Any
|
|
392
380
|
bl_label: typing.Any
|
|
@@ -427,7 +415,7 @@ class RENDER_PT_eevee_film(bpy.types.Panel, RenderButtonsPanel, bpy_types._Gener
|
|
|
427
415
|
"""
|
|
428
416
|
...
|
|
429
417
|
|
|
430
|
-
class RENDER_PT_eevee_hair(bpy.types.Panel,
|
|
418
|
+
class RENDER_PT_eevee_hair(bpy.types.Panel, bpy_types._GenericUI):
|
|
431
419
|
COMPAT_ENGINES: typing.Any
|
|
432
420
|
bl_context: typing.Any
|
|
433
421
|
bl_label: typing.Any
|
|
@@ -468,9 +456,7 @@ class RENDER_PT_eevee_hair(bpy.types.Panel, RenderButtonsPanel, bpy_types._Gener
|
|
|
468
456
|
"""
|
|
469
457
|
...
|
|
470
458
|
|
|
471
|
-
class RENDER_PT_eevee_indirect_lighting(
|
|
472
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
473
|
-
):
|
|
459
|
+
class RENDER_PT_eevee_indirect_lighting(bpy.types.Panel, bpy_types._GenericUI):
|
|
474
460
|
COMPAT_ENGINES: typing.Any
|
|
475
461
|
bl_context: typing.Any
|
|
476
462
|
bl_label: typing.Any
|
|
@@ -511,9 +497,7 @@ class RENDER_PT_eevee_indirect_lighting(
|
|
|
511
497
|
"""
|
|
512
498
|
...
|
|
513
499
|
|
|
514
|
-
class RENDER_PT_eevee_indirect_lighting_display(
|
|
515
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
516
|
-
):
|
|
500
|
+
class RENDER_PT_eevee_indirect_lighting_display(bpy.types.Panel, bpy_types._GenericUI):
|
|
517
501
|
COMPAT_ENGINES: typing.Any
|
|
518
502
|
bl_context: typing.Any
|
|
519
503
|
bl_label: typing.Any
|
|
@@ -554,9 +538,7 @@ class RENDER_PT_eevee_indirect_lighting_display(
|
|
|
554
538
|
"""
|
|
555
539
|
...
|
|
556
540
|
|
|
557
|
-
class RENDER_PT_eevee_motion_blur(
|
|
558
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
559
|
-
):
|
|
541
|
+
class RENDER_PT_eevee_motion_blur(bpy.types.Panel, bpy_types._GenericUI):
|
|
560
542
|
COMPAT_ENGINES: typing.Any
|
|
561
543
|
bl_context: typing.Any
|
|
562
544
|
bl_label: typing.Any
|
|
@@ -604,9 +586,7 @@ class RENDER_PT_eevee_motion_blur(
|
|
|
604
586
|
"""
|
|
605
587
|
...
|
|
606
588
|
|
|
607
|
-
class RENDER_PT_eevee_next_clamping(
|
|
608
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
609
|
-
):
|
|
589
|
+
class RENDER_PT_eevee_next_clamping(bpy.types.Panel, bpy_types._GenericUI):
|
|
610
590
|
COMPAT_ENGINES: typing.Any
|
|
611
591
|
bl_context: typing.Any
|
|
612
592
|
bl_label: typing.Any
|
|
@@ -647,9 +627,7 @@ class RENDER_PT_eevee_next_clamping(
|
|
|
647
627
|
"""
|
|
648
628
|
...
|
|
649
629
|
|
|
650
|
-
class RENDER_PT_eevee_next_clamping_surface(
|
|
651
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
652
|
-
):
|
|
630
|
+
class RENDER_PT_eevee_next_clamping_surface(bpy.types.Panel, bpy_types._GenericUI):
|
|
653
631
|
COMPAT_ENGINES: typing.Any
|
|
654
632
|
bl_context: typing.Any
|
|
655
633
|
bl_label: typing.Any
|
|
@@ -690,9 +668,7 @@ class RENDER_PT_eevee_next_clamping_surface(
|
|
|
690
668
|
"""
|
|
691
669
|
...
|
|
692
670
|
|
|
693
|
-
class RENDER_PT_eevee_next_clamping_volume(
|
|
694
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
695
|
-
):
|
|
671
|
+
class RENDER_PT_eevee_next_clamping_volume(bpy.types.Panel, bpy_types._GenericUI):
|
|
696
672
|
COMPAT_ENGINES: typing.Any
|
|
697
673
|
bl_context: typing.Any
|
|
698
674
|
bl_label: typing.Any
|
|
@@ -733,9 +709,7 @@ class RENDER_PT_eevee_next_clamping_volume(
|
|
|
733
709
|
"""
|
|
734
710
|
...
|
|
735
711
|
|
|
736
|
-
class RENDER_PT_eevee_next_denoise(
|
|
737
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
738
|
-
):
|
|
712
|
+
class RENDER_PT_eevee_next_denoise(bpy.types.Panel, bpy_types._GenericUI):
|
|
739
713
|
COMPAT_ENGINES: typing.Any
|
|
740
714
|
bl_context: typing.Any
|
|
741
715
|
bl_label: typing.Any
|
|
@@ -784,9 +758,7 @@ class RENDER_PT_eevee_next_denoise(
|
|
|
784
758
|
"""
|
|
785
759
|
...
|
|
786
760
|
|
|
787
|
-
class RENDER_PT_eevee_next_depth_of_field(
|
|
788
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
789
|
-
):
|
|
761
|
+
class RENDER_PT_eevee_next_depth_of_field(bpy.types.Panel, bpy_types._GenericUI):
|
|
790
762
|
COMPAT_ENGINES: typing.Any
|
|
791
763
|
bl_context: typing.Any
|
|
792
764
|
bl_label: typing.Any
|
|
@@ -827,9 +799,7 @@ class RENDER_PT_eevee_next_depth_of_field(
|
|
|
827
799
|
"""
|
|
828
800
|
...
|
|
829
801
|
|
|
830
|
-
class RENDER_PT_eevee_next_film(
|
|
831
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
832
|
-
):
|
|
802
|
+
class RENDER_PT_eevee_next_film(bpy.types.Panel, bpy_types._GenericUI):
|
|
833
803
|
COMPAT_ENGINES: typing.Any
|
|
834
804
|
bl_context: typing.Any
|
|
835
805
|
bl_label: typing.Any
|
|
@@ -870,9 +840,7 @@ class RENDER_PT_eevee_next_film(
|
|
|
870
840
|
"""
|
|
871
841
|
...
|
|
872
842
|
|
|
873
|
-
class RENDER_PT_eevee_next_gi_approximation(
|
|
874
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
875
|
-
):
|
|
843
|
+
class RENDER_PT_eevee_next_gi_approximation(bpy.types.Panel, bpy_types._GenericUI):
|
|
876
844
|
COMPAT_ENGINES: typing.Any
|
|
877
845
|
bl_context: typing.Any
|
|
878
846
|
bl_label: typing.Any
|
|
@@ -914,9 +882,7 @@ class RENDER_PT_eevee_next_gi_approximation(
|
|
|
914
882
|
"""
|
|
915
883
|
...
|
|
916
884
|
|
|
917
|
-
class RENDER_PT_eevee_next_motion_blur(
|
|
918
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
919
|
-
):
|
|
885
|
+
class RENDER_PT_eevee_next_motion_blur(bpy.types.Panel, bpy_types._GenericUI):
|
|
920
886
|
COMPAT_ENGINES: typing.Any
|
|
921
887
|
bl_context: typing.Any
|
|
922
888
|
bl_label: typing.Any
|
|
@@ -964,9 +930,7 @@ class RENDER_PT_eevee_next_motion_blur(
|
|
|
964
930
|
"""
|
|
965
931
|
...
|
|
966
932
|
|
|
967
|
-
class RENDER_PT_eevee_next_motion_blur_curve(
|
|
968
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
969
|
-
):
|
|
933
|
+
class RENDER_PT_eevee_next_motion_blur_curve(bpy.types.Panel, bpy_types._GenericUI):
|
|
970
934
|
COMPAT_ENGINES: typing.Any
|
|
971
935
|
bl_context: typing.Any
|
|
972
936
|
bl_label: typing.Any
|
|
@@ -1000,9 +964,7 @@ class RENDER_PT_eevee_next_motion_blur_curve(
|
|
|
1000
964
|
"""
|
|
1001
965
|
...
|
|
1002
966
|
|
|
1003
|
-
class RENDER_PT_eevee_next_raytracing(
|
|
1004
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
1005
|
-
):
|
|
967
|
+
class RENDER_PT_eevee_next_raytracing(bpy.types.Panel, bpy_types._GenericUI):
|
|
1006
968
|
COMPAT_ENGINES: typing.Any
|
|
1007
969
|
bl_context: typing.Any
|
|
1008
970
|
bl_label: typing.Any
|
|
@@ -1057,9 +1019,7 @@ class RENDER_PT_eevee_next_raytracing(
|
|
|
1057
1019
|
"""
|
|
1058
1020
|
...
|
|
1059
1021
|
|
|
1060
|
-
class RENDER_PT_eevee_next_raytracing_presets(
|
|
1061
|
-
bpy.types.Panel, bl_ui.utils.PresetPanel, bpy_types._GenericUI
|
|
1062
|
-
):
|
|
1022
|
+
class RENDER_PT_eevee_next_raytracing_presets(bpy.types.Panel, bpy_types._GenericUI):
|
|
1063
1023
|
bl_label: typing.Any
|
|
1064
1024
|
bl_region_type: typing.Any
|
|
1065
1025
|
bl_rna: typing.Any
|
|
@@ -1085,9 +1045,7 @@ class RENDER_PT_eevee_next_raytracing_presets(
|
|
|
1085
1045
|
"""
|
|
1086
1046
|
...
|
|
1087
1047
|
|
|
1088
|
-
class RENDER_PT_eevee_next_sampling(
|
|
1089
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
1090
|
-
):
|
|
1048
|
+
class RENDER_PT_eevee_next_sampling(bpy.types.Panel, bpy_types._GenericUI):
|
|
1091
1049
|
COMPAT_ENGINES: typing.Any
|
|
1092
1050
|
bl_context: typing.Any
|
|
1093
1051
|
bl_label: typing.Any
|
|
@@ -1127,9 +1085,7 @@ class RENDER_PT_eevee_next_sampling(
|
|
|
1127
1085
|
"""
|
|
1128
1086
|
...
|
|
1129
1087
|
|
|
1130
|
-
class RENDER_PT_eevee_next_sampling_advanced(
|
|
1131
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
1132
|
-
):
|
|
1088
|
+
class RENDER_PT_eevee_next_sampling_advanced(bpy.types.Panel, bpy_types._GenericUI):
|
|
1133
1089
|
COMPAT_ENGINES: typing.Any
|
|
1134
1090
|
bl_context: typing.Any
|
|
1135
1091
|
bl_label: typing.Any
|
|
@@ -1171,9 +1127,7 @@ class RENDER_PT_eevee_next_sampling_advanced(
|
|
|
1171
1127
|
"""
|
|
1172
1128
|
...
|
|
1173
1129
|
|
|
1174
|
-
class RENDER_PT_eevee_next_sampling_render(
|
|
1175
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
1176
|
-
):
|
|
1130
|
+
class RENDER_PT_eevee_next_sampling_render(bpy.types.Panel, bpy_types._GenericUI):
|
|
1177
1131
|
COMPAT_ENGINES: typing.Any
|
|
1178
1132
|
bl_context: typing.Any
|
|
1179
1133
|
bl_label: typing.Any
|
|
@@ -1214,9 +1168,7 @@ class RENDER_PT_eevee_next_sampling_render(
|
|
|
1214
1168
|
"""
|
|
1215
1169
|
...
|
|
1216
1170
|
|
|
1217
|
-
class RENDER_PT_eevee_next_sampling_shadows(
|
|
1218
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
1219
|
-
):
|
|
1171
|
+
class RENDER_PT_eevee_next_sampling_shadows(bpy.types.Panel, bpy_types._GenericUI):
|
|
1220
1172
|
COMPAT_ENGINES: typing.Any
|
|
1221
1173
|
bl_context: typing.Any
|
|
1222
1174
|
bl_label: typing.Any
|
|
@@ -1265,9 +1217,7 @@ class RENDER_PT_eevee_next_sampling_shadows(
|
|
|
1265
1217
|
"""
|
|
1266
1218
|
...
|
|
1267
1219
|
|
|
1268
|
-
class RENDER_PT_eevee_next_sampling_viewport(
|
|
1269
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
1270
|
-
):
|
|
1220
|
+
class RENDER_PT_eevee_next_sampling_viewport(bpy.types.Panel, bpy_types._GenericUI):
|
|
1271
1221
|
COMPAT_ENGINES: typing.Any
|
|
1272
1222
|
bl_context: typing.Any
|
|
1273
1223
|
bl_label: typing.Any
|
|
@@ -1308,9 +1258,7 @@ class RENDER_PT_eevee_next_sampling_viewport(
|
|
|
1308
1258
|
"""
|
|
1309
1259
|
...
|
|
1310
1260
|
|
|
1311
|
-
class RENDER_PT_eevee_next_screen_trace(
|
|
1312
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
1313
|
-
):
|
|
1261
|
+
class RENDER_PT_eevee_next_screen_trace(bpy.types.Panel, bpy_types._GenericUI):
|
|
1314
1262
|
COMPAT_ENGINES: typing.Any
|
|
1315
1263
|
bl_context: typing.Any
|
|
1316
1264
|
bl_label: typing.Any
|
|
@@ -1352,9 +1300,7 @@ class RENDER_PT_eevee_next_screen_trace(
|
|
|
1352
1300
|
"""
|
|
1353
1301
|
...
|
|
1354
1302
|
|
|
1355
|
-
class RENDER_PT_eevee_next_volumes(
|
|
1356
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
1357
|
-
):
|
|
1303
|
+
class RENDER_PT_eevee_next_volumes(bpy.types.Panel, bpy_types._GenericUI):
|
|
1358
1304
|
COMPAT_ENGINES: typing.Any
|
|
1359
1305
|
bl_context: typing.Any
|
|
1360
1306
|
bl_label: typing.Any
|
|
@@ -1395,9 +1341,7 @@ class RENDER_PT_eevee_next_volumes(
|
|
|
1395
1341
|
"""
|
|
1396
1342
|
...
|
|
1397
1343
|
|
|
1398
|
-
class RENDER_PT_eevee_next_volumes_range(
|
|
1399
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
1400
|
-
):
|
|
1344
|
+
class RENDER_PT_eevee_next_volumes_range(bpy.types.Panel, bpy_types._GenericUI):
|
|
1401
1345
|
COMPAT_ENGINES: typing.Any
|
|
1402
1346
|
bl_context: typing.Any
|
|
1403
1347
|
bl_label: typing.Any
|
|
@@ -1446,9 +1390,7 @@ class RENDER_PT_eevee_next_volumes_range(
|
|
|
1446
1390
|
"""
|
|
1447
1391
|
...
|
|
1448
1392
|
|
|
1449
|
-
class RENDER_PT_eevee_performance(
|
|
1450
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
1451
|
-
):
|
|
1393
|
+
class RENDER_PT_eevee_performance(bpy.types.Panel, bpy_types._GenericUI):
|
|
1452
1394
|
COMPAT_ENGINES: typing.Any
|
|
1453
1395
|
bl_context: typing.Any
|
|
1454
1396
|
bl_label: typing.Any
|
|
@@ -1489,12 +1431,7 @@ class RENDER_PT_eevee_performance(
|
|
|
1489
1431
|
"""
|
|
1490
1432
|
...
|
|
1491
1433
|
|
|
1492
|
-
class RENDER_PT_eevee_performance_compositor(
|
|
1493
|
-
bpy.types.Panel,
|
|
1494
|
-
RenderButtonsPanel,
|
|
1495
|
-
CompositorPerformanceButtonsPanel,
|
|
1496
|
-
bpy_types._GenericUI,
|
|
1497
|
-
):
|
|
1434
|
+
class RENDER_PT_eevee_performance_compositor(bpy.types.Panel, bpy_types._GenericUI):
|
|
1498
1435
|
COMPAT_ENGINES: typing.Any
|
|
1499
1436
|
bl_context: typing.Any
|
|
1500
1437
|
bl_label: typing.Any
|
|
@@ -1521,9 +1458,7 @@ class RENDER_PT_eevee_performance_compositor(
|
|
|
1521
1458
|
"""
|
|
1522
1459
|
...
|
|
1523
1460
|
|
|
1524
|
-
class RENDER_PT_eevee_performance_memory(
|
|
1525
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
1526
|
-
):
|
|
1461
|
+
class RENDER_PT_eevee_performance_memory(bpy.types.Panel, bpy_types._GenericUI):
|
|
1527
1462
|
COMPAT_ENGINES: typing.Any
|
|
1528
1463
|
bl_context: typing.Any
|
|
1529
1464
|
bl_label: typing.Any
|
|
@@ -1565,9 +1500,7 @@ class RENDER_PT_eevee_performance_memory(
|
|
|
1565
1500
|
"""
|
|
1566
1501
|
...
|
|
1567
1502
|
|
|
1568
|
-
class RENDER_PT_eevee_performance_viewport(
|
|
1569
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
1570
|
-
):
|
|
1503
|
+
class RENDER_PT_eevee_performance_viewport(bpy.types.Panel, bpy_types._GenericUI):
|
|
1571
1504
|
COMPAT_ENGINES: typing.Any
|
|
1572
1505
|
bl_context: typing.Any
|
|
1573
1506
|
bl_label: typing.Any
|
|
@@ -1609,9 +1542,7 @@ class RENDER_PT_eevee_performance_viewport(
|
|
|
1609
1542
|
"""
|
|
1610
1543
|
...
|
|
1611
1544
|
|
|
1612
|
-
class RENDER_PT_eevee_sampling(
|
|
1613
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
1614
|
-
):
|
|
1545
|
+
class RENDER_PT_eevee_sampling(bpy.types.Panel, bpy_types._GenericUI):
|
|
1615
1546
|
COMPAT_ENGINES: typing.Any
|
|
1616
1547
|
bl_context: typing.Any
|
|
1617
1548
|
bl_label: typing.Any
|
|
@@ -1651,9 +1582,7 @@ class RENDER_PT_eevee_sampling(
|
|
|
1651
1582
|
"""
|
|
1652
1583
|
...
|
|
1653
1584
|
|
|
1654
|
-
class RENDER_PT_eevee_screen_space_reflections(
|
|
1655
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
1656
|
-
):
|
|
1585
|
+
class RENDER_PT_eevee_screen_space_reflections(bpy.types.Panel, bpy_types._GenericUI):
|
|
1657
1586
|
COMPAT_ENGINES: typing.Any
|
|
1658
1587
|
bl_context: typing.Any
|
|
1659
1588
|
bl_label: typing.Any
|
|
@@ -1701,9 +1630,7 @@ class RENDER_PT_eevee_screen_space_reflections(
|
|
|
1701
1630
|
"""
|
|
1702
1631
|
...
|
|
1703
1632
|
|
|
1704
|
-
class RENDER_PT_eevee_shadows(
|
|
1705
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
1706
|
-
):
|
|
1633
|
+
class RENDER_PT_eevee_shadows(bpy.types.Panel, bpy_types._GenericUI):
|
|
1707
1634
|
COMPAT_ENGINES: typing.Any
|
|
1708
1635
|
bl_context: typing.Any
|
|
1709
1636
|
bl_label: typing.Any
|
|
@@ -1744,9 +1671,7 @@ class RENDER_PT_eevee_shadows(
|
|
|
1744
1671
|
"""
|
|
1745
1672
|
...
|
|
1746
1673
|
|
|
1747
|
-
class RENDER_PT_eevee_subsurface_scattering(
|
|
1748
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
1749
|
-
):
|
|
1674
|
+
class RENDER_PT_eevee_subsurface_scattering(bpy.types.Panel, bpy_types._GenericUI):
|
|
1750
1675
|
COMPAT_ENGINES: typing.Any
|
|
1751
1676
|
bl_context: typing.Any
|
|
1752
1677
|
bl_label: typing.Any
|
|
@@ -1787,9 +1712,7 @@ class RENDER_PT_eevee_subsurface_scattering(
|
|
|
1787
1712
|
"""
|
|
1788
1713
|
...
|
|
1789
1714
|
|
|
1790
|
-
class RENDER_PT_eevee_volumetric(
|
|
1791
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
1792
|
-
):
|
|
1715
|
+
class RENDER_PT_eevee_volumetric(bpy.types.Panel, bpy_types._GenericUI):
|
|
1793
1716
|
COMPAT_ENGINES: typing.Any
|
|
1794
1717
|
bl_context: typing.Any
|
|
1795
1718
|
bl_label: typing.Any
|
|
@@ -1830,9 +1753,7 @@ class RENDER_PT_eevee_volumetric(
|
|
|
1830
1753
|
"""
|
|
1831
1754
|
...
|
|
1832
1755
|
|
|
1833
|
-
class RENDER_PT_eevee_volumetric_lighting(
|
|
1834
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
1835
|
-
):
|
|
1756
|
+
class RENDER_PT_eevee_volumetric_lighting(bpy.types.Panel, bpy_types._GenericUI):
|
|
1836
1757
|
COMPAT_ENGINES: typing.Any
|
|
1837
1758
|
bl_context: typing.Any
|
|
1838
1759
|
bl_label: typing.Any
|
|
@@ -1872,9 +1793,7 @@ class RENDER_PT_eevee_volumetric_lighting(
|
|
|
1872
1793
|
"""
|
|
1873
1794
|
...
|
|
1874
1795
|
|
|
1875
|
-
class RENDER_PT_eevee_volumetric_shadows(
|
|
1876
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
1877
|
-
):
|
|
1796
|
+
class RENDER_PT_eevee_volumetric_shadows(bpy.types.Panel, bpy_types._GenericUI):
|
|
1878
1797
|
COMPAT_ENGINES: typing.Any
|
|
1879
1798
|
bl_context: typing.Any
|
|
1880
1799
|
bl_label: typing.Any
|
|
@@ -1914,7 +1833,7 @@ class RENDER_PT_eevee_volumetric_shadows(
|
|
|
1914
1833
|
"""
|
|
1915
1834
|
...
|
|
1916
1835
|
|
|
1917
|
-
class RENDER_PT_gpencil(bpy.types.Panel,
|
|
1836
|
+
class RENDER_PT_gpencil(bpy.types.Panel, bpy_types._GenericUI):
|
|
1918
1837
|
COMPAT_ENGINES: typing.Any
|
|
1919
1838
|
bl_context: typing.Any
|
|
1920
1839
|
bl_label: typing.Any
|
|
@@ -1948,7 +1867,7 @@ class RENDER_PT_gpencil(bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericU
|
|
|
1948
1867
|
"""
|
|
1949
1868
|
...
|
|
1950
1869
|
|
|
1951
|
-
class RENDER_PT_hydra_debug(bpy.types.Panel,
|
|
1870
|
+
class RENDER_PT_hydra_debug(bpy.types.Panel, bpy_types._GenericUI):
|
|
1952
1871
|
COMPAT_ENGINES: typing.Any
|
|
1953
1872
|
bl_context: typing.Any
|
|
1954
1873
|
bl_label: typing.Any
|
|
@@ -1990,7 +1909,7 @@ class RENDER_PT_hydra_debug(bpy.types.Panel, RenderButtonsPanel, bpy_types._Gene
|
|
|
1990
1909
|
"""
|
|
1991
1910
|
...
|
|
1992
1911
|
|
|
1993
|
-
class RENDER_PT_opengl_color(bpy.types.Panel,
|
|
1912
|
+
class RENDER_PT_opengl_color(bpy.types.Panel, bpy_types._GenericUI):
|
|
1994
1913
|
COMPAT_ENGINES: typing.Any
|
|
1995
1914
|
bl_context: typing.Any
|
|
1996
1915
|
bl_label: typing.Any
|
|
@@ -2030,7 +1949,7 @@ class RENDER_PT_opengl_color(bpy.types.Panel, RenderButtonsPanel, bpy_types._Gen
|
|
|
2030
1949
|
"""
|
|
2031
1950
|
...
|
|
2032
1951
|
|
|
2033
|
-
class RENDER_PT_opengl_film(bpy.types.Panel,
|
|
1952
|
+
class RENDER_PT_opengl_film(bpy.types.Panel, bpy_types._GenericUI):
|
|
2034
1953
|
COMPAT_ENGINES: typing.Any
|
|
2035
1954
|
bl_context: typing.Any
|
|
2036
1955
|
bl_label: typing.Any
|
|
@@ -2063,9 +1982,7 @@ class RENDER_PT_opengl_film(bpy.types.Panel, RenderButtonsPanel, bpy_types._Gene
|
|
|
2063
1982
|
"""
|
|
2064
1983
|
...
|
|
2065
1984
|
|
|
2066
|
-
class RENDER_PT_opengl_lighting(
|
|
2067
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
2068
|
-
):
|
|
1985
|
+
class RENDER_PT_opengl_lighting(bpy.types.Panel, bpy_types._GenericUI):
|
|
2069
1986
|
COMPAT_ENGINES: typing.Any
|
|
2070
1987
|
bl_context: typing.Any
|
|
2071
1988
|
bl_label: typing.Any
|
|
@@ -2105,9 +2022,7 @@ class RENDER_PT_opengl_lighting(
|
|
|
2105
2022
|
"""
|
|
2106
2023
|
...
|
|
2107
2024
|
|
|
2108
|
-
class RENDER_PT_opengl_options(
|
|
2109
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
2110
|
-
):
|
|
2025
|
+
class RENDER_PT_opengl_options(bpy.types.Panel, bpy_types._GenericUI):
|
|
2111
2026
|
COMPAT_ENGINES: typing.Any
|
|
2112
2027
|
bl_context: typing.Any
|
|
2113
2028
|
bl_label: typing.Any
|
|
@@ -2147,9 +2062,7 @@ class RENDER_PT_opengl_options(
|
|
|
2147
2062
|
"""
|
|
2148
2063
|
...
|
|
2149
2064
|
|
|
2150
|
-
class RENDER_PT_opengl_sampling(
|
|
2151
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
2152
|
-
):
|
|
2065
|
+
class RENDER_PT_opengl_sampling(bpy.types.Panel, bpy_types._GenericUI):
|
|
2153
2066
|
COMPAT_ENGINES: typing.Any
|
|
2154
2067
|
bl_context: typing.Any
|
|
2155
2068
|
bl_label: typing.Any
|
|
@@ -2189,7 +2102,7 @@ class RENDER_PT_opengl_sampling(
|
|
|
2189
2102
|
"""
|
|
2190
2103
|
...
|
|
2191
2104
|
|
|
2192
|
-
class RENDER_PT_simplify(bpy.types.Panel,
|
|
2105
|
+
class RENDER_PT_simplify(bpy.types.Panel, bpy_types._GenericUI):
|
|
2193
2106
|
COMPAT_ENGINES: typing.Any
|
|
2194
2107
|
bl_context: typing.Any
|
|
2195
2108
|
bl_label: typing.Any
|
|
@@ -2229,12 +2142,7 @@ class RENDER_PT_simplify(bpy.types.Panel, RenderButtonsPanel, bpy_types._Generic
|
|
|
2229
2142
|
"""
|
|
2230
2143
|
...
|
|
2231
2144
|
|
|
2232
|
-
class RENDER_PT_simplify_greasepencil(
|
|
2233
|
-
bpy_types._GenericUI,
|
|
2234
|
-
RenderButtonsPanel,
|
|
2235
|
-
bpy.types.Panel,
|
|
2236
|
-
bl_ui.properties_grease_pencil_common.GreasePencilSimplifyPanel,
|
|
2237
|
-
):
|
|
2145
|
+
class RENDER_PT_simplify_greasepencil(bpy.types.Panel, bpy_types._GenericUI):
|
|
2238
2146
|
COMPAT_ENGINES: typing.Any
|
|
2239
2147
|
bl_context: typing.Any
|
|
2240
2148
|
bl_label: typing.Any
|
|
@@ -2261,9 +2169,7 @@ class RENDER_PT_simplify_greasepencil(
|
|
|
2261
2169
|
"""
|
|
2262
2170
|
...
|
|
2263
2171
|
|
|
2264
|
-
class RENDER_PT_simplify_render(
|
|
2265
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
2266
|
-
):
|
|
2172
|
+
class RENDER_PT_simplify_render(bpy.types.Panel, bpy_types._GenericUI):
|
|
2267
2173
|
COMPAT_ENGINES: typing.Any
|
|
2268
2174
|
bl_context: typing.Any
|
|
2269
2175
|
bl_label: typing.Any
|
|
@@ -2296,9 +2202,7 @@ class RENDER_PT_simplify_render(
|
|
|
2296
2202
|
"""
|
|
2297
2203
|
...
|
|
2298
2204
|
|
|
2299
|
-
class RENDER_PT_simplify_viewport(
|
|
2300
|
-
bpy.types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
2301
|
-
):
|
|
2205
|
+
class RENDER_PT_simplify_viewport(bpy.types.Panel, bpy_types._GenericUI):
|
|
2302
2206
|
COMPAT_ENGINES: typing.Any
|
|
2303
2207
|
bl_context: typing.Any
|
|
2304
2208
|
bl_label: typing.Any
|