fake-bpy-module 20240604__py3-none-any.whl → 20240605__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/generic_ui_list/__init__.pyi +2 -2
- bl_ui/space_node/__init__.pyi +0 -1
- bl_ui/space_view3d_toolbar/__init__.pyi +949 -3
- bpy/app/handlers/__init__.pyi +36 -36
- bpy/ops/scene/__init__.pyi +0 -44
- bpy/ops/sculpt/__init__.pyi +8 -8
- bpy/types/__init__.pyi +658 -196
- {fake_bpy_module-20240604.dist-info → fake_bpy_module-20240605.dist-info}/METADATA +5 -1
- {fake_bpy_module-20240604.dist-info → fake_bpy_module-20240605.dist-info}/RECORD +11 -11
- {fake_bpy_module-20240604.dist-info → fake_bpy_module-20240605.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240604.dist-info → fake_bpy_module-20240605.dist-info}/top_level.txt +0 -0
|
@@ -724,7 +724,7 @@ class UILIST_OT_entry_remove(GenericUIListOperator, bpy_types.Operator):
|
|
|
724
724
|
|
|
725
725
|
def draw_ui_list(
|
|
726
726
|
layout: bpy.types.UILayout,
|
|
727
|
-
context:
|
|
727
|
+
context: bpy_types.Context,
|
|
728
728
|
class_name: str = "UI_UL_list",
|
|
729
729
|
unique_id: str = None,
|
|
730
730
|
list_path: str = None,
|
|
@@ -739,7 +739,7 @@ def draw_ui_list(
|
|
|
739
739
|
:param layout: UILayout to draw the list in.
|
|
740
740
|
:type layout: bpy.types.UILayout
|
|
741
741
|
:param context: Blender context to get the list data from.
|
|
742
|
-
:type context:
|
|
742
|
+
:type context: bpy_types.Context
|
|
743
743
|
:param class_name: Name of the UIList class to draw. The default is the UIList class that ships with Blender.
|
|
744
744
|
:type class_name: str
|
|
745
745
|
:param unique_id: Unique identifier to differentiate this from other UI lists.
|
bl_ui/space_node/__init__.pyi
CHANGED
|
@@ -3670,7 +3670,6 @@ class NODE_PT_active_node_generic(bpy_types.Panel, bpy_types._GenericUI):
|
|
|
3670
3670
|
class NODE_PT_active_node_properties(bpy_types.Panel, bpy_types._GenericUI):
|
|
3671
3671
|
bl_category: typing.Any
|
|
3672
3672
|
bl_label: typing.Any
|
|
3673
|
-
bl_options: typing.Any
|
|
3674
3673
|
bl_region_type: typing.Any
|
|
3675
3674
|
bl_rna: typing.Any
|
|
3676
3675
|
bl_space_type: typing.Any
|