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,14 +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 PHYSICS_PT_dp_brush_source(
|
|
11
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
12
|
-
):
|
|
9
|
+
class PHYSICS_PT_dp_brush_source(PhysicButtonsPanel, bpy.types.Panel):
|
|
13
10
|
COMPAT_ENGINES: typing.Any
|
|
14
11
|
bl_context: typing.Any
|
|
15
12
|
bl_label: typing.Any
|
|
@@ -50,9 +47,7 @@ class PHYSICS_PT_dp_brush_source(
|
|
|
50
47
|
"""
|
|
51
48
|
...
|
|
52
49
|
|
|
53
|
-
class PHYSICS_PT_dp_brush_source_color_ramp(
|
|
54
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
55
|
-
):
|
|
50
|
+
class PHYSICS_PT_dp_brush_source_color_ramp(PhysicButtonsPanel, bpy.types.Panel):
|
|
56
51
|
COMPAT_ENGINES: typing.Any
|
|
57
52
|
bl_context: typing.Any
|
|
58
53
|
bl_label: typing.Any
|
|
@@ -93,9 +88,7 @@ class PHYSICS_PT_dp_brush_source_color_ramp(
|
|
|
93
88
|
"""
|
|
94
89
|
...
|
|
95
90
|
|
|
96
|
-
class PHYSICS_PT_dp_brush_velocity(
|
|
97
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
98
|
-
):
|
|
91
|
+
class PHYSICS_PT_dp_brush_velocity(PhysicButtonsPanel, bpy.types.Panel):
|
|
99
92
|
COMPAT_ENGINES: typing.Any
|
|
100
93
|
bl_context: typing.Any
|
|
101
94
|
bl_label: typing.Any
|
|
@@ -137,9 +130,7 @@ class PHYSICS_PT_dp_brush_velocity(
|
|
|
137
130
|
"""
|
|
138
131
|
...
|
|
139
132
|
|
|
140
|
-
class PHYSICS_PT_dp_brush_velocity_color_ramp(
|
|
141
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
142
|
-
):
|
|
133
|
+
class PHYSICS_PT_dp_brush_velocity_color_ramp(PhysicButtonsPanel, bpy.types.Panel):
|
|
143
134
|
COMPAT_ENGINES: typing.Any
|
|
144
135
|
bl_context: typing.Any
|
|
145
136
|
bl_label: typing.Any
|
|
@@ -181,9 +172,7 @@ class PHYSICS_PT_dp_brush_velocity_color_ramp(
|
|
|
181
172
|
"""
|
|
182
173
|
...
|
|
183
174
|
|
|
184
|
-
class PHYSICS_PT_dp_brush_velocity_smudge(
|
|
185
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
186
|
-
):
|
|
175
|
+
class PHYSICS_PT_dp_brush_velocity_smudge(PhysicButtonsPanel, bpy.types.Panel):
|
|
187
176
|
COMPAT_ENGINES: typing.Any
|
|
188
177
|
bl_context: typing.Any
|
|
189
178
|
bl_label: typing.Any
|
|
@@ -232,9 +221,7 @@ class PHYSICS_PT_dp_brush_velocity_smudge(
|
|
|
232
221
|
"""
|
|
233
222
|
...
|
|
234
223
|
|
|
235
|
-
class PHYSICS_PT_dp_brush_wave(
|
|
236
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
237
|
-
):
|
|
224
|
+
class PHYSICS_PT_dp_brush_wave(PhysicButtonsPanel, bpy.types.Panel):
|
|
238
225
|
COMPAT_ENGINES: typing.Any
|
|
239
226
|
bl_context: typing.Any
|
|
240
227
|
bl_label: typing.Any
|
|
@@ -276,7 +263,7 @@ class PHYSICS_PT_dp_brush_wave(
|
|
|
276
263
|
"""
|
|
277
264
|
...
|
|
278
265
|
|
|
279
|
-
class PHYSICS_PT_dp_cache(bpy.types.Panel
|
|
266
|
+
class PHYSICS_PT_dp_cache(PhysicButtonsPanel, bpy.types.Panel):
|
|
280
267
|
COMPAT_ENGINES: typing.Any
|
|
281
268
|
bl_context: typing.Any
|
|
282
269
|
bl_label: typing.Any
|
|
@@ -318,9 +305,7 @@ class PHYSICS_PT_dp_cache(bpy.types.Panel, PhysicButtonsPanel, bpy_types._Generi
|
|
|
318
305
|
"""
|
|
319
306
|
...
|
|
320
307
|
|
|
321
|
-
class PHYSICS_PT_dp_canvas_initial_color(
|
|
322
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
323
|
-
):
|
|
308
|
+
class PHYSICS_PT_dp_canvas_initial_color(PhysicButtonsPanel, bpy.types.Panel):
|
|
324
309
|
COMPAT_ENGINES: typing.Any
|
|
325
310
|
bl_context: typing.Any
|
|
326
311
|
bl_label: typing.Any
|
|
@@ -362,9 +347,7 @@ class PHYSICS_PT_dp_canvas_initial_color(
|
|
|
362
347
|
"""
|
|
363
348
|
...
|
|
364
349
|
|
|
365
|
-
class PHYSICS_PT_dp_canvas_output(
|
|
366
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
367
|
-
):
|
|
350
|
+
class PHYSICS_PT_dp_canvas_output(PhysicButtonsPanel, bpy.types.Panel):
|
|
368
351
|
COMPAT_ENGINES: typing.Any
|
|
369
352
|
bl_context: typing.Any
|
|
370
353
|
bl_label: typing.Any
|
|
@@ -406,9 +389,7 @@ class PHYSICS_PT_dp_canvas_output(
|
|
|
406
389
|
"""
|
|
407
390
|
...
|
|
408
391
|
|
|
409
|
-
class PHYSICS_PT_dp_canvas_output_paintmaps(
|
|
410
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
411
|
-
):
|
|
392
|
+
class PHYSICS_PT_dp_canvas_output_paintmaps(PhysicButtonsPanel, bpy.types.Panel):
|
|
412
393
|
COMPAT_ENGINES: typing.Any
|
|
413
394
|
bl_context: typing.Any
|
|
414
395
|
bl_label: typing.Any
|
|
@@ -457,9 +438,7 @@ class PHYSICS_PT_dp_canvas_output_paintmaps(
|
|
|
457
438
|
"""
|
|
458
439
|
...
|
|
459
440
|
|
|
460
|
-
class PHYSICS_PT_dp_canvas_output_wetmaps(
|
|
461
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
462
|
-
):
|
|
441
|
+
class PHYSICS_PT_dp_canvas_output_wetmaps(PhysicButtonsPanel, bpy.types.Panel):
|
|
463
442
|
COMPAT_ENGINES: typing.Any
|
|
464
443
|
bl_context: typing.Any
|
|
465
444
|
bl_label: typing.Any
|
|
@@ -508,7 +487,7 @@ class PHYSICS_PT_dp_canvas_output_wetmaps(
|
|
|
508
487
|
"""
|
|
509
488
|
...
|
|
510
489
|
|
|
511
|
-
class PHYSICS_PT_dp_effects(bpy.types.Panel
|
|
490
|
+
class PHYSICS_PT_dp_effects(PhysicButtonsPanel, bpy.types.Panel):
|
|
512
491
|
COMPAT_ENGINES: typing.Any
|
|
513
492
|
bl_context: typing.Any
|
|
514
493
|
bl_label: typing.Any
|
|
@@ -550,9 +529,7 @@ class PHYSICS_PT_dp_effects(bpy.types.Panel, PhysicButtonsPanel, bpy_types._Gene
|
|
|
550
529
|
"""
|
|
551
530
|
...
|
|
552
531
|
|
|
553
|
-
class PHYSICS_PT_dp_effects_drip(
|
|
554
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
555
|
-
):
|
|
532
|
+
class PHYSICS_PT_dp_effects_drip(PhysicButtonsPanel, bpy.types.Panel):
|
|
556
533
|
COMPAT_ENGINES: typing.Any
|
|
557
534
|
bl_context: typing.Any
|
|
558
535
|
bl_label: typing.Any
|
|
@@ -601,9 +578,7 @@ class PHYSICS_PT_dp_effects_drip(
|
|
|
601
578
|
"""
|
|
602
579
|
...
|
|
603
580
|
|
|
604
|
-
class PHYSICS_PT_dp_effects_drip_weights(
|
|
605
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
606
|
-
):
|
|
581
|
+
class PHYSICS_PT_dp_effects_drip_weights(PhysicButtonsPanel, bpy.types.Panel):
|
|
607
582
|
COMPAT_ENGINES: typing.Any
|
|
608
583
|
bl_context: typing.Any
|
|
609
584
|
bl_label: typing.Any
|
|
@@ -645,9 +620,7 @@ class PHYSICS_PT_dp_effects_drip_weights(
|
|
|
645
620
|
"""
|
|
646
621
|
...
|
|
647
622
|
|
|
648
|
-
class PHYSICS_PT_dp_effects_shrink(
|
|
649
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
650
|
-
):
|
|
623
|
+
class PHYSICS_PT_dp_effects_shrink(PhysicButtonsPanel, bpy.types.Panel):
|
|
651
624
|
COMPAT_ENGINES: typing.Any
|
|
652
625
|
bl_context: typing.Any
|
|
653
626
|
bl_label: typing.Any
|
|
@@ -696,9 +669,7 @@ class PHYSICS_PT_dp_effects_shrink(
|
|
|
696
669
|
"""
|
|
697
670
|
...
|
|
698
671
|
|
|
699
|
-
class PHYSICS_PT_dp_effects_spread(
|
|
700
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
701
|
-
):
|
|
672
|
+
class PHYSICS_PT_dp_effects_spread(PhysicButtonsPanel, bpy.types.Panel):
|
|
702
673
|
COMPAT_ENGINES: typing.Any
|
|
703
674
|
bl_context: typing.Any
|
|
704
675
|
bl_label: typing.Any
|
|
@@ -747,9 +718,7 @@ class PHYSICS_PT_dp_effects_spread(
|
|
|
747
718
|
"""
|
|
748
719
|
...
|
|
749
720
|
|
|
750
|
-
class PHYSICS_PT_dp_surface_canvas(
|
|
751
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
752
|
-
):
|
|
721
|
+
class PHYSICS_PT_dp_surface_canvas(PhysicButtonsPanel, bpy.types.Panel):
|
|
753
722
|
COMPAT_ENGINES: typing.Any
|
|
754
723
|
bl_context: typing.Any
|
|
755
724
|
bl_label: typing.Any
|
|
@@ -790,9 +759,7 @@ class PHYSICS_PT_dp_surface_canvas(
|
|
|
790
759
|
"""
|
|
791
760
|
...
|
|
792
761
|
|
|
793
|
-
class PHYSICS_PT_dp_surface_canvas_paint_dissolve(
|
|
794
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
795
|
-
):
|
|
762
|
+
class PHYSICS_PT_dp_surface_canvas_paint_dissolve(PhysicButtonsPanel, bpy.types.Panel):
|
|
796
763
|
COMPAT_ENGINES: typing.Any
|
|
797
764
|
bl_context: typing.Any
|
|
798
765
|
bl_label: typing.Any
|
|
@@ -842,9 +809,7 @@ class PHYSICS_PT_dp_surface_canvas_paint_dissolve(
|
|
|
842
809
|
"""
|
|
843
810
|
...
|
|
844
811
|
|
|
845
|
-
class PHYSICS_PT_dp_surface_canvas_paint_dry(
|
|
846
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
847
|
-
):
|
|
812
|
+
class PHYSICS_PT_dp_surface_canvas_paint_dry(PhysicButtonsPanel, bpy.types.Panel):
|
|
848
813
|
COMPAT_ENGINES: typing.Any
|
|
849
814
|
bl_context: typing.Any
|
|
850
815
|
bl_label: typing.Any
|
|
@@ -893,9 +858,7 @@ class PHYSICS_PT_dp_surface_canvas_paint_dry(
|
|
|
893
858
|
"""
|
|
894
859
|
...
|
|
895
860
|
|
|
896
|
-
class PHYSICS_PT_dynamic_paint(
|
|
897
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
898
|
-
):
|
|
861
|
+
class PHYSICS_PT_dynamic_paint(PhysicButtonsPanel, bpy.types.Panel):
|
|
899
862
|
COMPAT_ENGINES: typing.Any
|
|
900
863
|
bl_context: typing.Any
|
|
901
864
|
bl_label: typing.Any
|
|
@@ -935,9 +898,7 @@ class PHYSICS_PT_dynamic_paint(
|
|
|
935
898
|
"""
|
|
936
899
|
...
|
|
937
900
|
|
|
938
|
-
class PHYSICS_PT_dynamic_paint_settings(
|
|
939
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
940
|
-
):
|
|
901
|
+
class PHYSICS_PT_dynamic_paint_settings(PhysicButtonsPanel, bpy.types.Panel):
|
|
941
902
|
COMPAT_ENGINES: typing.Any
|
|
942
903
|
bl_context: typing.Any
|
|
943
904
|
bl_label: typing.Any
|
|
@@ -978,7 +939,7 @@ class PHYSICS_PT_dynamic_paint_settings(
|
|
|
978
939
|
"""
|
|
979
940
|
...
|
|
980
941
|
|
|
981
|
-
class PHYSICS_UL_dynapaint_surfaces(bpy.types.UIList
|
|
942
|
+
class PHYSICS_UL_dynapaint_surfaces(bpy.types.UIList):
|
|
982
943
|
bl_rna: typing.Any
|
|
983
944
|
id_data: typing.Any
|
|
984
945
|
|
|
@@ -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 PHYSICS_PT_collision(bpy.types.Panel
|
|
9
|
+
class PHYSICS_PT_collision(PhysicButtonsPanel, bpy.types.Panel):
|
|
11
10
|
COMPAT_ENGINES: typing.Any
|
|
12
11
|
bl_context: typing.Any
|
|
13
12
|
bl_label: typing.Any
|
|
@@ -47,9 +46,7 @@ class PHYSICS_PT_collision(bpy.types.Panel, PhysicButtonsPanel, bpy_types._Gener
|
|
|
47
46
|
"""
|
|
48
47
|
...
|
|
49
48
|
|
|
50
|
-
class PHYSICS_PT_collision_particle(
|
|
51
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
52
|
-
):
|
|
49
|
+
class PHYSICS_PT_collision_particle(PhysicButtonsPanel, bpy.types.Panel):
|
|
53
50
|
COMPAT_ENGINES: typing.Any
|
|
54
51
|
bl_context: typing.Any
|
|
55
52
|
bl_label: typing.Any
|
|
@@ -90,9 +87,7 @@ class PHYSICS_PT_collision_particle(
|
|
|
90
87
|
"""
|
|
91
88
|
...
|
|
92
89
|
|
|
93
|
-
class PHYSICS_PT_collision_softbody(
|
|
94
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
95
|
-
):
|
|
90
|
+
class PHYSICS_PT_collision_softbody(PhysicButtonsPanel, bpy.types.Panel):
|
|
96
91
|
COMPAT_ENGINES: typing.Any
|
|
97
92
|
bl_context: typing.Any
|
|
98
93
|
bl_label: typing.Any
|
|
@@ -133,7 +128,7 @@ class PHYSICS_PT_collision_softbody(
|
|
|
133
128
|
"""
|
|
134
129
|
...
|
|
135
130
|
|
|
136
|
-
class PHYSICS_PT_field(bpy.types.Panel
|
|
131
|
+
class PHYSICS_PT_field(PhysicButtonsPanel, bpy.types.Panel):
|
|
137
132
|
COMPAT_ENGINES: typing.Any
|
|
138
133
|
bl_context: typing.Any
|
|
139
134
|
bl_label: typing.Any
|
|
@@ -173,9 +168,7 @@ class PHYSICS_PT_field(bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
|
173
168
|
"""
|
|
174
169
|
...
|
|
175
170
|
|
|
176
|
-
class PHYSICS_PT_field_falloff(
|
|
177
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
178
|
-
):
|
|
171
|
+
class PHYSICS_PT_field_falloff(PhysicButtonsPanel, bpy.types.Panel):
|
|
179
172
|
COMPAT_ENGINES: typing.Any
|
|
180
173
|
bl_context: typing.Any
|
|
181
174
|
bl_label: typing.Any
|
|
@@ -216,9 +209,7 @@ class PHYSICS_PT_field_falloff(
|
|
|
216
209
|
"""
|
|
217
210
|
...
|
|
218
211
|
|
|
219
|
-
class PHYSICS_PT_field_falloff_angular(
|
|
220
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
221
|
-
):
|
|
212
|
+
class PHYSICS_PT_field_falloff_angular(PhysicButtonsPanel, bpy.types.Panel):
|
|
222
213
|
COMPAT_ENGINES: typing.Any
|
|
223
214
|
bl_context: typing.Any
|
|
224
215
|
bl_label: typing.Any
|
|
@@ -259,9 +250,7 @@ class PHYSICS_PT_field_falloff_angular(
|
|
|
259
250
|
"""
|
|
260
251
|
...
|
|
261
252
|
|
|
262
|
-
class PHYSICS_PT_field_falloff_radial(
|
|
263
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
264
|
-
):
|
|
253
|
+
class PHYSICS_PT_field_falloff_radial(PhysicButtonsPanel, bpy.types.Panel):
|
|
265
254
|
COMPAT_ENGINES: typing.Any
|
|
266
255
|
bl_context: typing.Any
|
|
267
256
|
bl_label: typing.Any
|
|
@@ -302,9 +291,7 @@ class PHYSICS_PT_field_falloff_radial(
|
|
|
302
291
|
"""
|
|
303
292
|
...
|
|
304
293
|
|
|
305
|
-
class PHYSICS_PT_field_settings(
|
|
306
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
307
|
-
):
|
|
294
|
+
class PHYSICS_PT_field_settings(PhysicButtonsPanel, bpy.types.Panel):
|
|
308
295
|
COMPAT_ENGINES: typing.Any
|
|
309
296
|
bl_context: typing.Any
|
|
310
297
|
bl_label: typing.Any
|
|
@@ -345,9 +332,7 @@ class PHYSICS_PT_field_settings(
|
|
|
345
332
|
"""
|
|
346
333
|
...
|
|
347
334
|
|
|
348
|
-
class PHYSICS_PT_field_settings_kink(
|
|
349
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
350
|
-
):
|
|
335
|
+
class PHYSICS_PT_field_settings_kink(PhysicButtonsPanel, bpy.types.Panel):
|
|
351
336
|
COMPAT_ENGINES: typing.Any
|
|
352
337
|
bl_context: typing.Any
|
|
353
338
|
bl_label: typing.Any
|
|
@@ -388,9 +373,7 @@ class PHYSICS_PT_field_settings_kink(
|
|
|
388
373
|
"""
|
|
389
374
|
...
|
|
390
375
|
|
|
391
|
-
class PHYSICS_PT_field_settings_texture_select(
|
|
392
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
393
|
-
):
|
|
376
|
+
class PHYSICS_PT_field_settings_texture_select(PhysicButtonsPanel, bpy.types.Panel):
|
|
394
377
|
COMPAT_ENGINES: typing.Any
|
|
395
378
|
bl_context: typing.Any
|
|
396
379
|
bl_label: typing.Any
|
|
@@ -3,12 +3,11 @@ import collections.abc
|
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bl_ui.utils
|
|
5
5
|
import bpy.types
|
|
6
|
-
import bpy_types
|
|
7
6
|
|
|
8
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
9
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
10
9
|
|
|
11
|
-
class FLUID_PT_presets(
|
|
10
|
+
class FLUID_PT_presets(bl_ui.utils.PresetPanel, bpy.types.Panel):
|
|
12
11
|
bl_label: typing.Any
|
|
13
12
|
bl_region_type: typing.Any
|
|
14
13
|
bl_rna: typing.Any
|
|
@@ -34,9 +33,7 @@ class FLUID_PT_presets(bpy.types.Panel, bl_ui.utils.PresetPanel, bpy_types._Gene
|
|
|
34
33
|
"""
|
|
35
34
|
...
|
|
36
35
|
|
|
37
|
-
class PHYSICS_PT_adaptive_domain(
|
|
38
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
39
|
-
):
|
|
36
|
+
class PHYSICS_PT_adaptive_domain(PhysicButtonsPanel, bpy.types.Panel):
|
|
40
37
|
COMPAT_ENGINES: typing.Any
|
|
41
38
|
bl_context: typing.Any
|
|
42
39
|
bl_label: typing.Any
|
|
@@ -85,7 +82,7 @@ class PHYSICS_PT_adaptive_domain(
|
|
|
85
82
|
"""
|
|
86
83
|
...
|
|
87
84
|
|
|
88
|
-
class PHYSICS_PT_borders(bpy.types.Panel
|
|
85
|
+
class PHYSICS_PT_borders(PhysicButtonsPanel, bpy.types.Panel):
|
|
89
86
|
COMPAT_ENGINES: typing.Any
|
|
90
87
|
bl_context: typing.Any
|
|
91
88
|
bl_label: typing.Any
|
|
@@ -126,7 +123,7 @@ class PHYSICS_PT_borders(bpy.types.Panel, PhysicButtonsPanel, bpy_types._Generic
|
|
|
126
123
|
"""
|
|
127
124
|
...
|
|
128
125
|
|
|
129
|
-
class PHYSICS_PT_cache(bpy.types.Panel
|
|
126
|
+
class PHYSICS_PT_cache(PhysicButtonsPanel, bpy.types.Panel):
|
|
130
127
|
COMPAT_ENGINES: typing.Any
|
|
131
128
|
bl_context: typing.Any
|
|
132
129
|
bl_label: typing.Any
|
|
@@ -167,7 +164,7 @@ class PHYSICS_PT_cache(bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
|
167
164
|
"""
|
|
168
165
|
...
|
|
169
166
|
|
|
170
|
-
class PHYSICS_PT_collections(bpy.types.Panel
|
|
167
|
+
class PHYSICS_PT_collections(PhysicButtonsPanel, bpy.types.Panel):
|
|
171
168
|
COMPAT_ENGINES: typing.Any
|
|
172
169
|
bl_context: typing.Any
|
|
173
170
|
bl_label: typing.Any
|
|
@@ -209,7 +206,7 @@ class PHYSICS_PT_collections(bpy.types.Panel, PhysicButtonsPanel, bpy_types._Gen
|
|
|
209
206
|
"""
|
|
210
207
|
...
|
|
211
208
|
|
|
212
|
-
class PHYSICS_PT_diffusion(bpy.types.Panel
|
|
209
|
+
class PHYSICS_PT_diffusion(PhysicButtonsPanel, bpy.types.Panel):
|
|
213
210
|
COMPAT_ENGINES: typing.Any
|
|
214
211
|
bl_context: typing.Any
|
|
215
212
|
bl_label: typing.Any
|
|
@@ -265,7 +262,7 @@ class PHYSICS_PT_diffusion(bpy.types.Panel, PhysicButtonsPanel, bpy_types._Gener
|
|
|
265
262
|
"""
|
|
266
263
|
...
|
|
267
264
|
|
|
268
|
-
class PHYSICS_PT_export(bpy.types.Panel
|
|
265
|
+
class PHYSICS_PT_export(PhysicButtonsPanel, bpy.types.Panel):
|
|
269
266
|
COMPAT_ENGINES: typing.Any
|
|
270
267
|
bl_context: typing.Any
|
|
271
268
|
bl_label: typing.Any
|
|
@@ -307,9 +304,7 @@ class PHYSICS_PT_export(bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericU
|
|
|
307
304
|
"""
|
|
308
305
|
...
|
|
309
306
|
|
|
310
|
-
class PHYSICS_PT_field_weights(
|
|
311
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
312
|
-
):
|
|
307
|
+
class PHYSICS_PT_field_weights(PhysicButtonsPanel, bpy.types.Panel):
|
|
313
308
|
COMPAT_ENGINES: typing.Any
|
|
314
309
|
bl_context: typing.Any
|
|
315
310
|
bl_label: typing.Any
|
|
@@ -351,7 +346,7 @@ class PHYSICS_PT_field_weights(
|
|
|
351
346
|
"""
|
|
352
347
|
...
|
|
353
348
|
|
|
354
|
-
class PHYSICS_PT_fire(bpy.types.Panel
|
|
349
|
+
class PHYSICS_PT_fire(PhysicButtonsPanel, bpy.types.Panel):
|
|
355
350
|
COMPAT_ENGINES: typing.Any
|
|
356
351
|
bl_context: typing.Any
|
|
357
352
|
bl_label: typing.Any
|
|
@@ -393,9 +388,7 @@ class PHYSICS_PT_fire(bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI)
|
|
|
393
388
|
"""
|
|
394
389
|
...
|
|
395
390
|
|
|
396
|
-
class PHYSICS_PT_flow_initial_velocity(
|
|
397
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
398
|
-
):
|
|
391
|
+
class PHYSICS_PT_flow_initial_velocity(PhysicButtonsPanel, bpy.types.Panel):
|
|
399
392
|
COMPAT_ENGINES: typing.Any
|
|
400
393
|
bl_context: typing.Any
|
|
401
394
|
bl_label: typing.Any
|
|
@@ -443,7 +436,7 @@ class PHYSICS_PT_flow_initial_velocity(
|
|
|
443
436
|
"""
|
|
444
437
|
...
|
|
445
438
|
|
|
446
|
-
class PHYSICS_PT_flow_source(bpy.types.Panel
|
|
439
|
+
class PHYSICS_PT_flow_source(PhysicButtonsPanel, bpy.types.Panel):
|
|
447
440
|
COMPAT_ENGINES: typing.Any
|
|
448
441
|
bl_context: typing.Any
|
|
449
442
|
bl_label: typing.Any
|
|
@@ -485,9 +478,7 @@ class PHYSICS_PT_flow_source(bpy.types.Panel, PhysicButtonsPanel, bpy_types._Gen
|
|
|
485
478
|
"""
|
|
486
479
|
...
|
|
487
480
|
|
|
488
|
-
class PHYSICS_PT_flow_texture(
|
|
489
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
490
|
-
):
|
|
481
|
+
class PHYSICS_PT_flow_texture(PhysicButtonsPanel, bpy.types.Panel):
|
|
491
482
|
COMPAT_ENGINES: typing.Any
|
|
492
483
|
bl_context: typing.Any
|
|
493
484
|
bl_label: typing.Any
|
|
@@ -536,7 +527,7 @@ class PHYSICS_PT_flow_texture(
|
|
|
536
527
|
"""
|
|
537
528
|
...
|
|
538
529
|
|
|
539
|
-
class PHYSICS_PT_fluid(bpy.types.Panel
|
|
530
|
+
class PHYSICS_PT_fluid(PhysicButtonsPanel, bpy.types.Panel):
|
|
540
531
|
COMPAT_ENGINES: typing.Any
|
|
541
532
|
bl_context: typing.Any
|
|
542
533
|
bl_label: typing.Any
|
|
@@ -576,9 +567,7 @@ class PHYSICS_PT_fluid(bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
|
576
567
|
"""
|
|
577
568
|
...
|
|
578
569
|
|
|
579
|
-
class PHYSICS_PT_fluid_domain_render(
|
|
580
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
581
|
-
):
|
|
570
|
+
class PHYSICS_PT_fluid_domain_render(PhysicButtonsPanel, bpy.types.Panel):
|
|
582
571
|
COMPAT_ENGINES: typing.Any
|
|
583
572
|
bl_context: typing.Any
|
|
584
573
|
bl_label: typing.Any
|
|
@@ -620,7 +609,7 @@ class PHYSICS_PT_fluid_domain_render(
|
|
|
620
609
|
"""
|
|
621
610
|
...
|
|
622
611
|
|
|
623
|
-
class PHYSICS_PT_guide(bpy.types.Panel
|
|
612
|
+
class PHYSICS_PT_guide(PhysicButtonsPanel, bpy.types.Panel):
|
|
624
613
|
COMPAT_ENGINES: typing.Any
|
|
625
614
|
bl_context: typing.Any
|
|
626
615
|
bl_label: typing.Any
|
|
@@ -669,7 +658,7 @@ class PHYSICS_PT_guide(bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
|
669
658
|
"""
|
|
670
659
|
...
|
|
671
660
|
|
|
672
|
-
class PHYSICS_PT_liquid(bpy.types.Panel
|
|
661
|
+
class PHYSICS_PT_liquid(PhysicButtonsPanel, bpy.types.Panel):
|
|
673
662
|
COMPAT_ENGINES: typing.Any
|
|
674
663
|
bl_context: typing.Any
|
|
675
664
|
bl_label: typing.Any
|
|
@@ -717,7 +706,7 @@ class PHYSICS_PT_liquid(bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericU
|
|
|
717
706
|
"""
|
|
718
707
|
...
|
|
719
708
|
|
|
720
|
-
class PHYSICS_PT_mesh(bpy.types.Panel
|
|
709
|
+
class PHYSICS_PT_mesh(PhysicButtonsPanel, bpy.types.Panel):
|
|
721
710
|
COMPAT_ENGINES: typing.Any
|
|
722
711
|
bl_context: typing.Any
|
|
723
712
|
bl_label: typing.Any
|
|
@@ -766,7 +755,7 @@ class PHYSICS_PT_mesh(bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI)
|
|
|
766
755
|
"""
|
|
767
756
|
...
|
|
768
757
|
|
|
769
|
-
class PHYSICS_PT_noise(bpy.types.Panel
|
|
758
|
+
class PHYSICS_PT_noise(PhysicButtonsPanel, bpy.types.Panel):
|
|
770
759
|
COMPAT_ENGINES: typing.Any
|
|
771
760
|
bl_context: typing.Any
|
|
772
761
|
bl_label: typing.Any
|
|
@@ -815,7 +804,7 @@ class PHYSICS_PT_noise(bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
|
815
804
|
"""
|
|
816
805
|
...
|
|
817
806
|
|
|
818
|
-
class PHYSICS_PT_particles(bpy.types.Panel
|
|
807
|
+
class PHYSICS_PT_particles(PhysicButtonsPanel, bpy.types.Panel):
|
|
819
808
|
COMPAT_ENGINES: typing.Any
|
|
820
809
|
bl_context: typing.Any
|
|
821
810
|
bl_label: typing.Any
|
|
@@ -857,7 +846,7 @@ class PHYSICS_PT_particles(bpy.types.Panel, PhysicButtonsPanel, bpy_types._Gener
|
|
|
857
846
|
"""
|
|
858
847
|
...
|
|
859
848
|
|
|
860
|
-
class PHYSICS_PT_settings(bpy.types.Panel
|
|
849
|
+
class PHYSICS_PT_settings(PhysicButtonsPanel, bpy.types.Panel):
|
|
861
850
|
COMPAT_ENGINES: typing.Any
|
|
862
851
|
bl_context: typing.Any
|
|
863
852
|
bl_label: typing.Any
|
|
@@ -898,7 +887,7 @@ class PHYSICS_PT_settings(bpy.types.Panel, PhysicButtonsPanel, bpy_types._Generi
|
|
|
898
887
|
"""
|
|
899
888
|
...
|
|
900
889
|
|
|
901
|
-
class PHYSICS_PT_smoke(bpy.types.Panel
|
|
890
|
+
class PHYSICS_PT_smoke(PhysicButtonsPanel, bpy.types.Panel):
|
|
902
891
|
COMPAT_ENGINES: typing.Any
|
|
903
892
|
bl_context: typing.Any
|
|
904
893
|
bl_label: typing.Any
|
|
@@ -939,9 +928,7 @@ class PHYSICS_PT_smoke(bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
|
939
928
|
"""
|
|
940
929
|
...
|
|
941
930
|
|
|
942
|
-
class PHYSICS_PT_smoke_dissolve(
|
|
943
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
944
|
-
):
|
|
931
|
+
class PHYSICS_PT_smoke_dissolve(PhysicButtonsPanel, bpy.types.Panel):
|
|
945
932
|
COMPAT_ENGINES: typing.Any
|
|
946
933
|
bl_context: typing.Any
|
|
947
934
|
bl_label: typing.Any
|
|
@@ -991,9 +978,7 @@ class PHYSICS_PT_smoke_dissolve(
|
|
|
991
978
|
"""
|
|
992
979
|
...
|
|
993
980
|
|
|
994
|
-
class PHYSICS_PT_viewport_display(
|
|
995
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
996
|
-
):
|
|
981
|
+
class PHYSICS_PT_viewport_display(PhysicButtonsPanel, bpy.types.Panel):
|
|
997
982
|
bl_context: typing.Any
|
|
998
983
|
bl_label: typing.Any
|
|
999
984
|
bl_options: typing.Any
|
|
@@ -1034,9 +1019,7 @@ class PHYSICS_PT_viewport_display(
|
|
|
1034
1019
|
"""
|
|
1035
1020
|
...
|
|
1036
1021
|
|
|
1037
|
-
class PHYSICS_PT_viewport_display_advanced(
|
|
1038
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
1039
|
-
):
|
|
1022
|
+
class PHYSICS_PT_viewport_display_advanced(PhysicButtonsPanel, bpy.types.Panel):
|
|
1040
1023
|
bl_context: typing.Any
|
|
1041
1024
|
bl_label: typing.Any
|
|
1042
1025
|
bl_options: typing.Any
|
|
@@ -1077,9 +1060,7 @@ class PHYSICS_PT_viewport_display_advanced(
|
|
|
1077
1060
|
"""
|
|
1078
1061
|
...
|
|
1079
1062
|
|
|
1080
|
-
class PHYSICS_PT_viewport_display_color(
|
|
1081
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
1082
|
-
):
|
|
1063
|
+
class PHYSICS_PT_viewport_display_color(PhysicButtonsPanel, bpy.types.Panel):
|
|
1083
1064
|
bl_context: typing.Any
|
|
1084
1065
|
bl_label: typing.Any
|
|
1085
1066
|
bl_options: typing.Any
|
|
@@ -1127,9 +1108,7 @@ class PHYSICS_PT_viewport_display_color(
|
|
|
1127
1108
|
"""
|
|
1128
1109
|
...
|
|
1129
1110
|
|
|
1130
|
-
class PHYSICS_PT_viewport_display_debug(
|
|
1131
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
1132
|
-
):
|
|
1111
|
+
class PHYSICS_PT_viewport_display_debug(PhysicButtonsPanel, bpy.types.Panel):
|
|
1133
1112
|
bl_context: typing.Any
|
|
1134
1113
|
bl_label: typing.Any
|
|
1135
1114
|
bl_options: typing.Any
|
|
@@ -1177,9 +1156,7 @@ class PHYSICS_PT_viewport_display_debug(
|
|
|
1177
1156
|
"""
|
|
1178
1157
|
...
|
|
1179
1158
|
|
|
1180
|
-
class PHYSICS_PT_viewport_display_slicing(
|
|
1181
|
-
bpy.types.Panel, PhysicButtonsPanel, bpy_types._GenericUI
|
|
1182
|
-
):
|
|
1159
|
+
class PHYSICS_PT_viewport_display_slicing(PhysicButtonsPanel, bpy.types.Panel):
|
|
1183
1160
|
bl_context: typing.Any
|
|
1184
1161
|
bl_label: typing.Any
|
|
1185
1162
|
bl_options: typing.Any
|
|
@@ -1227,7 +1204,7 @@ class PHYSICS_PT_viewport_display_slicing(
|
|
|
1227
1204
|
"""
|
|
1228
1205
|
...
|
|
1229
1206
|
|
|
1230
|
-
class PHYSICS_PT_viscosity(bpy.types.Panel
|
|
1207
|
+
class PHYSICS_PT_viscosity(PhysicButtonsPanel, bpy.types.Panel):
|
|
1231
1208
|
COMPAT_ENGINES: typing.Any
|
|
1232
1209
|
bl_context: typing.Any
|
|
1233
1210
|
bl_label: 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 PHYSICS_PT_geometry_nodes(bpy.types.Panel
|
|
9
|
+
class PHYSICS_PT_geometry_nodes(bpy.types.Panel):
|
|
11
10
|
bl_context: typing.Any
|
|
12
11
|
bl_label: typing.Any
|
|
13
12
|
bl_options: typing.Any
|