fake-bpy-module 20240720__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.
- aud/__init__.pyi +77 -77
- 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
- bmesh/types/__init__.pyi +25 -25
- bpy/app/timers/__init__.pyi +6 -6
- bpy/types/__init__.pyi +113 -111
- bpy_extras/node_shader_utils/__init__.pyi +118 -118
- {fake_bpy_module-20240720.dist-info → fake_bpy_module-20240722.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240720.dist-info → fake_bpy_module-20240722.dist-info}/RECORD +81 -81
- {fake_bpy_module-20240720.dist-info → fake_bpy_module-20240722.dist-info}/WHEEL +1 -1
- freestyle/chainingiterators/__init__.pyi +4 -4
- freestyle/types/__init__.pyi +63 -65
- idprop/types/__init__.pyi +2 -2
- imbuf/types/__init__.pyi +2 -2
- keyingsets_builtins/__init__.pyi +2 -2
- mathutils/__init__.pyi +1004 -965
- mathutils/bvhtree/__init__.pyi +2 -2
- nodeitems_builtins/__init__.pyi +3 -3
- {fake_bpy_module-20240720.dist-info → fake_bpy_module-20240722.dist-info}/top_level.txt +0 -0
|
@@ -1,11 +1,8 @@
|
|
|
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.space_toolsystem_common
|
|
6
4
|
import bpy.types
|
|
7
5
|
import bpy_types
|
|
8
|
-
import rna_prop_ui
|
|
9
6
|
|
|
10
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
11
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
@@ -245,9 +242,7 @@ class SEQUENCER_MT_change(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
245
242
|
"""
|
|
246
243
|
...
|
|
247
244
|
|
|
248
|
-
class SEQUENCER_MT_color_tag_picker(
|
|
249
|
-
bpy.types.Menu, SequencerColorTagPicker, bpy_types._GenericUI
|
|
250
|
-
):
|
|
245
|
+
class SEQUENCER_MT_color_tag_picker(bpy.types.Menu, bpy_types._GenericUI):
|
|
251
246
|
bl_label: typing.Any
|
|
252
247
|
bl_region_type: typing.Any
|
|
253
248
|
bl_rna: typing.Any
|
|
@@ -1049,11 +1044,7 @@ class SEQUENCER_MT_view_pie(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
1049
1044
|
"""
|
|
1050
1045
|
...
|
|
1051
1046
|
|
|
1052
|
-
class SEQUENCER_PT_active_tool(
|
|
1053
|
-
bpy.types.Panel,
|
|
1054
|
-
bl_ui.space_toolsystem_common.ToolActivePanelHelper,
|
|
1055
|
-
bpy_types._GenericUI,
|
|
1056
|
-
):
|
|
1047
|
+
class SEQUENCER_PT_active_tool(bpy.types.Panel, bpy_types._GenericUI):
|
|
1057
1048
|
bl_category: typing.Any
|
|
1058
1049
|
bl_label: typing.Any
|
|
1059
1050
|
bl_region_type: typing.Any
|
|
@@ -1077,9 +1068,7 @@ class SEQUENCER_PT_active_tool(
|
|
|
1077
1068
|
"""
|
|
1078
1069
|
...
|
|
1079
1070
|
|
|
1080
|
-
class SEQUENCER_PT_adjust_color(
|
|
1081
|
-
bpy.types.Panel, SequencerButtonsPanel, bpy_types._GenericUI
|
|
1082
|
-
):
|
|
1071
|
+
class SEQUENCER_PT_adjust_color(bpy.types.Panel, bpy_types._GenericUI):
|
|
1083
1072
|
bl_category: typing.Any
|
|
1084
1073
|
bl_label: typing.Any
|
|
1085
1074
|
bl_options: typing.Any
|
|
@@ -1119,9 +1108,7 @@ class SEQUENCER_PT_adjust_color(
|
|
|
1119
1108
|
"""
|
|
1120
1109
|
...
|
|
1121
1110
|
|
|
1122
|
-
class SEQUENCER_PT_adjust_comp(
|
|
1123
|
-
bpy.types.Panel, SequencerButtonsPanel, bpy_types._GenericUI
|
|
1124
|
-
):
|
|
1111
|
+
class SEQUENCER_PT_adjust_comp(bpy.types.Panel, bpy_types._GenericUI):
|
|
1125
1112
|
bl_category: typing.Any
|
|
1126
1113
|
bl_label: typing.Any
|
|
1127
1114
|
bl_region_type: typing.Any
|
|
@@ -1160,9 +1147,7 @@ class SEQUENCER_PT_adjust_comp(
|
|
|
1160
1147
|
"""
|
|
1161
1148
|
...
|
|
1162
1149
|
|
|
1163
|
-
class SEQUENCER_PT_adjust_crop(
|
|
1164
|
-
bpy.types.Panel, SequencerButtonsPanel, bpy_types._GenericUI
|
|
1165
|
-
):
|
|
1150
|
+
class SEQUENCER_PT_adjust_crop(bpy.types.Panel, bpy_types._GenericUI):
|
|
1166
1151
|
bl_category: typing.Any
|
|
1167
1152
|
bl_label: typing.Any
|
|
1168
1153
|
bl_options: typing.Any
|
|
@@ -1202,9 +1187,7 @@ class SEQUENCER_PT_adjust_crop(
|
|
|
1202
1187
|
"""
|
|
1203
1188
|
...
|
|
1204
1189
|
|
|
1205
|
-
class SEQUENCER_PT_adjust_sound(
|
|
1206
|
-
bpy.types.Panel, SequencerButtonsPanel, bpy_types._GenericUI
|
|
1207
|
-
):
|
|
1190
|
+
class SEQUENCER_PT_adjust_sound(bpy.types.Panel, bpy_types._GenericUI):
|
|
1208
1191
|
bl_category: typing.Any
|
|
1209
1192
|
bl_label: typing.Any
|
|
1210
1193
|
bl_region_type: typing.Any
|
|
@@ -1243,9 +1226,7 @@ class SEQUENCER_PT_adjust_sound(
|
|
|
1243
1226
|
"""
|
|
1244
1227
|
...
|
|
1245
1228
|
|
|
1246
|
-
class SEQUENCER_PT_adjust_transform(
|
|
1247
|
-
bpy.types.Panel, SequencerButtonsPanel, bpy_types._GenericUI
|
|
1248
|
-
):
|
|
1229
|
+
class SEQUENCER_PT_adjust_transform(bpy.types.Panel, bpy_types._GenericUI):
|
|
1249
1230
|
bl_category: typing.Any
|
|
1250
1231
|
bl_label: typing.Any
|
|
1251
1232
|
bl_options: typing.Any
|
|
@@ -1285,9 +1266,7 @@ class SEQUENCER_PT_adjust_transform(
|
|
|
1285
1266
|
"""
|
|
1286
1267
|
...
|
|
1287
1268
|
|
|
1288
|
-
class SEQUENCER_PT_adjust_video(
|
|
1289
|
-
bpy.types.Panel, SequencerButtonsPanel, bpy_types._GenericUI
|
|
1290
|
-
):
|
|
1269
|
+
class SEQUENCER_PT_adjust_video(bpy.types.Panel, bpy_types._GenericUI):
|
|
1291
1270
|
bl_category: typing.Any
|
|
1292
1271
|
bl_label: typing.Any
|
|
1293
1272
|
bl_options: typing.Any
|
|
@@ -1327,12 +1306,7 @@ class SEQUENCER_PT_adjust_video(
|
|
|
1327
1306
|
"""
|
|
1328
1307
|
...
|
|
1329
1308
|
|
|
1330
|
-
class SEQUENCER_PT_annotation(
|
|
1331
|
-
bpy.types.Panel,
|
|
1332
|
-
bl_ui.properties_grease_pencil_common.AnnotationDataPanel,
|
|
1333
|
-
SequencerButtonsPanel_Output,
|
|
1334
|
-
bpy_types._GenericUI,
|
|
1335
|
-
):
|
|
1309
|
+
class SEQUENCER_PT_annotation(bpy.types.Panel, bpy_types._GenericUI):
|
|
1336
1310
|
bl_category: typing.Any
|
|
1337
1311
|
bl_label: typing.Any
|
|
1338
1312
|
bl_options: typing.Any
|
|
@@ -1373,12 +1347,7 @@ class SEQUENCER_PT_annotation(
|
|
|
1373
1347
|
"""
|
|
1374
1348
|
...
|
|
1375
1349
|
|
|
1376
|
-
class SEQUENCER_PT_annotation_onion(
|
|
1377
|
-
bpy.types.Panel,
|
|
1378
|
-
bl_ui.properties_grease_pencil_common.AnnotationOnionSkin,
|
|
1379
|
-
SequencerButtonsPanel_Output,
|
|
1380
|
-
bpy_types._GenericUI,
|
|
1381
|
-
):
|
|
1350
|
+
class SEQUENCER_PT_annotation_onion(bpy.types.Panel, bpy_types._GenericUI):
|
|
1382
1351
|
bl_category: typing.Any
|
|
1383
1352
|
bl_label: typing.Any
|
|
1384
1353
|
bl_options: typing.Any
|
|
@@ -1420,9 +1389,7 @@ class SEQUENCER_PT_annotation_onion(
|
|
|
1420
1389
|
"""
|
|
1421
1390
|
...
|
|
1422
1391
|
|
|
1423
|
-
class SEQUENCER_PT_cache_settings(
|
|
1424
|
-
bpy.types.Panel, SequencerButtonsPanel, bpy_types._GenericUI
|
|
1425
|
-
):
|
|
1392
|
+
class SEQUENCER_PT_cache_settings(bpy.types.Panel, bpy_types._GenericUI):
|
|
1426
1393
|
bl_category: typing.Any
|
|
1427
1394
|
bl_label: typing.Any
|
|
1428
1395
|
bl_region_type: typing.Any
|
|
@@ -1461,9 +1428,7 @@ class SEQUENCER_PT_cache_settings(
|
|
|
1461
1428
|
"""
|
|
1462
1429
|
...
|
|
1463
1430
|
|
|
1464
|
-
class SEQUENCER_PT_cache_view_settings(
|
|
1465
|
-
bpy.types.Panel, SequencerButtonsPanel, bpy_types._GenericUI
|
|
1466
|
-
):
|
|
1431
|
+
class SEQUENCER_PT_cache_view_settings(bpy.types.Panel, bpy_types._GenericUI):
|
|
1467
1432
|
bl_category: typing.Any
|
|
1468
1433
|
bl_label: typing.Any
|
|
1469
1434
|
bl_parent_id: typing.Any
|
|
@@ -1510,9 +1475,7 @@ class SEQUENCER_PT_cache_view_settings(
|
|
|
1510
1475
|
"""
|
|
1511
1476
|
...
|
|
1512
1477
|
|
|
1513
|
-
class SEQUENCER_PT_color_tag_picker(
|
|
1514
|
-
bpy.types.Panel, SequencerColorTagPicker, bpy_types._GenericUI
|
|
1515
|
-
):
|
|
1478
|
+
class SEQUENCER_PT_color_tag_picker(bpy.types.Panel, bpy_types._GenericUI):
|
|
1516
1479
|
bl_category: typing.Any
|
|
1517
1480
|
bl_label: typing.Any
|
|
1518
1481
|
bl_options: typing.Any
|
|
@@ -1544,12 +1507,7 @@ class SEQUENCER_PT_color_tag_picker(
|
|
|
1544
1507
|
"""
|
|
1545
1508
|
...
|
|
1546
1509
|
|
|
1547
|
-
class SEQUENCER_PT_custom_props(
|
|
1548
|
-
bpy.types.Panel,
|
|
1549
|
-
SequencerButtonsPanel,
|
|
1550
|
-
rna_prop_ui.PropertyPanel,
|
|
1551
|
-
bpy_types._GenericUI,
|
|
1552
|
-
):
|
|
1510
|
+
class SEQUENCER_PT_custom_props(bpy.types.Panel, bpy_types._GenericUI):
|
|
1553
1511
|
"""The subclass should have its own poll function
|
|
1554
1512
|
and the variable '_context_path' MUST be set.
|
|
1555
1513
|
"""
|
|
@@ -1580,7 +1538,7 @@ class SEQUENCER_PT_custom_props(
|
|
|
1580
1538
|
"""
|
|
1581
1539
|
...
|
|
1582
1540
|
|
|
1583
|
-
class SEQUENCER_PT_effect(bpy.types.Panel,
|
|
1541
|
+
class SEQUENCER_PT_effect(bpy.types.Panel, bpy_types._GenericUI):
|
|
1584
1542
|
bl_category: typing.Any
|
|
1585
1543
|
bl_label: typing.Any
|
|
1586
1544
|
bl_region_type: typing.Any
|
|
@@ -1619,9 +1577,7 @@ class SEQUENCER_PT_effect(bpy.types.Panel, SequencerButtonsPanel, bpy_types._Gen
|
|
|
1619
1577
|
"""
|
|
1620
1578
|
...
|
|
1621
1579
|
|
|
1622
|
-
class SEQUENCER_PT_effect_text_layout(
|
|
1623
|
-
bpy.types.Panel, SequencerButtonsPanel, bpy_types._GenericUI
|
|
1624
|
-
):
|
|
1580
|
+
class SEQUENCER_PT_effect_text_layout(bpy.types.Panel, bpy_types._GenericUI):
|
|
1625
1581
|
bl_category: typing.Any
|
|
1626
1582
|
bl_label: typing.Any
|
|
1627
1583
|
bl_parent_id: typing.Any
|
|
@@ -1661,9 +1617,7 @@ class SEQUENCER_PT_effect_text_layout(
|
|
|
1661
1617
|
"""
|
|
1662
1618
|
...
|
|
1663
1619
|
|
|
1664
|
-
class SEQUENCER_PT_effect_text_style(
|
|
1665
|
-
bpy.types.Panel, SequencerButtonsPanel, bpy_types._GenericUI
|
|
1666
|
-
):
|
|
1620
|
+
class SEQUENCER_PT_effect_text_style(bpy.types.Panel, bpy_types._GenericUI):
|
|
1667
1621
|
bl_category: typing.Any
|
|
1668
1622
|
bl_label: typing.Any
|
|
1669
1623
|
bl_parent_id: typing.Any
|
|
@@ -1703,9 +1657,7 @@ class SEQUENCER_PT_effect_text_style(
|
|
|
1703
1657
|
"""
|
|
1704
1658
|
...
|
|
1705
1659
|
|
|
1706
|
-
class SEQUENCER_PT_frame_overlay(
|
|
1707
|
-
bpy.types.Panel, SequencerButtonsPanel_Output, bpy_types._GenericUI
|
|
1708
|
-
):
|
|
1660
|
+
class SEQUENCER_PT_frame_overlay(bpy.types.Panel, bpy_types._GenericUI):
|
|
1709
1661
|
bl_category: typing.Any
|
|
1710
1662
|
bl_label: typing.Any
|
|
1711
1663
|
bl_options: typing.Any
|
|
@@ -1783,7 +1735,7 @@ class SEQUENCER_PT_gizmo_display(bpy.types.Panel, bpy_types._GenericUI):
|
|
|
1783
1735
|
"""
|
|
1784
1736
|
...
|
|
1785
1737
|
|
|
1786
|
-
class SEQUENCER_PT_mask(bpy.types.Panel,
|
|
1738
|
+
class SEQUENCER_PT_mask(bpy.types.Panel, bpy_types._GenericUI):
|
|
1787
1739
|
bl_category: typing.Any
|
|
1788
1740
|
bl_label: typing.Any
|
|
1789
1741
|
bl_region_type: typing.Any
|
|
@@ -1822,9 +1774,7 @@ class SEQUENCER_PT_mask(bpy.types.Panel, SequencerButtonsPanel, bpy_types._Gener
|
|
|
1822
1774
|
"""
|
|
1823
1775
|
...
|
|
1824
1776
|
|
|
1825
|
-
class SEQUENCER_PT_modifiers(
|
|
1826
|
-
bpy.types.Panel, SequencerButtonsPanel, bpy_types._GenericUI
|
|
1827
|
-
):
|
|
1777
|
+
class SEQUENCER_PT_modifiers(bpy.types.Panel, bpy_types._GenericUI):
|
|
1828
1778
|
bl_category: typing.Any
|
|
1829
1779
|
bl_label: typing.Any
|
|
1830
1780
|
bl_region_type: typing.Any
|
|
@@ -1855,9 +1805,7 @@ class SEQUENCER_PT_modifiers(
|
|
|
1855
1805
|
"""
|
|
1856
1806
|
...
|
|
1857
1807
|
|
|
1858
|
-
class SEQUENCER_PT_movie_clip(
|
|
1859
|
-
bpy.types.Panel, SequencerButtonsPanel, bpy_types._GenericUI
|
|
1860
|
-
):
|
|
1808
|
+
class SEQUENCER_PT_movie_clip(bpy.types.Panel, bpy_types._GenericUI):
|
|
1861
1809
|
bl_category: typing.Any
|
|
1862
1810
|
bl_label: typing.Any
|
|
1863
1811
|
bl_options: typing.Any
|
|
@@ -1928,9 +1876,7 @@ class SEQUENCER_PT_overlay(bpy.types.Panel, bpy_types._GenericUI):
|
|
|
1928
1876
|
"""
|
|
1929
1877
|
...
|
|
1930
1878
|
|
|
1931
|
-
class SEQUENCER_PT_preview(
|
|
1932
|
-
bpy.types.Panel, SequencerButtonsPanel_Output, bpy_types._GenericUI
|
|
1933
|
-
):
|
|
1879
|
+
class SEQUENCER_PT_preview(bpy.types.Panel, bpy_types._GenericUI):
|
|
1934
1880
|
bl_category: typing.Any
|
|
1935
1881
|
bl_label: typing.Any
|
|
1936
1882
|
bl_options: typing.Any
|
|
@@ -2040,9 +1986,7 @@ class SEQUENCER_PT_preview_snapping(bpy.types.Panel, bpy_types._GenericUI):
|
|
|
2040
1986
|
"""
|
|
2041
1987
|
...
|
|
2042
1988
|
|
|
2043
|
-
class SEQUENCER_PT_proxy_settings(
|
|
2044
|
-
bpy.types.Panel, SequencerButtonsPanel, bpy_types._GenericUI
|
|
2045
|
-
):
|
|
1989
|
+
class SEQUENCER_PT_proxy_settings(bpy.types.Panel, bpy_types._GenericUI):
|
|
2046
1990
|
bl_category: typing.Any
|
|
2047
1991
|
bl_label: typing.Any
|
|
2048
1992
|
bl_region_type: typing.Any
|
|
@@ -2081,7 +2025,7 @@ class SEQUENCER_PT_proxy_settings(
|
|
|
2081
2025
|
"""
|
|
2082
2026
|
...
|
|
2083
2027
|
|
|
2084
|
-
class SEQUENCER_PT_scene(bpy.types.Panel,
|
|
2028
|
+
class SEQUENCER_PT_scene(bpy.types.Panel, bpy_types._GenericUI):
|
|
2085
2029
|
bl_category: typing.Any
|
|
2086
2030
|
bl_label: typing.Any
|
|
2087
2031
|
bl_region_type: typing.Any
|
|
@@ -2120,9 +2064,7 @@ class SEQUENCER_PT_scene(bpy.types.Panel, SequencerButtonsPanel, bpy_types._Gene
|
|
|
2120
2064
|
"""
|
|
2121
2065
|
...
|
|
2122
2066
|
|
|
2123
|
-
class SEQUENCER_PT_scene_sound(
|
|
2124
|
-
bpy.types.Panel, SequencerButtonsPanel, bpy_types._GenericUI
|
|
2125
|
-
):
|
|
2067
|
+
class SEQUENCER_PT_scene_sound(bpy.types.Panel, bpy_types._GenericUI):
|
|
2126
2068
|
bl_category: typing.Any
|
|
2127
2069
|
bl_label: typing.Any
|
|
2128
2070
|
bl_region_type: typing.Any
|
|
@@ -2347,7 +2289,7 @@ class SEQUENCER_PT_snapping(bpy.types.Panel, bpy_types._GenericUI):
|
|
|
2347
2289
|
"""
|
|
2348
2290
|
...
|
|
2349
2291
|
|
|
2350
|
-
class SEQUENCER_PT_source(bpy.types.Panel,
|
|
2292
|
+
class SEQUENCER_PT_source(bpy.types.Panel, bpy_types._GenericUI):
|
|
2351
2293
|
bl_category: typing.Any
|
|
2352
2294
|
bl_label: typing.Any
|
|
2353
2295
|
bl_options: typing.Any
|
|
@@ -2387,7 +2329,7 @@ class SEQUENCER_PT_source(bpy.types.Panel, SequencerButtonsPanel, bpy_types._Gen
|
|
|
2387
2329
|
"""
|
|
2388
2330
|
...
|
|
2389
2331
|
|
|
2390
|
-
class SEQUENCER_PT_strip(bpy.types.Panel,
|
|
2332
|
+
class SEQUENCER_PT_strip(bpy.types.Panel, bpy_types._GenericUI):
|
|
2391
2333
|
bl_category: typing.Any
|
|
2392
2334
|
bl_label: typing.Any
|
|
2393
2335
|
bl_options: typing.Any
|
|
@@ -2419,9 +2361,7 @@ class SEQUENCER_PT_strip(bpy.types.Panel, SequencerButtonsPanel, bpy_types._Gene
|
|
|
2419
2361
|
"""
|
|
2420
2362
|
...
|
|
2421
2363
|
|
|
2422
|
-
class SEQUENCER_PT_strip_cache(
|
|
2423
|
-
bpy.types.Panel, SequencerButtonsPanel, bpy_types._GenericUI
|
|
2424
|
-
):
|
|
2364
|
+
class SEQUENCER_PT_strip_cache(bpy.types.Panel, bpy_types._GenericUI):
|
|
2425
2365
|
bl_category: typing.Any
|
|
2426
2366
|
bl_label: typing.Any
|
|
2427
2367
|
bl_options: typing.Any
|
|
@@ -2468,9 +2408,7 @@ class SEQUENCER_PT_strip_cache(
|
|
|
2468
2408
|
"""
|
|
2469
2409
|
...
|
|
2470
2410
|
|
|
2471
|
-
class SEQUENCER_PT_strip_proxy(
|
|
2472
|
-
bpy.types.Panel, SequencerButtonsPanel, bpy_types._GenericUI
|
|
2473
|
-
):
|
|
2411
|
+
class SEQUENCER_PT_strip_proxy(bpy.types.Panel, bpy_types._GenericUI):
|
|
2474
2412
|
bl_category: typing.Any
|
|
2475
2413
|
bl_label: typing.Any
|
|
2476
2414
|
bl_region_type: typing.Any
|
|
@@ -2516,7 +2454,7 @@ class SEQUENCER_PT_strip_proxy(
|
|
|
2516
2454
|
"""
|
|
2517
2455
|
...
|
|
2518
2456
|
|
|
2519
|
-
class SEQUENCER_PT_time(bpy.types.Panel,
|
|
2457
|
+
class SEQUENCER_PT_time(bpy.types.Panel, bpy_types._GenericUI):
|
|
2520
2458
|
bl_category: typing.Any
|
|
2521
2459
|
bl_label: typing.Any
|
|
2522
2460
|
bl_options: typing.Any
|
|
@@ -2563,9 +2501,7 @@ class SEQUENCER_PT_time(bpy.types.Panel, SequencerButtonsPanel, bpy_types._Gener
|
|
|
2563
2501
|
"""
|
|
2564
2502
|
...
|
|
2565
2503
|
|
|
2566
|
-
class SEQUENCER_PT_view(
|
|
2567
|
-
bpy.types.Panel, SequencerButtonsPanel_Output, bpy_types._GenericUI
|
|
2568
|
-
):
|
|
2504
|
+
class SEQUENCER_PT_view(bpy.types.Panel, bpy_types._GenericUI):
|
|
2569
2505
|
bl_category: typing.Any
|
|
2570
2506
|
bl_label: typing.Any
|
|
2571
2507
|
bl_region_type: typing.Any
|
|
@@ -2596,9 +2532,7 @@ class SEQUENCER_PT_view(
|
|
|
2596
2532
|
"""
|
|
2597
2533
|
...
|
|
2598
2534
|
|
|
2599
|
-
class SEQUENCER_PT_view_cursor(
|
|
2600
|
-
bpy.types.Panel, SequencerButtonsPanel_Output, bpy_types._GenericUI
|
|
2601
|
-
):
|
|
2535
|
+
class SEQUENCER_PT_view_cursor(bpy.types.Panel, bpy_types._GenericUI):
|
|
2602
2536
|
bl_category: typing.Any
|
|
2603
2537
|
bl_label: typing.Any
|
|
2604
2538
|
bl_region_type: typing.Any
|
|
@@ -2629,9 +2563,7 @@ class SEQUENCER_PT_view_cursor(
|
|
|
2629
2563
|
"""
|
|
2630
2564
|
...
|
|
2631
2565
|
|
|
2632
|
-
class SEQUENCER_PT_view_safe_areas(
|
|
2633
|
-
bpy.types.Panel, SequencerButtonsPanel_Output, bpy_types._GenericUI
|
|
2634
|
-
):
|
|
2566
|
+
class SEQUENCER_PT_view_safe_areas(bpy.types.Panel, bpy_types._GenericUI):
|
|
2635
2567
|
bl_category: typing.Any
|
|
2636
2568
|
bl_label: typing.Any
|
|
2637
2569
|
bl_options: typing.Any
|
|
@@ -2678,9 +2610,7 @@ class SEQUENCER_PT_view_safe_areas(
|
|
|
2678
2610
|
"""
|
|
2679
2611
|
...
|
|
2680
2612
|
|
|
2681
|
-
class SEQUENCER_PT_view_safe_areas_center_cut(
|
|
2682
|
-
bpy.types.Panel, SequencerButtonsPanel_Output, bpy_types._GenericUI
|
|
2683
|
-
):
|
|
2613
|
+
class SEQUENCER_PT_view_safe_areas_center_cut(bpy.types.Panel, bpy_types._GenericUI):
|
|
2684
2614
|
bl_category: typing.Any
|
|
2685
2615
|
bl_label: typing.Any
|
|
2686
2616
|
bl_options: typing.Any
|
bl_ui/space_time/__init__.pyi
CHANGED
|
@@ -130,9 +130,7 @@ class TIME_MT_view(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
130
130
|
"""
|
|
131
131
|
...
|
|
132
132
|
|
|
133
|
-
class TIME_PT_auto_keyframing(
|
|
134
|
-
bpy.types.Panel, TimelinePanelButtons, bpy_types._GenericUI
|
|
135
|
-
):
|
|
133
|
+
class TIME_PT_auto_keyframing(bpy.types.Panel, bpy_types._GenericUI):
|
|
136
134
|
bl_label: typing.Any
|
|
137
135
|
bl_options: typing.Any
|
|
138
136
|
bl_region_type: typing.Any
|
|
@@ -172,9 +170,7 @@ class TIME_PT_auto_keyframing(
|
|
|
172
170
|
"""
|
|
173
171
|
...
|
|
174
172
|
|
|
175
|
-
class TIME_PT_keyframing_settings(
|
|
176
|
-
bpy.types.Panel, TimelinePanelButtons, bpy_types._GenericUI
|
|
177
|
-
):
|
|
173
|
+
class TIME_PT_keyframing_settings(bpy.types.Panel, bpy_types._GenericUI):
|
|
178
174
|
bl_label: typing.Any
|
|
179
175
|
bl_options: typing.Any
|
|
180
176
|
bl_region_type: typing.Any
|
|
@@ -213,7 +209,7 @@ class TIME_PT_keyframing_settings(
|
|
|
213
209
|
"""
|
|
214
210
|
...
|
|
215
211
|
|
|
216
|
-
class TIME_PT_playback(bpy.types.Panel,
|
|
212
|
+
class TIME_PT_playback(bpy.types.Panel, bpy_types._GenericUI):
|
|
217
213
|
bl_label: typing.Any
|
|
218
214
|
bl_region_type: typing.Any
|
|
219
215
|
bl_rna: typing.Any
|
|
@@ -1,18 +1,13 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bl_ui.space_toolsystem_common
|
|
5
4
|
import bpy.types
|
|
6
5
|
import bpy_types
|
|
7
6
|
|
|
8
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
9
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
10
9
|
|
|
11
|
-
class IMAGE_PT_tools_active(
|
|
12
|
-
bpy.types.Panel,
|
|
13
|
-
bl_ui.space_toolsystem_common.ToolSelectPanelHelper,
|
|
14
|
-
bpy_types._GenericUI,
|
|
15
|
-
):
|
|
10
|
+
class IMAGE_PT_tools_active(bpy.types.Panel, bpy_types._GenericUI):
|
|
16
11
|
bl_label: typing.Any
|
|
17
12
|
bl_options: typing.Any
|
|
18
13
|
bl_region_type: typing.Any
|
|
@@ -35,11 +30,7 @@ class IMAGE_PT_tools_active(
|
|
|
35
30
|
"""
|
|
36
31
|
...
|
|
37
32
|
|
|
38
|
-
class NODE_PT_tools_active(
|
|
39
|
-
bpy.types.Panel,
|
|
40
|
-
bl_ui.space_toolsystem_common.ToolSelectPanelHelper,
|
|
41
|
-
bpy_types._GenericUI,
|
|
42
|
-
):
|
|
33
|
+
class NODE_PT_tools_active(bpy.types.Panel, bpy_types._GenericUI):
|
|
43
34
|
bl_label: typing.Any
|
|
44
35
|
bl_options: typing.Any
|
|
45
36
|
bl_region_type: typing.Any
|
|
@@ -62,11 +53,7 @@ class NODE_PT_tools_active(
|
|
|
62
53
|
"""
|
|
63
54
|
...
|
|
64
55
|
|
|
65
|
-
class SEQUENCER_PT_tools_active(
|
|
66
|
-
bpy.types.Panel,
|
|
67
|
-
bl_ui.space_toolsystem_common.ToolSelectPanelHelper,
|
|
68
|
-
bpy_types._GenericUI,
|
|
69
|
-
):
|
|
56
|
+
class SEQUENCER_PT_tools_active(bpy.types.Panel, bpy_types._GenericUI):
|
|
70
57
|
bl_label: typing.Any
|
|
71
58
|
bl_options: typing.Any
|
|
72
59
|
bl_region_type: typing.Any
|
|
@@ -89,11 +76,7 @@ class SEQUENCER_PT_tools_active(
|
|
|
89
76
|
"""
|
|
90
77
|
...
|
|
91
78
|
|
|
92
|
-
class VIEW3D_PT_tools_active(
|
|
93
|
-
bpy.types.Panel,
|
|
94
|
-
bl_ui.space_toolsystem_common.ToolSelectPanelHelper,
|
|
95
|
-
bpy_types._GenericUI,
|
|
96
|
-
):
|
|
79
|
+
class VIEW3D_PT_tools_active(bpy.types.Panel, bpy_types._GenericUI):
|
|
97
80
|
bl_label: typing.Any
|
|
98
81
|
bl_options: typing.Any
|
|
99
82
|
bl_region_type: typing.Any
|