fake-bpy-module 20240706__py3-none-any.whl → 20240707__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/assets/__init__.pyi +8 -8
- bl_operators/image_as_planes/__init__.pyi +43 -43
- bl_operators/node/__init__.pyi +234 -234
- bl_operators/object_quick_effects/__init__.pyi +21 -21
- bl_operators/presets/__init__.pyi +388 -388
- bl_ui/properties_collection/__init__.pyi +12 -12
- bl_ui/properties_constraint/__init__.pyi +954 -954
- bl_ui/properties_data_armature/__init__.pyi +85 -85
- bl_ui/properties_data_bone/__init__.pyi +12 -12
- bl_ui/properties_data_curve/__init__.pyi +92 -92
- bl_ui/properties_data_curves/__init__.pyi +12 -12
- bl_ui/properties_data_empty/__init__.pyi +12 -12
- bl_ui/properties_data_gpencil/__init__.pyi +265 -265
- bl_ui/properties_data_grease_pencil/__init__.pyi +312 -312
- bl_ui/properties_data_lattice/__init__.pyi +12 -12
- bl_ui/properties_data_light/__init__.pyi +12 -12
- bl_ui/properties_data_lightprobe/__init__.pyi +12 -12
- bl_ui/properties_data_mesh/__init__.pyi +527 -527
- bl_ui/properties_data_metaball/__init__.pyi +12 -12
- bl_ui/properties_data_modifier/__init__.pyi +19 -19
- bl_ui/properties_data_pointcloud/__init__.pyi +140 -140
- bl_ui/properties_data_shaderfx/__init__.pyi +5 -5
- bl_ui/properties_data_speaker/__init__.pyi +12 -12
- bl_ui/properties_data_volume/__init__.pyi +65 -65
- bl_ui/properties_freestyle/__init__.pyi +248 -248
- bl_ui/properties_material/__init__.pyi +145 -145
- bl_ui/properties_material_gpencil/__init__.pyi +86 -86
- bl_ui/properties_object/__init__.pyi +75 -75
- bl_ui/properties_output/__init__.pyi +201 -201
- bl_ui/properties_particle/__init__.pyi +220 -220
- bl_ui/properties_physics_cloth/__init__.pyi +12 -12
- bl_ui/properties_physics_common/__init__.pyi +12 -12
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +187 -187
- bl_ui/properties_physics_field/__init__.pyi +19 -19
- bl_ui/properties_physics_fluid/__init__.pyi +61 -61
- bl_ui/properties_physics_rigidbody/__init__.pyi +5 -5
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +5 -5
- bl_ui/properties_physics_softbody/__init__.pyi +12 -12
- bl_ui/properties_render/__init__.pyi +217 -217
- bl_ui/properties_scene/__init__.pyi +143 -143
- bl_ui/properties_texture/__init__.pyi +156 -156
- bl_ui/properties_view_layer/__init__.pyi +78 -78
- bl_ui/properties_workspace/__init__.pyi +64 -64
- bl_ui/properties_world/__init__.pyi +12 -12
- bl_ui/space_clip/__init__.pyi +366 -366
- bl_ui/space_dopesheet/__init__.pyi +176 -176
- bl_ui/space_filebrowser/__init__.pyi +735 -735
- bl_ui/space_image/__init__.pyi +646 -646
- bl_ui/space_sequencer/__init__.pyi +841 -389
- bl_ui/space_time/__init__.pyi +11 -11
- bl_ui/space_userpref/__init__.pyi +684 -684
- bl_ui/space_view3d/__init__.pyi +1152 -1152
- bl_ui/space_view3d_toolbar/__init__.pyi +2831 -2831
- bpy/types/__init__.pyi +69750 -69696
- {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240707.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240707.dist-info}/RECORD +62 -62
- freestyle/utils/__init__.pyi +1 -1
- keyingsets_builtins/__init__.pyi +87 -87
- mathutils/__init__.pyi +156 -6
- nodeitems_builtins/__init__.pyi +7 -7
- {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240707.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240707.dist-info}/top_level.txt +0 -0
|
@@ -8,20 +8,14 @@ import rna_prop_ui
|
|
|
8
8
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
9
9
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
10
10
|
|
|
11
|
-
class DataButtonsPanel:
|
|
11
|
+
class DATA_PT_context_volume(DataButtonsPanel, bpy_types._GenericUI):
|
|
12
|
+
COMPAT_ENGINES: typing.Any
|
|
12
13
|
bl_context: typing.Any
|
|
14
|
+
bl_label: typing.Any
|
|
15
|
+
bl_options: typing.Any
|
|
13
16
|
bl_region_type: typing.Any
|
|
14
|
-
bl_space_type: typing.Any
|
|
15
|
-
|
|
16
|
-
def poll(self, context):
|
|
17
|
-
"""
|
|
18
|
-
|
|
19
|
-
:param context:
|
|
20
|
-
"""
|
|
21
|
-
...
|
|
22
|
-
|
|
23
|
-
class VOLUME_UL_grids(bpy_types._GenericUI):
|
|
24
17
|
bl_rna: typing.Any
|
|
18
|
+
bl_space_type: typing.Any
|
|
25
19
|
id_data: typing.Any
|
|
26
20
|
|
|
27
21
|
def append(self, draw_func):
|
|
@@ -56,27 +50,10 @@ class VOLUME_UL_grids(bpy_types._GenericUI):
|
|
|
56
50
|
"""
|
|
57
51
|
...
|
|
58
52
|
|
|
59
|
-
def
|
|
60
|
-
self,
|
|
61
|
-
_context,
|
|
62
|
-
layout,
|
|
63
|
-
_data,
|
|
64
|
-
grid,
|
|
65
|
-
_icon,
|
|
66
|
-
_active_data,
|
|
67
|
-
_active_propname,
|
|
68
|
-
_index,
|
|
69
|
-
):
|
|
53
|
+
def draw(self, context):
|
|
70
54
|
"""
|
|
71
55
|
|
|
72
|
-
:param
|
|
73
|
-
:param layout:
|
|
74
|
-
:param _data:
|
|
75
|
-
:param grid:
|
|
76
|
-
:param _icon:
|
|
77
|
-
:param _active_data:
|
|
78
|
-
:param _active_propname:
|
|
79
|
-
:param _index:
|
|
56
|
+
:param context:
|
|
80
57
|
"""
|
|
81
58
|
...
|
|
82
59
|
|
|
@@ -202,6 +179,13 @@ class VOLUME_UL_grids(bpy_types._GenericUI):
|
|
|
202
179
|
"""Returns the property from the path, raise an exception when not found."""
|
|
203
180
|
...
|
|
204
181
|
|
|
182
|
+
def poll(self, context):
|
|
183
|
+
"""
|
|
184
|
+
|
|
185
|
+
:param context:
|
|
186
|
+
"""
|
|
187
|
+
...
|
|
188
|
+
|
|
205
189
|
def pop(self):
|
|
206
190
|
"""Remove and return the value of the custom property assigned to key or default
|
|
207
191
|
when not found (matches Python's dictionary function of the same name).
|
|
@@ -252,11 +236,18 @@ class VOLUME_UL_grids(bpy_types._GenericUI):
|
|
|
252
236
|
"""
|
|
253
237
|
...
|
|
254
238
|
|
|
255
|
-
class
|
|
239
|
+
class DATA_PT_custom_props_volume(
|
|
240
|
+
DataButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
|
|
241
|
+
):
|
|
242
|
+
"""The subclass should have its own poll function
|
|
243
|
+
and the variable '_context_path' MUST be set.
|
|
244
|
+
"""
|
|
245
|
+
|
|
256
246
|
COMPAT_ENGINES: typing.Any
|
|
257
247
|
bl_context: typing.Any
|
|
258
248
|
bl_label: typing.Any
|
|
259
249
|
bl_options: typing.Any
|
|
250
|
+
bl_order: typing.Any
|
|
260
251
|
bl_region_type: typing.Any
|
|
261
252
|
bl_rna: typing.Any
|
|
262
253
|
bl_space_type: typing.Any
|
|
@@ -480,18 +471,10 @@ class DATA_PT_context_volume(DataButtonsPanel, bpy_types._GenericUI):
|
|
|
480
471
|
"""
|
|
481
472
|
...
|
|
482
473
|
|
|
483
|
-
class
|
|
484
|
-
DataButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
|
|
485
|
-
):
|
|
486
|
-
"""The subclass should have its own poll function
|
|
487
|
-
and the variable '_context_path' MUST be set.
|
|
488
|
-
"""
|
|
489
|
-
|
|
474
|
+
class DATA_PT_volume_file(DataButtonsPanel, bpy_types._GenericUI):
|
|
490
475
|
COMPAT_ENGINES: typing.Any
|
|
491
476
|
bl_context: typing.Any
|
|
492
477
|
bl_label: typing.Any
|
|
493
|
-
bl_options: typing.Any
|
|
494
|
-
bl_order: typing.Any
|
|
495
478
|
bl_region_type: typing.Any
|
|
496
479
|
bl_rna: typing.Any
|
|
497
480
|
bl_space_type: typing.Any
|
|
@@ -715,7 +698,7 @@ class DATA_PT_custom_props_volume(
|
|
|
715
698
|
"""
|
|
716
699
|
...
|
|
717
700
|
|
|
718
|
-
class
|
|
701
|
+
class DATA_PT_volume_grids(DataButtonsPanel, bpy_types._GenericUI):
|
|
719
702
|
COMPAT_ENGINES: typing.Any
|
|
720
703
|
bl_context: typing.Any
|
|
721
704
|
bl_label: typing.Any
|
|
@@ -942,7 +925,7 @@ class DATA_PT_volume_file(DataButtonsPanel, bpy_types._GenericUI):
|
|
|
942
925
|
"""
|
|
943
926
|
...
|
|
944
927
|
|
|
945
|
-
class
|
|
928
|
+
class DATA_PT_volume_render(DataButtonsPanel, bpy_types._GenericUI):
|
|
946
929
|
COMPAT_ENGINES: typing.Any
|
|
947
930
|
bl_context: typing.Any
|
|
948
931
|
bl_label: typing.Any
|
|
@@ -1169,7 +1152,7 @@ class DATA_PT_volume_grids(DataButtonsPanel, bpy_types._GenericUI):
|
|
|
1169
1152
|
"""
|
|
1170
1153
|
...
|
|
1171
1154
|
|
|
1172
|
-
class
|
|
1155
|
+
class DATA_PT_volume_viewport_display(DataButtonsPanel, bpy_types._GenericUI):
|
|
1173
1156
|
COMPAT_ENGINES: typing.Any
|
|
1174
1157
|
bl_context: typing.Any
|
|
1175
1158
|
bl_label: typing.Any
|
|
@@ -1396,10 +1379,11 @@ class DATA_PT_volume_render(DataButtonsPanel, bpy_types._GenericUI):
|
|
|
1396
1379
|
"""
|
|
1397
1380
|
...
|
|
1398
1381
|
|
|
1399
|
-
class
|
|
1382
|
+
class DATA_PT_volume_viewport_display_slicing(DataButtonsPanel, bpy_types._GenericUI):
|
|
1400
1383
|
COMPAT_ENGINES: typing.Any
|
|
1401
1384
|
bl_context: typing.Any
|
|
1402
1385
|
bl_label: typing.Any
|
|
1386
|
+
bl_parent_id: typing.Any
|
|
1403
1387
|
bl_region_type: typing.Any
|
|
1404
1388
|
bl_rna: typing.Any
|
|
1405
1389
|
bl_space_type: typing.Any
|
|
@@ -1444,6 +1428,13 @@ class DATA_PT_volume_viewport_display(DataButtonsPanel, bpy_types._GenericUI):
|
|
|
1444
1428
|
"""
|
|
1445
1429
|
...
|
|
1446
1430
|
|
|
1431
|
+
def draw_header(self, context):
|
|
1432
|
+
"""
|
|
1433
|
+
|
|
1434
|
+
:param context:
|
|
1435
|
+
"""
|
|
1436
|
+
...
|
|
1437
|
+
|
|
1447
1438
|
def driver_add(self) -> bpy.types.FCurve:
|
|
1448
1439
|
"""Adds driver(s) to the given property
|
|
1449
1440
|
|
|
@@ -1623,14 +1614,20 @@ class DATA_PT_volume_viewport_display(DataButtonsPanel, bpy_types._GenericUI):
|
|
|
1623
1614
|
"""
|
|
1624
1615
|
...
|
|
1625
1616
|
|
|
1626
|
-
class
|
|
1627
|
-
COMPAT_ENGINES: typing.Any
|
|
1617
|
+
class DataButtonsPanel:
|
|
1628
1618
|
bl_context: typing.Any
|
|
1629
|
-
bl_label: typing.Any
|
|
1630
|
-
bl_parent_id: typing.Any
|
|
1631
1619
|
bl_region_type: typing.Any
|
|
1632
|
-
bl_rna: typing.Any
|
|
1633
1620
|
bl_space_type: typing.Any
|
|
1621
|
+
|
|
1622
|
+
def poll(self, context):
|
|
1623
|
+
"""
|
|
1624
|
+
|
|
1625
|
+
:param context:
|
|
1626
|
+
"""
|
|
1627
|
+
...
|
|
1628
|
+
|
|
1629
|
+
class VOLUME_UL_grids(bpy_types._GenericUI):
|
|
1630
|
+
bl_rna: typing.Any
|
|
1634
1631
|
id_data: typing.Any
|
|
1635
1632
|
|
|
1636
1633
|
def append(self, draw_func):
|
|
@@ -1665,17 +1662,27 @@ class DATA_PT_volume_viewport_display_slicing(DataButtonsPanel, bpy_types._Gener
|
|
|
1665
1662
|
"""
|
|
1666
1663
|
...
|
|
1667
1664
|
|
|
1668
|
-
def
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1665
|
+
def draw_item(
|
|
1666
|
+
self,
|
|
1667
|
+
_context,
|
|
1668
|
+
layout,
|
|
1669
|
+
_data,
|
|
1670
|
+
grid,
|
|
1671
|
+
_icon,
|
|
1672
|
+
_active_data,
|
|
1673
|
+
_active_propname,
|
|
1674
|
+
_index,
|
|
1675
|
+
):
|
|
1676
1676
|
"""
|
|
1677
1677
|
|
|
1678
|
-
:param
|
|
1678
|
+
:param _context:
|
|
1679
|
+
:param layout:
|
|
1680
|
+
:param _data:
|
|
1681
|
+
:param grid:
|
|
1682
|
+
:param _icon:
|
|
1683
|
+
:param _active_data:
|
|
1684
|
+
:param _active_propname:
|
|
1685
|
+
:param _index:
|
|
1679
1686
|
"""
|
|
1680
1687
|
...
|
|
1681
1688
|
|
|
@@ -1801,13 +1808,6 @@ class DATA_PT_volume_viewport_display_slicing(DataButtonsPanel, bpy_types._Gener
|
|
|
1801
1808
|
"""Returns the property from the path, raise an exception when not found."""
|
|
1802
1809
|
...
|
|
1803
1810
|
|
|
1804
|
-
def poll(self, context):
|
|
1805
|
-
"""
|
|
1806
|
-
|
|
1807
|
-
:param context:
|
|
1808
|
-
"""
|
|
1809
|
-
...
|
|
1810
|
-
|
|
1811
1811
|
def pop(self):
|
|
1812
1812
|
"""Remove and return the value of the custom property assigned to key or default
|
|
1813
1813
|
when not found (matches Python's dictionary function of the same name).
|