fake-bge-module 20250206__py3-none-any.whl → 20250208__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.
- bl_ui/space_view3d/__init__.pyi +41 -0
- bpy/ops/poselib/__init__.pyi +1 -1
- bpy/types/__init__.pyi +1696 -13
- bpy/utils/__init__.pyi +2 -2
- {fake_bge_module-20250206.dist-info → fake_bge_module-20250208.dist-info}/METADATA +1 -1
- {fake_bge_module-20250206.dist-info → fake_bge_module-20250208.dist-info}/RECORD +8 -8
- {fake_bge_module-20250206.dist-info → fake_bge_module-20250208.dist-info}/WHEEL +0 -0
- {fake_bge_module-20250206.dist-info → fake_bge_module-20250208.dist-info}/top_level.txt +0 -0
bl_ui/space_view3d/__init__.pyi
CHANGED
|
@@ -6597,6 +6597,47 @@ class VIEW3D_PT_shading(bpy.types.Panel):
|
|
|
6597
6597
|
:param context:
|
|
6598
6598
|
"""
|
|
6599
6599
|
|
|
6600
|
+
class VIEW3D_PT_shading_cavity(bpy.types.Panel):
|
|
6601
|
+
bl_label: typing.Any
|
|
6602
|
+
bl_parent_id: typing.Any
|
|
6603
|
+
bl_region_type: typing.Any
|
|
6604
|
+
bl_rna: typing.Any
|
|
6605
|
+
bl_space_type: typing.Any
|
|
6606
|
+
id_data: typing.Any
|
|
6607
|
+
|
|
6608
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
6609
|
+
"""
|
|
6610
|
+
|
|
6611
|
+
:return: The RNA type or default when not found.
|
|
6612
|
+
:rtype: bpy.types.Struct
|
|
6613
|
+
"""
|
|
6614
|
+
|
|
6615
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
6616
|
+
"""
|
|
6617
|
+
|
|
6618
|
+
:return: The class or default when not found.
|
|
6619
|
+
:rtype: typing.Any
|
|
6620
|
+
"""
|
|
6621
|
+
|
|
6622
|
+
def draw(self, context):
|
|
6623
|
+
"""
|
|
6624
|
+
|
|
6625
|
+
:param context:
|
|
6626
|
+
"""
|
|
6627
|
+
|
|
6628
|
+
def draw_header(self, context):
|
|
6629
|
+
"""
|
|
6630
|
+
|
|
6631
|
+
:param context:
|
|
6632
|
+
"""
|
|
6633
|
+
|
|
6634
|
+
@classmethod
|
|
6635
|
+
def poll(cls, context):
|
|
6636
|
+
"""
|
|
6637
|
+
|
|
6638
|
+
:param context:
|
|
6639
|
+
"""
|
|
6640
|
+
|
|
6600
6641
|
class VIEW3D_PT_shading_color(bpy.types.Panel):
|
|
6601
6642
|
bl_label: typing.Any
|
|
6602
6643
|
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
|