fake-bpy-module 20250521__py3-none-any.whl → 20250522__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_image/__init__.pyi +35 -0
- bpy/types/__init__.pyi +29 -9
- {fake_bpy_module-20250521.dist-info → fake_bpy_module-20250522.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250521.dist-info → fake_bpy_module-20250522.dist-info}/RECORD +7 -7
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20250521.dist-info → fake_bpy_module-20250522.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250521.dist-info → fake_bpy_module-20250522.dist-info}/top_level.txt +0 -0
bl_ui/space_image/__init__.pyi
CHANGED
|
@@ -1045,6 +1045,41 @@ class IMAGE_PT_overlay_image(bpy.types.Panel):
|
|
|
1045
1045
|
:param context:
|
|
1046
1046
|
"""
|
|
1047
1047
|
|
|
1048
|
+
class IMAGE_PT_overlay_render_guides(bpy.types.Panel):
|
|
1049
|
+
bl_label: typing.Any
|
|
1050
|
+
bl_parent_id: typing.Any
|
|
1051
|
+
bl_region_type: typing.Any
|
|
1052
|
+
bl_rna: typing.Any
|
|
1053
|
+
bl_space_type: typing.Any
|
|
1054
|
+
id_data: typing.Any
|
|
1055
|
+
|
|
1056
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1057
|
+
"""
|
|
1058
|
+
|
|
1059
|
+
:return: The RNA type or default when not found.
|
|
1060
|
+
:rtype: bpy.types.Struct
|
|
1061
|
+
"""
|
|
1062
|
+
|
|
1063
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1064
|
+
"""
|
|
1065
|
+
|
|
1066
|
+
:return: The class or default when not found.
|
|
1067
|
+
:rtype: typing.Any
|
|
1068
|
+
"""
|
|
1069
|
+
|
|
1070
|
+
def draw(self, context):
|
|
1071
|
+
"""
|
|
1072
|
+
|
|
1073
|
+
:param context:
|
|
1074
|
+
"""
|
|
1075
|
+
|
|
1076
|
+
@classmethod
|
|
1077
|
+
def poll(cls, context):
|
|
1078
|
+
"""
|
|
1079
|
+
|
|
1080
|
+
:param context:
|
|
1081
|
+
"""
|
|
1082
|
+
|
|
1048
1083
|
class IMAGE_PT_overlay_uv_display(bpy.types.Panel):
|
|
1049
1084
|
bl_label: typing.Any
|
|
1050
1085
|
bl_parent_id: typing.Any
|
bpy/types/__init__.pyi
CHANGED
|
@@ -131873,55 +131873,55 @@ class CompositorNodeCrop(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
131873
131873
|
"""Crops image to a smaller region, either making the cropped area transparent or resizing the image"""
|
|
131874
131874
|
|
|
131875
131875
|
max_x: int
|
|
131876
|
-
""" Right edge of the cropping rectangle
|
|
131876
|
+
""" Right edge of the cropping rectangle. (Deprecated: Use Width input instead.)
|
|
131877
131877
|
|
|
131878
131878
|
:type: int
|
|
131879
131879
|
"""
|
|
131880
131880
|
|
|
131881
131881
|
max_y: int
|
|
131882
|
-
""" Bottom edge of the cropping rectangle
|
|
131882
|
+
""" Bottom edge of the cropping rectangle. (Deprecated: Use Height input instead.)
|
|
131883
131883
|
|
|
131884
131884
|
:type: int
|
|
131885
131885
|
"""
|
|
131886
131886
|
|
|
131887
131887
|
min_x: int
|
|
131888
|
-
""" Left edge of the cropping rectangle
|
|
131888
|
+
""" Left edge of the cropping rectangle. (Deprecated: Use X input instead.)
|
|
131889
131889
|
|
|
131890
131890
|
:type: int
|
|
131891
131891
|
"""
|
|
131892
131892
|
|
|
131893
131893
|
min_y: int
|
|
131894
|
-
""" Top edge of the cropping rectangle
|
|
131894
|
+
""" Top edge of the cropping rectangle. (Deprecated: Use Y input instead.)
|
|
131895
131895
|
|
|
131896
131896
|
:type: int
|
|
131897
131897
|
"""
|
|
131898
131898
|
|
|
131899
131899
|
rel_max_x: float
|
|
131900
|
-
""" Right edge of the cropping rectangle
|
|
131900
|
+
""" Right edge of the cropping rectangle. (Deprecated: Unused.)
|
|
131901
131901
|
|
|
131902
131902
|
:type: float
|
|
131903
131903
|
"""
|
|
131904
131904
|
|
|
131905
131905
|
rel_max_y: float
|
|
131906
|
-
""" Bottom edge of the cropping rectangle
|
|
131906
|
+
""" Bottom edge of the cropping rectangle. (Deprecated: Unused.)
|
|
131907
131907
|
|
|
131908
131908
|
:type: float
|
|
131909
131909
|
"""
|
|
131910
131910
|
|
|
131911
131911
|
rel_min_x: float
|
|
131912
|
-
""" Left edge of the cropping rectangle
|
|
131912
|
+
""" Left edge of the cropping rectangle. (Deprecated: Unused.)
|
|
131913
131913
|
|
|
131914
131914
|
:type: float
|
|
131915
131915
|
"""
|
|
131916
131916
|
|
|
131917
131917
|
rel_min_y: float
|
|
131918
|
-
""" Top edge of the cropping rectangle
|
|
131918
|
+
""" Top edge of the cropping rectangle. (Deprecated: Unused.)
|
|
131919
131919
|
|
|
131920
131920
|
:type: float
|
|
131921
131921
|
"""
|
|
131922
131922
|
|
|
131923
131923
|
relative: bool
|
|
131924
|
-
""" Use relative values to crop image
|
|
131924
|
+
""" Use relative values to crop image. (Deprecated: Unused.)
|
|
131925
131925
|
|
|
131926
131926
|
:type: bool
|
|
131927
131927
|
"""
|
|
@@ -217612,6 +217612,12 @@ class SpaceImageEditor(Space, bpy_struct):
|
|
|
217612
217612
|
class SpaceImageOverlay(bpy_struct):
|
|
217613
217613
|
"""Settings for display of overlays in the UV/Image editor"""
|
|
217614
217614
|
|
|
217615
|
+
passepartout_alpha: float
|
|
217616
|
+
""" Opacity of the darkened overlay outside the render region
|
|
217617
|
+
|
|
217618
|
+
:type: float
|
|
217619
|
+
"""
|
|
217620
|
+
|
|
217615
217621
|
show_grid_background: bool
|
|
217616
217622
|
""" Show the grid background and borders
|
|
217617
217623
|
|
|
@@ -217624,6 +217630,18 @@ class SpaceImageOverlay(bpy_struct):
|
|
|
217624
217630
|
:type: bool
|
|
217625
217631
|
"""
|
|
217626
217632
|
|
|
217633
|
+
show_render_size: bool
|
|
217634
|
+
""" Display the region of the final render
|
|
217635
|
+
|
|
217636
|
+
:type: bool
|
|
217637
|
+
"""
|
|
217638
|
+
|
|
217639
|
+
show_text_info: bool
|
|
217640
|
+
""" Display overlay text
|
|
217641
|
+
|
|
217642
|
+
:type: bool
|
|
217643
|
+
"""
|
|
217644
|
+
|
|
217627
217645
|
@classmethod
|
|
217628
217646
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
217629
217647
|
"""
|
|
@@ -241635,6 +241653,8 @@ IMAGE_PT_overlay_guides: bl_ui.space_image.IMAGE_PT_overlay_guides
|
|
|
241635
241653
|
|
|
241636
241654
|
IMAGE_PT_overlay_image: bl_ui.space_image.IMAGE_PT_overlay_image
|
|
241637
241655
|
|
|
241656
|
+
IMAGE_PT_overlay_render_guides: bl_ui.space_image.IMAGE_PT_overlay_render_guides
|
|
241657
|
+
|
|
241638
241658
|
IMAGE_PT_overlay_uv_display: bl_ui.space_image.IMAGE_PT_overlay_uv_display
|
|
241639
241659
|
|
|
241640
241660
|
IMAGE_PT_overlay_uv_edit_geometry: bl_ui.space_image.IMAGE_PT_overlay_uv_edit_geometry
|
|
@@ -158,7 +158,7 @@ bl_ui/space_console/__init__.pyi,sha256=X_JBBHl7cwwDVYQlTAE4H5T6HkqSzQVNYGtnyBtv
|
|
|
158
158
|
bl_ui/space_dopesheet/__init__.pyi,sha256=p5RHcM6ISy5-iEKeNEZ1cf0EMEbVBpK6MhcZHkHvuX8,18097
|
|
159
159
|
bl_ui/space_filebrowser/__init__.pyi,sha256=ErbWCbLKrVSMnf8J2Ae-_H-0vAao-5Wz3J3FYVptAb8,20223
|
|
160
160
|
bl_ui/space_graph/__init__.pyi,sha256=sadLptKxyzDtIT5Pmd1pDYWCL3AFCT2b3yzCtaikWYc,11606
|
|
161
|
-
bl_ui/space_image/__init__.pyi,sha256=
|
|
161
|
+
bl_ui/space_image/__init__.pyi,sha256=ehCkMjE_2MHu6WQ-qZYfxwAKiRms3_MWexNVtKcuMlc,45954
|
|
162
162
|
bl_ui/space_info/__init__.pyi,sha256=ukwr4M_jVQH2U1wo4jTie5RK8kf3wfEBHnTIV8dvKxM,3312
|
|
163
163
|
bl_ui/space_nla/__init__.pyi,sha256=rHI5YccrddEIyXIv7ojfdoS5H5-8W3t9CD86W0DZWTw,9562
|
|
164
164
|
bl_ui/space_node/__init__.pyi,sha256=ifKNLaAQtFwsoOvJGSfXu1jdjM78PQjKZWGpIBuFzN8,18764
|
|
@@ -279,7 +279,7 @@ bpy/ops/workspace/__init__.pyi,sha256=NdaJuwz3A-gStNuzp_OWR9DIj7oeSgLjn9SUEBLYuN
|
|
|
279
279
|
bpy/ops/world/__init__.pyi,sha256=9OhY87-WRRLor-4GQJhDiDJG3M9W5s9yFo9x45Iiycs,628
|
|
280
280
|
bpy/path/__init__.pyi,sha256=yGX45MUnn9fJYw32UWTsBQ646iN5DbbxfvnoDkREWvI,5537
|
|
281
281
|
bpy/props/__init__.pyi,sha256=4SYl5qfPLRwe3zGyHowQy_i_mU-gjImdiqidFOHP6Tc,35264
|
|
282
|
-
bpy/types/__init__.pyi,sha256=
|
|
282
|
+
bpy/types/__init__.pyi,sha256=ufP1RysOGpnCpqM4tq4skWddzQzHRW6RzXL9zF8KHUc,5636310
|
|
283
283
|
bpy/utils/__init__.pyi,sha256=NwKl40t0SfvM2Lce9VmXS9zh6T-ZE1JxleSh9te_d5E,15351
|
|
284
284
|
bpy/utils/previews/__init__.pyi,sha256=Pji8UKqvI3AJTk5v3nCK92URlJfehxuoaaJW6n9L7XU,2342
|
|
285
285
|
bpy/utils/units/__init__.pyi,sha256=zULS_4qRrtzpHLtSU-jfO2761J4WeYBZyK-BTlL4KG0,2671
|
|
@@ -314,7 +314,7 @@ freestyle/functions/__init__.pyi,sha256=RGdlJWbBctqKBR3p81MsXBk9OWdTuvEoOfBXvxjf
|
|
|
314
314
|
freestyle/predicates/__init__.pyi,sha256=Liq_1krkT25RfeNPeEgvKWkLnWtHCuO9-7vXX3lE71E,13488
|
|
315
315
|
freestyle/shaders/__init__.pyi,sha256=imuo4jXkwaN4dazDARvErEGdn9XuMGlWIKGpnqd3Po0,24041
|
|
316
316
|
freestyle/types/__init__.pyi,sha256=zCVqLakrYPiSTlYVHLg-455C9aPCEo-eeO-0A1fYFYs,100227
|
|
317
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
317
|
+
freestyle/utils/__init__.pyi,sha256=k2JFp4C3DUpnkVgR1B32ZDux08pAcsceSuWBnIEHD9A,5135
|
|
318
318
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=YvDLJXMxKbbqBS0so4MnfuSN1g4wNAFOXbpW7_g4AR0,3472
|
|
319
319
|
gpu/__init__.pyi,sha256=zVeZ4mRNYZyEgbp-j6uZ6ZQTpWFGh7j3R8UT9JOZ_0w,8026
|
|
320
320
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -361,7 +361,7 @@ rna_prop_ui/__init__.pyi,sha256=o3yE2C_BSi2O_ZJM_Jao06i6seWMRNQcZaI6keKjpFE,1308
|
|
|
361
361
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
362
362
|
rna_xml/__init__.pyi,sha256=EBP-inpL9KRsjGftcoza9_G_Do5UjXw62eAvuEMoaO0,604
|
|
363
363
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
364
|
-
fake_bpy_module-
|
|
365
|
-
fake_bpy_module-
|
|
366
|
-
fake_bpy_module-
|
|
367
|
-
fake_bpy_module-
|
|
364
|
+
fake_bpy_module-20250522.dist-info/METADATA,sha256=pYy9dO0cl3hYd9sgVAe-Nih64NwBJ_W3uPgtvlogVoE,7429
|
|
365
|
+
fake_bpy_module-20250522.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
|
|
366
|
+
fake_bpy_module-20250522.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
367
|
+
fake_bpy_module-20250522.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -125,7 +125,7 @@ def material_from_fedge(fe):
|
|
|
125
125
|
"""get the diffuse RGBA color from an FEdge"""
|
|
126
126
|
|
|
127
127
|
def normal_at_I0D(it): ...
|
|
128
|
-
def pairwise(iterable, types={
|
|
128
|
+
def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
|
|
129
129
|
"""Yields a tuple containing the previous and current object"""
|
|
130
130
|
|
|
131
131
|
def rgb_to_bw(r, g, b):
|
|
File without changes
|
|
File without changes
|