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,13 +2,12 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bpy.types
|
|
5
|
-
import bpy_types
|
|
6
5
|
import rna_prop_ui
|
|
7
6
|
|
|
8
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
9
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
10
9
|
|
|
11
|
-
class WORKSPACE_PT_addons(bpy.types.Panel
|
|
10
|
+
class WORKSPACE_PT_addons(WorkSpaceButtonsPanel, bpy.types.Panel):
|
|
12
11
|
addon_map: typing.Any
|
|
13
12
|
bl_category: typing.Any
|
|
14
13
|
bl_label: typing.Any
|
|
@@ -50,10 +49,7 @@ class WORKSPACE_PT_addons(bpy.types.Panel, WorkSpaceButtonsPanel, bpy_types._Gen
|
|
|
50
49
|
...
|
|
51
50
|
|
|
52
51
|
class WORKSPACE_PT_custom_props(
|
|
53
|
-
bpy.types.Panel
|
|
54
|
-
WorkSpaceButtonsPanel,
|
|
55
|
-
rna_prop_ui.PropertyPanel,
|
|
56
|
-
bpy_types._GenericUI,
|
|
52
|
+
rna_prop_ui.PropertyPanel, WorkSpaceButtonsPanel, bpy.types.Panel
|
|
57
53
|
):
|
|
58
54
|
"""The subclass should have its own poll function
|
|
59
55
|
and the variable '_context_path' MUST be set.
|
|
@@ -85,7 +81,7 @@ class WORKSPACE_PT_custom_props(
|
|
|
85
81
|
"""
|
|
86
82
|
...
|
|
87
83
|
|
|
88
|
-
class WORKSPACE_PT_main(bpy.types.Panel
|
|
84
|
+
class WORKSPACE_PT_main(WorkSpaceButtonsPanel, bpy.types.Panel):
|
|
89
85
|
bl_category: typing.Any
|
|
90
86
|
bl_label: typing.Any
|
|
91
87
|
bl_options: typing.Any
|
|
@@ -117,7 +113,7 @@ class WORKSPACE_PT_main(bpy.types.Panel, WorkSpaceButtonsPanel, bpy_types._Gener
|
|
|
117
113
|
"""
|
|
118
114
|
...
|
|
119
115
|
|
|
120
|
-
class WORKSPACE_UL_addons_items(bpy.types.UIList
|
|
116
|
+
class WORKSPACE_UL_addons_items(bpy.types.UIList):
|
|
121
117
|
bl_rna: typing.Any
|
|
122
118
|
id_data: typing.Any
|
|
123
119
|
|
|
@@ -2,15 +2,12 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bpy.types
|
|
5
|
-
import bpy_types
|
|
6
5
|
import rna_prop_ui
|
|
7
6
|
|
|
8
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
9
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
10
9
|
|
|
11
|
-
class EEVEE_WORLD_PT_lightprobe(
|
|
12
|
-
bpy.types.Panel, WorldButtonsPanel, bpy_types._GenericUI
|
|
13
|
-
):
|
|
10
|
+
class EEVEE_WORLD_PT_lightprobe(WorldButtonsPanel, bpy.types.Panel):
|
|
14
11
|
COMPAT_ENGINES: typing.Any
|
|
15
12
|
bl_context: typing.Any
|
|
16
13
|
bl_label: typing.Any
|
|
@@ -43,7 +40,7 @@ class EEVEE_WORLD_PT_lightprobe(
|
|
|
43
40
|
"""
|
|
44
41
|
...
|
|
45
42
|
|
|
46
|
-
class EEVEE_WORLD_PT_mist(bpy.types.Panel
|
|
43
|
+
class EEVEE_WORLD_PT_mist(WorldButtonsPanel, bpy.types.Panel):
|
|
47
44
|
COMPAT_ENGINES: typing.Any
|
|
48
45
|
bl_context: typing.Any
|
|
49
46
|
bl_label: typing.Any
|
|
@@ -84,7 +81,7 @@ class EEVEE_WORLD_PT_mist(bpy.types.Panel, WorldButtonsPanel, bpy_types._Generic
|
|
|
84
81
|
"""
|
|
85
82
|
...
|
|
86
83
|
|
|
87
|
-
class EEVEE_WORLD_PT_settings(bpy.types.Panel
|
|
84
|
+
class EEVEE_WORLD_PT_settings(WorldButtonsPanel, bpy.types.Panel):
|
|
88
85
|
COMPAT_ENGINES: typing.Any
|
|
89
86
|
bl_context: typing.Any
|
|
90
87
|
bl_label: typing.Any
|
|
@@ -125,7 +122,7 @@ class EEVEE_WORLD_PT_settings(bpy.types.Panel, WorldButtonsPanel, bpy_types._Gen
|
|
|
125
122
|
"""
|
|
126
123
|
...
|
|
127
124
|
|
|
128
|
-
class EEVEE_WORLD_PT_sun(bpy.types.Panel
|
|
125
|
+
class EEVEE_WORLD_PT_sun(WorldButtonsPanel, bpy.types.Panel):
|
|
129
126
|
COMPAT_ENGINES: typing.Any
|
|
130
127
|
bl_context: typing.Any
|
|
131
128
|
bl_label: typing.Any
|
|
@@ -158,9 +155,7 @@ class EEVEE_WORLD_PT_sun(bpy.types.Panel, WorldButtonsPanel, bpy_types._GenericU
|
|
|
158
155
|
"""
|
|
159
156
|
...
|
|
160
157
|
|
|
161
|
-
class EEVEE_WORLD_PT_sun_shadow(
|
|
162
|
-
bpy.types.Panel, WorldButtonsPanel, bpy_types._GenericUI
|
|
163
|
-
):
|
|
158
|
+
class EEVEE_WORLD_PT_sun_shadow(WorldButtonsPanel, bpy.types.Panel):
|
|
164
159
|
COMPAT_ENGINES: typing.Any
|
|
165
160
|
bl_context: typing.Any
|
|
166
161
|
bl_label: typing.Any
|
|
@@ -201,7 +196,7 @@ class EEVEE_WORLD_PT_sun_shadow(
|
|
|
201
196
|
"""
|
|
202
197
|
...
|
|
203
198
|
|
|
204
|
-
class EEVEE_WORLD_PT_surface(bpy.types.Panel
|
|
199
|
+
class EEVEE_WORLD_PT_surface(WorldButtonsPanel, bpy.types.Panel):
|
|
205
200
|
COMPAT_ENGINES: typing.Any
|
|
206
201
|
bl_context: typing.Any
|
|
207
202
|
bl_label: typing.Any
|
|
@@ -241,7 +236,7 @@ class EEVEE_WORLD_PT_surface(bpy.types.Panel, WorldButtonsPanel, bpy_types._Gene
|
|
|
241
236
|
"""
|
|
242
237
|
...
|
|
243
238
|
|
|
244
|
-
class EEVEE_WORLD_PT_volume(bpy.types.Panel
|
|
239
|
+
class EEVEE_WORLD_PT_volume(WorldButtonsPanel, bpy.types.Panel):
|
|
245
240
|
COMPAT_ENGINES: typing.Any
|
|
246
241
|
bl_context: typing.Any
|
|
247
242
|
bl_label: typing.Any
|
|
@@ -283,7 +278,7 @@ class EEVEE_WORLD_PT_volume(bpy.types.Panel, WorldButtonsPanel, bpy_types._Gener
|
|
|
283
278
|
"""
|
|
284
279
|
...
|
|
285
280
|
|
|
286
|
-
class WORLD_PT_context_world(bpy.types.Panel
|
|
281
|
+
class WORLD_PT_context_world(WorldButtonsPanel, bpy.types.Panel):
|
|
287
282
|
COMPAT_ENGINES: typing.Any
|
|
288
283
|
bl_context: typing.Any
|
|
289
284
|
bl_label: typing.Any
|
|
@@ -325,7 +320,7 @@ class WORLD_PT_context_world(bpy.types.Panel, WorldButtonsPanel, bpy_types._Gene
|
|
|
325
320
|
...
|
|
326
321
|
|
|
327
322
|
class WORLD_PT_custom_props(
|
|
328
|
-
|
|
323
|
+
rna_prop_ui.PropertyPanel, WorldButtonsPanel, bpy.types.Panel
|
|
329
324
|
):
|
|
330
325
|
"""The subclass should have its own poll function
|
|
331
326
|
and the variable '_context_path' MUST be set.
|
|
@@ -357,9 +352,7 @@ class WORLD_PT_custom_props(
|
|
|
357
352
|
"""
|
|
358
353
|
...
|
|
359
354
|
|
|
360
|
-
class WORLD_PT_viewport_display(
|
|
361
|
-
bpy.types.Panel, WorldButtonsPanel, bpy_types._GenericUI
|
|
362
|
-
):
|
|
355
|
+
class WORLD_PT_viewport_display(WorldButtonsPanel, bpy.types.Panel):
|
|
363
356
|
bl_context: typing.Any
|
|
364
357
|
bl_label: typing.Any
|
|
365
358
|
bl_options: typing.Any
|