fake-bpy-module 20241227__py3-none-any.whl → 20241229__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/properties_render/__init__.pyi +36 -0
- bpy/__init__.pyi +1 -1
- bpy/types/__init__.pyi +228 -223
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20241227.dist-info → fake_bpy_module-20241229.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241227.dist-info → fake_bpy_module-20241229.dist-info}/RECORD +10 -10
- gpu_extras/batch/__init__.pyi +2 -3
- {fake_bpy_module-20241227.dist-info → fake_bpy_module-20241229.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241227.dist-info → fake_bpy_module-20241229.dist-info}/top_level.txt +0 -0
|
@@ -118,7 +118,7 @@ class UILIST_OT_entry_remove(GenericUIListOperator, bpy.types.Operator):
|
|
|
118
118
|
|
|
119
119
|
def draw_ui_list(
|
|
120
120
|
layout: bpy.types.UILayout,
|
|
121
|
-
context: bpy.types.Context
|
|
121
|
+
context: bpy.types.Context,
|
|
122
122
|
class_name: str = "UI_UL_list",
|
|
123
123
|
*,
|
|
124
124
|
unique_id: str,
|
|
@@ -134,7 +134,7 @@ def draw_ui_list(
|
|
|
134
134
|
:param layout: UILayout to draw the list in.
|
|
135
135
|
:type layout: bpy.types.UILayout
|
|
136
136
|
:param context: Blender context to get the list data from.
|
|
137
|
-
:type context: bpy.types.Context
|
|
137
|
+
:type context: bpy.types.Context
|
|
138
138
|
:param class_name: Name of the UIList class to draw. The default is the UIList class that ships with Blender.
|
|
139
139
|
:type class_name: str
|
|
140
140
|
:param unique_id: Unique identifier to differentiate this from other UI lists.
|
|
@@ -5,6 +5,15 @@ import bl_ui.properties_grease_pencil_common
|
|
|
5
5
|
import bl_ui.utils
|
|
6
6
|
import bpy.types
|
|
7
7
|
|
|
8
|
+
class CompositorDenoisePerformanceButtonsPanel:
|
|
9
|
+
bl_label: typing.Any
|
|
10
|
+
|
|
11
|
+
def draw(self, context):
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
:param context:
|
|
15
|
+
"""
|
|
16
|
+
|
|
8
17
|
class CompositorPerformanceButtonsPanel:
|
|
9
18
|
bl_label: typing.Any
|
|
10
19
|
|
|
@@ -1044,6 +1053,33 @@ class RENDER_PT_eevee_performance_compositor(
|
|
|
1044
1053
|
:rtype: typing.Any
|
|
1045
1054
|
"""
|
|
1046
1055
|
|
|
1056
|
+
class RENDER_PT_eevee_performance_compositor_denoise_settings(
|
|
1057
|
+
CompositorDenoisePerformanceButtonsPanel, RenderButtonsPanel, bpy.types.Panel
|
|
1058
|
+
):
|
|
1059
|
+
COMPAT_ENGINES: typing.Any
|
|
1060
|
+
bl_context: typing.Any
|
|
1061
|
+
bl_label: typing.Any
|
|
1062
|
+
bl_options: typing.Any
|
|
1063
|
+
bl_parent_id: typing.Any
|
|
1064
|
+
bl_region_type: typing.Any
|
|
1065
|
+
bl_rna: typing.Any
|
|
1066
|
+
bl_space_type: typing.Any
|
|
1067
|
+
id_data: typing.Any
|
|
1068
|
+
|
|
1069
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1070
|
+
"""
|
|
1071
|
+
|
|
1072
|
+
:return: The RNA type or default when not found.
|
|
1073
|
+
:rtype: bpy.types.Struct
|
|
1074
|
+
"""
|
|
1075
|
+
|
|
1076
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1077
|
+
"""
|
|
1078
|
+
|
|
1079
|
+
:return: The class or default when not found.
|
|
1080
|
+
:rtype: typing.Any
|
|
1081
|
+
"""
|
|
1082
|
+
|
|
1047
1083
|
class RENDER_PT_eevee_performance_memory(RenderButtonsPanel, bpy.types.Panel):
|
|
1048
1084
|
COMPAT_ENGINES: typing.Any
|
|
1049
1085
|
bl_context: typing.Any
|
bpy/__init__.pyi
CHANGED