fake-bpy-module 20241227__py3-none-any.whl → 20241228__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/properties_render/__init__.pyi +36 -0
- bpy/types/__init__.pyi +20 -0
- {fake_bpy_module-20241227.dist-info → fake_bpy_module-20241228.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241227.dist-info → fake_bpy_module-20241228.dist-info}/RECORD +7 -7
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20241227.dist-info → fake_bpy_module-20241228.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241227.dist-info → fake_bpy_module-20241228.dist-info}/top_level.txt +0 -0
|
@@ -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/types/__init__.pyi
CHANGED
|
@@ -126740,6 +126740,12 @@ class CompositorNodeDenoise(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
126740
126740
|
:type: typing.Literal['NONE','FAST','ACCURATE']
|
|
126741
126741
|
"""
|
|
126742
126742
|
|
|
126743
|
+
quality: typing.Literal["FOLLOW_SCENE", "HIGH", "BALANCED", "FAST"]
|
|
126744
|
+
""" Denoising quality
|
|
126745
|
+
|
|
126746
|
+
:type: typing.Literal['FOLLOW_SCENE','HIGH','BALANCED','FAST']
|
|
126747
|
+
"""
|
|
126748
|
+
|
|
126743
126749
|
use_hdr: bool
|
|
126744
126750
|
""" Process HDR images
|
|
126745
126751
|
|
|
@@ -195236,6 +195242,18 @@ class RenderSettings(bpy_struct):
|
|
|
195236
195242
|
:type: float
|
|
195237
195243
|
"""
|
|
195238
195244
|
|
|
195245
|
+
compositor_denoise_final_quality: typing.Literal["HIGH", "BALANCED", "FAST"]
|
|
195246
|
+
""" The quality used by denoise nodes during the compositing of final renders if the nodes' quality option is set to Follow Scene
|
|
195247
|
+
|
|
195248
|
+
:type: typing.Literal['HIGH','BALANCED','FAST']
|
|
195249
|
+
"""
|
|
195250
|
+
|
|
195251
|
+
compositor_denoise_preview_quality: typing.Literal["HIGH", "BALANCED", "FAST"]
|
|
195252
|
+
""" The quality used by denoise nodes during viewport and interactive compositing if the nodes' quality option is set to Follow Scene
|
|
195253
|
+
|
|
195254
|
+
:type: typing.Literal['HIGH','BALANCED','FAST']
|
|
195255
|
+
"""
|
|
195256
|
+
|
|
195239
195257
|
compositor_device: typing.Literal["CPU", "GPU"]
|
|
195240
195258
|
""" Set how compositing is executed
|
|
195241
195259
|
|
|
@@ -234146,6 +234164,8 @@ RENDER_PT_eevee_performance: bl_ui.properties_render.RENDER_PT_eevee_performance
|
|
|
234146
234164
|
|
|
234147
234165
|
RENDER_PT_eevee_performance_compositor: bl_ui.properties_render.RENDER_PT_eevee_performance_compositor
|
|
234148
234166
|
|
|
234167
|
+
RENDER_PT_eevee_performance_compositor_denoise_settings: bl_ui.properties_render.RENDER_PT_eevee_performance_compositor_denoise_settings
|
|
234168
|
+
|
|
234149
234169
|
RENDER_PT_eevee_performance_memory: bl_ui.properties_render.RENDER_PT_eevee_performance_memory
|
|
234150
234170
|
|
|
234151
234171
|
RENDER_PT_eevee_performance_viewport: bl_ui.properties_render.RENDER_PT_eevee_performance_viewport
|
|
@@ -146,7 +146,7 @@ bl_ui/properties_physics_geometry_nodes/__init__.pyi,sha256=IJ12Is3aWlpx8sYPk1Df
|
|
|
146
146
|
bl_ui/properties_physics_rigidbody/__init__.pyi,sha256=mihnVbJEe3H_xDQlmCNz_oI09sOEX_TDdqRfthPnV2Y,6969
|
|
147
147
|
bl_ui/properties_physics_rigidbody_constraint/__init__.pyi,sha256=GzRt03C-kNNLxnQHCV4VKIGl0JITScWRyadNWcaVQo8,11342
|
|
148
148
|
bl_ui/properties_physics_softbody/__init__.pyi,sha256=YU3C0AeOCWqB9f9YjVSH8F4FmAlBQN-yjzAu60ynsgk,11590
|
|
149
|
-
bl_ui/properties_render/__init__.pyi,sha256=
|
|
149
|
+
bl_ui/properties_render/__init__.pyi,sha256=9W1lg0hQZ-6kK808v4bRMB5wQ9vE5LORtBJ3434YE6g,33878
|
|
150
150
|
bl_ui/properties_scene/__init__.pyi,sha256=NaTdJK2mIrAwjp5sJFo98ipm4Uvk6C1pSFCofA_bF_c,12508
|
|
151
151
|
bl_ui/properties_texture/__init__.pyi,sha256=8d7ZCVj0-wZLdtj3Fzan96sCP4p_TZg0C_NoQILGo-A,21060
|
|
152
152
|
bl_ui/properties_view_layer/__init__.pyi,sha256=J7N_wlyCDA_Awz4SZ1LU9H03kbEncWsibqU5Ja7ZRt0,9204
|
|
@@ -275,7 +275,7 @@ bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHC
|
|
|
275
275
|
bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
|
|
276
276
|
bpy/path/__init__.pyi,sha256=N-QNSw3piTmrzrydYRyWab7GFGOh3BsdaS91x4Kf-Cc,5403
|
|
277
277
|
bpy/props/__init__.pyi,sha256=BqqbIZuZNtKAJ3-FpeQoR_yzNV-a4fEb09xdCPZBEuI,31446
|
|
278
|
-
bpy/types/__init__.pyi,sha256=
|
|
278
|
+
bpy/types/__init__.pyi,sha256=HhZ1ivB2NfEoRTCJEJ4WoBJkLqjtWAVXi3lz3_zP4x4,5406056
|
|
279
279
|
bpy/typing/__init__.pyi,sha256=u2XKjd6ZB1Wjt7JwabxexZdswEZLYR2jQpxzzp6AThg,138679
|
|
280
280
|
bpy/utils/__init__.pyi,sha256=wvjdEDEtBn5bR5pZG7HnW1ZdL_J-IQYvmB7e4AwTW0s,13537
|
|
281
281
|
bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
|
|
@@ -311,7 +311,7 @@ freestyle/functions/__init__.pyi,sha256=sEPnGHwZm8XBlfE7CKLros3CKJlAh1h1FI74nBTE
|
|
|
311
311
|
freestyle/predicates/__init__.pyi,sha256=TI-9arpIRbq7ePsxHS-d-4iIj54uHMp-ZyGhPVODMPg,13461
|
|
312
312
|
freestyle/shaders/__init__.pyi,sha256=1Ov48B4P7LV3dwjBqHqqqbPFRBZWjENqIDaFb97Qdj0,23835
|
|
313
313
|
freestyle/types/__init__.pyi,sha256=p6WoVuWvAdGxcKMvxz-IrMbZiBTML9cbjgwgj-QnyI8,100051
|
|
314
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
314
|
+
freestyle/utils/__init__.pyi,sha256=DdX3Qj2yTIu8jXdOAnf_9yKhJ5AQFnS_zVvSAdTfBpU,5108
|
|
315
315
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=fPDfiBEjpoqXQhBhmHJ6WxG9oLMItwQ32MxKQz_c9_I,3445
|
|
316
316
|
gpu/__init__.pyi,sha256=Q-AbyJO85pPYcwXNWtvgAhFGGJ6OnnHrlsXQxur9jhs,7999
|
|
317
317
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -358,7 +358,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
|
|
|
358
358
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
359
|
rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
|
|
360
360
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
361
|
-
fake_bpy_module-
|
|
362
|
-
fake_bpy_module-
|
|
363
|
-
fake_bpy_module-
|
|
364
|
-
fake_bpy_module-
|
|
361
|
+
fake_bpy_module-20241228.dist-info/METADATA,sha256=qBCYCeh8mvASp4mriS7DjdFaUF7miXeg8HTz7Xkbtcw,7289
|
|
362
|
+
fake_bpy_module-20241228.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
363
|
+
fake_bpy_module-20241228.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
364
|
+
fake_bpy_module-20241228.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -124,7 +124,7 @@ def material_from_fedge(fe):
|
|
|
124
124
|
"""get the diffuse RGBA color from an FEdge"""
|
|
125
125
|
|
|
126
126
|
def normal_at_I0D(it): ...
|
|
127
|
-
def pairwise(iterable, types={
|
|
127
|
+
def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
|
|
128
128
|
"""Yields a tuple containing the previous and current object"""
|
|
129
129
|
|
|
130
130
|
def rgb_to_bw(r, g, b):
|
|
File without changes
|
|
File without changes
|