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
|
@@ -2,13 +2,12 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bpy.types
|
|
5
|
-
import bpy_extras.asset_utils
|
|
6
5
|
import bpy_types
|
|
7
6
|
|
|
8
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
9
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
10
9
|
|
|
11
|
-
class ASSETBROWSER_MT_catalog(bpy.types.Menu,
|
|
10
|
+
class ASSETBROWSER_MT_catalog(bpy.types.Menu, bpy_types._GenericUI):
|
|
12
11
|
bl_label: typing.Any
|
|
13
12
|
bl_rna: typing.Any
|
|
14
13
|
id_data: typing.Any
|
|
@@ -36,9 +35,7 @@ class ASSETBROWSER_MT_catalog(bpy.types.Menu, AssetBrowserMenu, bpy_types._Gener
|
|
|
36
35
|
"""
|
|
37
36
|
...
|
|
38
37
|
|
|
39
|
-
class ASSETBROWSER_MT_context_menu(
|
|
40
|
-
bpy.types.Menu, AssetBrowserMenu, bpy_types._GenericUI
|
|
41
|
-
):
|
|
38
|
+
class ASSETBROWSER_MT_context_menu(bpy.types.Menu, bpy_types._GenericUI):
|
|
42
39
|
bl_label: typing.Any
|
|
43
40
|
bl_rna: typing.Any
|
|
44
41
|
id_data: typing.Any
|
|
@@ -59,9 +56,7 @@ class ASSETBROWSER_MT_context_menu(
|
|
|
59
56
|
"""
|
|
60
57
|
...
|
|
61
58
|
|
|
62
|
-
class ASSETBROWSER_MT_editor_menus(
|
|
63
|
-
bpy.types.Menu, AssetBrowserMenu, bpy_types._GenericUI
|
|
64
|
-
):
|
|
59
|
+
class ASSETBROWSER_MT_editor_menus(bpy.types.Menu, bpy_types._GenericUI):
|
|
65
60
|
bl_idname: typing.Any
|
|
66
61
|
bl_label: typing.Any
|
|
67
62
|
bl_rna: typing.Any
|
|
@@ -111,7 +106,7 @@ class ASSETBROWSER_MT_metadata_preview_menu(bpy.types.Menu, bpy_types._GenericUI
|
|
|
111
106
|
"""
|
|
112
107
|
...
|
|
113
108
|
|
|
114
|
-
class ASSETBROWSER_MT_select(bpy.types.Menu,
|
|
109
|
+
class ASSETBROWSER_MT_select(bpy.types.Menu, bpy_types._GenericUI):
|
|
115
110
|
bl_label: typing.Any
|
|
116
111
|
bl_rna: typing.Any
|
|
117
112
|
id_data: typing.Any
|
|
@@ -139,7 +134,7 @@ class ASSETBROWSER_MT_select(bpy.types.Menu, AssetBrowserMenu, bpy_types._Generi
|
|
|
139
134
|
"""
|
|
140
135
|
...
|
|
141
136
|
|
|
142
|
-
class ASSETBROWSER_MT_view(bpy.types.Menu,
|
|
137
|
+
class ASSETBROWSER_MT_view(bpy.types.Menu, bpy_types._GenericUI):
|
|
143
138
|
bl_label: typing.Any
|
|
144
139
|
bl_rna: typing.Any
|
|
145
140
|
id_data: typing.Any
|
|
@@ -167,9 +162,7 @@ class ASSETBROWSER_MT_view(bpy.types.Menu, AssetBrowserMenu, bpy_types._GenericU
|
|
|
167
162
|
"""
|
|
168
163
|
...
|
|
169
164
|
|
|
170
|
-
class ASSETBROWSER_PT_display(
|
|
171
|
-
bpy.types.Panel, bpy_extras.asset_utils.AssetBrowserPanel, bpy_types._GenericUI
|
|
172
|
-
):
|
|
165
|
+
class ASSETBROWSER_PT_display(bpy.types.Panel, bpy_types._GenericUI):
|
|
173
166
|
bl_label: typing.Any
|
|
174
167
|
bl_region_type: typing.Any
|
|
175
168
|
bl_rna: typing.Any
|
|
@@ -200,9 +193,7 @@ class ASSETBROWSER_PT_display(
|
|
|
200
193
|
"""
|
|
201
194
|
...
|
|
202
195
|
|
|
203
|
-
class ASSETBROWSER_PT_filter(
|
|
204
|
-
bpy.types.Panel, bpy_extras.asset_utils.AssetBrowserPanel, bpy_types._GenericUI
|
|
205
|
-
):
|
|
196
|
+
class ASSETBROWSER_PT_filter(bpy.types.Panel, bpy_types._GenericUI):
|
|
206
197
|
bl_category: typing.Any
|
|
207
198
|
bl_label: typing.Any
|
|
208
199
|
bl_region_type: typing.Any
|
|
@@ -233,9 +224,7 @@ class ASSETBROWSER_PT_filter(
|
|
|
233
224
|
"""
|
|
234
225
|
...
|
|
235
226
|
|
|
236
|
-
class ASSETBROWSER_PT_metadata(
|
|
237
|
-
bpy.types.Panel, bpy_extras.asset_utils.AssetBrowserPanel, bpy_types._GenericUI
|
|
238
|
-
):
|
|
227
|
+
class ASSETBROWSER_PT_metadata(bpy.types.Panel, bpy_types._GenericUI):
|
|
239
228
|
bl_label: typing.Any
|
|
240
229
|
bl_options: typing.Any
|
|
241
230
|
bl_region_type: typing.Any
|
|
@@ -277,9 +266,7 @@ class ASSETBROWSER_PT_metadata(
|
|
|
277
266
|
"""
|
|
278
267
|
...
|
|
279
268
|
|
|
280
|
-
class ASSETBROWSER_PT_metadata_preview(
|
|
281
|
-
bpy.types.Panel, bpy_extras.asset_utils.AssetMetaDataPanel, bpy_types._GenericUI
|
|
282
|
-
):
|
|
269
|
+
class ASSETBROWSER_PT_metadata_preview(bpy.types.Panel, bpy_types._GenericUI):
|
|
283
270
|
bl_label: typing.Any
|
|
284
271
|
bl_region_type: typing.Any
|
|
285
272
|
bl_rna: typing.Any
|
|
@@ -309,9 +296,7 @@ class ASSETBROWSER_PT_metadata_preview(
|
|
|
309
296
|
"""
|
|
310
297
|
...
|
|
311
298
|
|
|
312
|
-
class ASSETBROWSER_PT_metadata_tags(
|
|
313
|
-
bpy.types.Panel, bpy_extras.asset_utils.AssetMetaDataPanel, bpy_types._GenericUI
|
|
314
|
-
):
|
|
299
|
+
class ASSETBROWSER_PT_metadata_tags(bpy.types.Panel, bpy_types._GenericUI):
|
|
315
300
|
bl_label: typing.Any
|
|
316
301
|
bl_region_type: typing.Any
|
|
317
302
|
bl_rna: typing.Any
|
|
@@ -487,9 +472,7 @@ class FILEBROWSER_MT_bookmarks_recents_specials_menu(
|
|
|
487
472
|
"""
|
|
488
473
|
...
|
|
489
474
|
|
|
490
|
-
class FILEBROWSER_MT_context_menu(
|
|
491
|
-
bpy.types.Menu, FileBrowserMenu, bpy_types._GenericUI
|
|
492
|
-
):
|
|
475
|
+
class FILEBROWSER_MT_context_menu(bpy.types.Menu, bpy_types._GenericUI):
|
|
493
476
|
bl_label: typing.Any
|
|
494
477
|
bl_rna: typing.Any
|
|
495
478
|
id_data: typing.Any
|
|
@@ -517,9 +500,7 @@ class FILEBROWSER_MT_context_menu(
|
|
|
517
500
|
"""
|
|
518
501
|
...
|
|
519
502
|
|
|
520
|
-
class FILEBROWSER_MT_editor_menus(
|
|
521
|
-
bpy.types.Menu, FileBrowserMenu, bpy_types._GenericUI
|
|
522
|
-
):
|
|
503
|
+
class FILEBROWSER_MT_editor_menus(bpy.types.Menu, bpy_types._GenericUI):
|
|
523
504
|
bl_idname: typing.Any
|
|
524
505
|
bl_label: typing.Any
|
|
525
506
|
bl_rna: typing.Any
|
|
@@ -548,7 +529,7 @@ class FILEBROWSER_MT_editor_menus(
|
|
|
548
529
|
"""
|
|
549
530
|
...
|
|
550
531
|
|
|
551
|
-
class FILEBROWSER_MT_select(bpy.types.Menu,
|
|
532
|
+
class FILEBROWSER_MT_select(bpy.types.Menu, bpy_types._GenericUI):
|
|
552
533
|
bl_label: typing.Any
|
|
553
534
|
bl_rna: typing.Any
|
|
554
535
|
id_data: typing.Any
|
|
@@ -576,7 +557,7 @@ class FILEBROWSER_MT_select(bpy.types.Menu, FileBrowserMenu, bpy_types._GenericU
|
|
|
576
557
|
"""
|
|
577
558
|
...
|
|
578
559
|
|
|
579
|
-
class FILEBROWSER_MT_view(bpy.types.Menu,
|
|
560
|
+
class FILEBROWSER_MT_view(bpy.types.Menu, bpy_types._GenericUI):
|
|
580
561
|
bl_label: typing.Any
|
|
581
562
|
bl_rna: typing.Any
|
|
582
563
|
id_data: typing.Any
|
|
@@ -672,9 +653,7 @@ class FILEBROWSER_PT_advanced_filter(bpy.types.Panel, bpy_types._GenericUI):
|
|
|
672
653
|
"""
|
|
673
654
|
...
|
|
674
655
|
|
|
675
|
-
class FILEBROWSER_PT_bookmarks_favorites(
|
|
676
|
-
bpy.types.Panel, FileBrowserPanel, bpy_types._GenericUI
|
|
677
|
-
):
|
|
656
|
+
class FILEBROWSER_PT_bookmarks_favorites(bpy.types.Panel, bpy_types._GenericUI):
|
|
678
657
|
bl_category: typing.Any
|
|
679
658
|
bl_label: typing.Any
|
|
680
659
|
bl_region_type: typing.Any
|
|
@@ -878,7 +857,7 @@ class FILEBROWSER_PT_directory_path(bpy.types.Panel, bpy_types._GenericUI):
|
|
|
878
857
|
"""
|
|
879
858
|
...
|
|
880
859
|
|
|
881
|
-
class FILEBROWSER_PT_display(bpy.types.Panel,
|
|
860
|
+
class FILEBROWSER_PT_display(bpy.types.Panel, bpy_types._GenericUI):
|
|
882
861
|
bl_label: typing.Any
|
|
883
862
|
bl_region_type: typing.Any
|
|
884
863
|
bl_rna: typing.Any
|
|
@@ -909,7 +888,7 @@ class FILEBROWSER_PT_display(bpy.types.Panel, FileBrowserPanel, bpy_types._Gener
|
|
|
909
888
|
"""
|
|
910
889
|
...
|
|
911
890
|
|
|
912
|
-
class FILEBROWSER_PT_filter(bpy.types.Panel,
|
|
891
|
+
class FILEBROWSER_PT_filter(bpy.types.Panel, bpy_types._GenericUI):
|
|
913
892
|
bl_label: typing.Any
|
|
914
893
|
bl_region_type: typing.Any
|
|
915
894
|
bl_rna: typing.Any
|
bl_ui/space_graph/__init__.pyi
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bl_ui.space_dopesheet
|
|
5
4
|
import bpy.types
|
|
6
5
|
import bpy_types
|
|
7
6
|
|
|
@@ -485,11 +484,7 @@ class GRAPH_MT_view_pie(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
485
484
|
"""
|
|
486
485
|
...
|
|
487
486
|
|
|
488
|
-
class GRAPH_PT_filters(
|
|
489
|
-
bpy.types.Panel,
|
|
490
|
-
bl_ui.space_dopesheet.DopesheetFilterPopoverBase,
|
|
491
|
-
bpy_types._GenericUI,
|
|
492
|
-
):
|
|
487
|
+
class GRAPH_PT_filters(bpy.types.Panel, bpy_types._GenericUI):
|
|
493
488
|
bl_label: typing.Any
|
|
494
489
|
bl_region_type: typing.Any
|
|
495
490
|
bl_rna: typing.Any
|