fake-bpy-module 20250205__py3-none-any.whl → 20250207__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_ui/space_view3d/__init__.pyi +41 -0
- bpy/ops/poselib/__init__.pyi +1 -1
- bpy/types/__init__.pyi +1601 -14
- bpy/utils/__init__.pyi +2 -2
- {fake_bpy_module-20250205.dist-info → fake_bpy_module-20250207.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250205.dist-info → fake_bpy_module-20250207.dist-info}/RECORD +8 -8
- {fake_bpy_module-20250205.dist-info → fake_bpy_module-20250207.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250205.dist-info → fake_bpy_module-20250207.dist-info}/top_level.txt +0 -0
bl_ui/space_view3d/__init__.pyi
CHANGED
|
@@ -6572,6 +6572,47 @@ class VIEW3D_PT_shading(bpy.types.Panel):
|
|
|
6572
6572
|
:param context:
|
|
6573
6573
|
"""
|
|
6574
6574
|
|
|
6575
|
+
class VIEW3D_PT_shading_cavity(bpy.types.Panel):
|
|
6576
|
+
bl_label: typing.Any
|
|
6577
|
+
bl_parent_id: typing.Any
|
|
6578
|
+
bl_region_type: typing.Any
|
|
6579
|
+
bl_rna: typing.Any
|
|
6580
|
+
bl_space_type: typing.Any
|
|
6581
|
+
id_data: typing.Any
|
|
6582
|
+
|
|
6583
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
6584
|
+
"""
|
|
6585
|
+
|
|
6586
|
+
:return: The RNA type or default when not found.
|
|
6587
|
+
:rtype: bpy.types.Struct
|
|
6588
|
+
"""
|
|
6589
|
+
|
|
6590
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
6591
|
+
"""
|
|
6592
|
+
|
|
6593
|
+
:return: The class or default when not found.
|
|
6594
|
+
:rtype: typing.Any
|
|
6595
|
+
"""
|
|
6596
|
+
|
|
6597
|
+
def draw(self, context):
|
|
6598
|
+
"""
|
|
6599
|
+
|
|
6600
|
+
:param context:
|
|
6601
|
+
"""
|
|
6602
|
+
|
|
6603
|
+
def draw_header(self, context):
|
|
6604
|
+
"""
|
|
6605
|
+
|
|
6606
|
+
:param context:
|
|
6607
|
+
"""
|
|
6608
|
+
|
|
6609
|
+
@classmethod
|
|
6610
|
+
def poll(cls, context):
|
|
6611
|
+
"""
|
|
6612
|
+
|
|
6613
|
+
:param context:
|
|
6614
|
+
"""
|
|
6615
|
+
|
|
6575
6616
|
class VIEW3D_PT_shading_color(bpy.types.Panel):
|
|
6576
6617
|
bl_label: typing.Any
|
|
6577
6618
|
bl_parent_id: typing.Any
|
bpy/ops/poselib/__init__.pyi
CHANGED
|
@@ -110,7 +110,7 @@ def create_pose_asset(
|
|
|
110
110
|
catalog_path: str = "",
|
|
111
111
|
activate_new_action: bool | None = False,
|
|
112
112
|
):
|
|
113
|
-
"""Create a new asset from the
|
|
113
|
+
"""Create a new asset from the selected bones in the scene
|
|
114
114
|
|
|
115
115
|
:type execution_context: int | str | None
|
|
116
116
|
:type undo: bool | None
|