fake-bpy-module 20250415__py3-none-any.whl → 20250416__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_graph/__init__.pyi +27 -0
- bl_ui/space_userpref/__init__.pyi +2 -2
- bpy/types/__init__.pyi +29 -21
- {fake_bpy_module-20250415.dist-info → fake_bpy_module-20250416.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250415.dist-info → fake_bpy_module-20250416.dist-info}/RECORD +9 -9
- freestyle/utils/__init__.pyi +1 -1
- gpu_extras/batch/__init__.pyi +2 -3
- {fake_bpy_module-20250415.dist-info → fake_bpy_module-20250416.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250415.dist-info → fake_bpy_module-20250416.dist-info}/top_level.txt +0 -0
bl_ui/space_graph/__init__.pyi
CHANGED
|
@@ -433,6 +433,33 @@ class GRAPH_MT_view_pie(bpy.types.Menu):
|
|
|
433
433
|
:param context:
|
|
434
434
|
"""
|
|
435
435
|
|
|
436
|
+
class GRAPH_PT_driver_snapping(bpy.types.Panel):
|
|
437
|
+
bl_label: typing.Any
|
|
438
|
+
bl_region_type: typing.Any
|
|
439
|
+
bl_rna: typing.Any
|
|
440
|
+
bl_space_type: typing.Any
|
|
441
|
+
id_data: typing.Any
|
|
442
|
+
|
|
443
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
444
|
+
"""
|
|
445
|
+
|
|
446
|
+
:return: The RNA type or default when not found.
|
|
447
|
+
:rtype: bpy.types.Struct
|
|
448
|
+
"""
|
|
449
|
+
|
|
450
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
451
|
+
"""
|
|
452
|
+
|
|
453
|
+
:return: The class or default when not found.
|
|
454
|
+
:rtype: typing.Any
|
|
455
|
+
"""
|
|
456
|
+
|
|
457
|
+
def draw(self, context):
|
|
458
|
+
"""
|
|
459
|
+
|
|
460
|
+
:param context:
|
|
461
|
+
"""
|
|
462
|
+
|
|
436
463
|
class GRAPH_PT_filters(
|
|
437
464
|
bl_ui.space_dopesheet.DopesheetFilterPopoverBase, bpy.types.Panel
|
|
438
465
|
):
|
|
@@ -3237,7 +3237,7 @@ class USERPREF_UL_asset_libraries(bpy.types.UIList):
|
|
|
3237
3237
|
layout,
|
|
3238
3238
|
_data,
|
|
3239
3239
|
item,
|
|
3240
|
-
|
|
3240
|
+
_icon,
|
|
3241
3241
|
_active_data,
|
|
3242
3242
|
_active_propname,
|
|
3243
3243
|
_index,
|
|
@@ -3248,7 +3248,7 @@ class USERPREF_UL_asset_libraries(bpy.types.UIList):
|
|
|
3248
3248
|
:param layout:
|
|
3249
3249
|
:param _data:
|
|
3250
3250
|
:param item:
|
|
3251
|
-
:param
|
|
3251
|
+
:param _icon:
|
|
3252
3252
|
:param _active_data:
|
|
3253
3253
|
:param _active_propname:
|
|
3254
3254
|
:param _index:
|
bpy/types/__init__.pyi
CHANGED
|
@@ -132872,13 +132872,13 @@ class CompositorNodeInvert(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
132872
132872
|
"""Invert colors, producing a negative"""
|
|
132873
132873
|
|
|
132874
132874
|
invert_alpha: bool
|
|
132875
|
-
"""
|
|
132875
|
+
""" (Deprecated: Use Invert Alpha node instead.)
|
|
132876
132876
|
|
|
132877
132877
|
:type: bool
|
|
132878
132878
|
"""
|
|
132879
132879
|
|
|
132880
132880
|
invert_rgb: bool
|
|
132881
|
-
"""
|
|
132881
|
+
""" (Deprecated: Use Invert Color node instead.)
|
|
132882
132882
|
|
|
132883
132883
|
:type: bool
|
|
132884
132884
|
"""
|
|
@@ -133640,13 +133640,13 @@ class CompositorNodeMask(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
133640
133640
|
"""
|
|
133641
133641
|
|
|
133642
133642
|
motion_blur_samples: int
|
|
133643
|
-
""" Number of motion blur samples
|
|
133643
|
+
""" Number of motion blur samples. (Deprecated: Use Motion Blur Samples input instead.)
|
|
133644
133644
|
|
|
133645
133645
|
:type: int
|
|
133646
133646
|
"""
|
|
133647
133647
|
|
|
133648
133648
|
motion_blur_shutter: float
|
|
133649
|
-
""" Exposure for motion blur as a factor of FPS
|
|
133649
|
+
""" Exposure for motion blur as a factor of FPS. (Deprecated: Use Motion Blur Shutter input instead.)
|
|
133650
133650
|
|
|
133651
133651
|
:type: float
|
|
133652
133652
|
"""
|
|
@@ -133658,25 +133658,25 @@ class CompositorNodeMask(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
133658
133658
|
"""
|
|
133659
133659
|
|
|
133660
133660
|
size_x: int
|
|
133661
|
-
"""
|
|
133661
|
+
""" (Deprecated: Use Size X input instead.)
|
|
133662
133662
|
|
|
133663
133663
|
:type: int
|
|
133664
133664
|
"""
|
|
133665
133665
|
|
|
133666
133666
|
size_y: int
|
|
133667
|
-
"""
|
|
133667
|
+
""" (Deprecated: Use Size Y input instead.)
|
|
133668
133668
|
|
|
133669
133669
|
:type: int
|
|
133670
133670
|
"""
|
|
133671
133671
|
|
|
133672
133672
|
use_feather: bool
|
|
133673
|
-
""" Use feather information from the mask
|
|
133673
|
+
""" Use feather information from the mask. (Deprecated: Use Feather input instead.)
|
|
133674
133674
|
|
|
133675
133675
|
:type: bool
|
|
133676
133676
|
"""
|
|
133677
133677
|
|
|
133678
133678
|
use_motion_blur: bool
|
|
133679
|
-
""" Use multi-sampled motion blur of the mask
|
|
133679
|
+
""" Use multi-sampled motion blur of the mask. (Deprecated: Use Motion Blur input instead.)
|
|
133680
133680
|
|
|
133681
133681
|
:type: bool
|
|
133682
133682
|
"""
|
|
@@ -135440,7 +135440,7 @@ class CompositorNodeSwitch(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
135440
135440
|
"""Switch between two images using a checkbox"""
|
|
135441
135441
|
|
|
135442
135442
|
check: bool
|
|
135443
|
-
""" Off: first socket, On: second socket
|
|
135443
|
+
""" Off: first socket, On: second socket. (Deprecated: Use Switch input instead.)
|
|
135444
135444
|
|
|
135445
135445
|
:type: bool
|
|
135446
135446
|
"""
|
|
@@ -136307,13 +136307,13 @@ class CompositorNodeZcombine(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
136307
136307
|
"""Combine two images using depth maps"""
|
|
136308
136308
|
|
|
136309
136309
|
use_alpha: bool
|
|
136310
|
-
""" Take alpha channel into account when doing the Z operation
|
|
136310
|
+
""" Take alpha channel into account when doing the Z operation. (Deprecated: Use Use Alpha input instead.)
|
|
136311
136311
|
|
|
136312
136312
|
:type: bool
|
|
136313
136313
|
"""
|
|
136314
136314
|
|
|
136315
136315
|
use_antialias_z: bool
|
|
136316
|
-
""" Anti-alias the z-buffer to try to avoid artifacts, mostly useful for Blender renders
|
|
136316
|
+
""" Anti-alias the z-buffer to try to avoid artifacts, mostly useful for Blender renders. (Deprecated: Use Anti-Alias input instead.)
|
|
136317
136317
|
|
|
136318
136318
|
:type: bool
|
|
136319
136319
|
"""
|
|
@@ -193366,13 +193366,13 @@ class OperatorStrokeElement(PropertyGroup, bpy_struct):
|
|
|
193366
193366
|
"""
|
|
193367
193367
|
|
|
193368
193368
|
x_tilt: float
|
|
193369
|
-
"""
|
|
193369
|
+
""" Pen tilt from left (-1.0) to right (+1.0)
|
|
193370
193370
|
|
|
193371
193371
|
:type: float
|
|
193372
193372
|
"""
|
|
193373
193373
|
|
|
193374
193374
|
y_tilt: float
|
|
193375
|
-
"""
|
|
193375
|
+
""" Pen tilt from forward (-1.0) to back (+1.0)
|
|
193376
193376
|
|
|
193377
193377
|
:type: float
|
|
193378
193378
|
"""
|
|
@@ -198312,12 +198312,6 @@ class PreferencesExperimental(bpy_struct):
|
|
|
198312
198312
|
:type: bool
|
|
198313
198313
|
"""
|
|
198314
198314
|
|
|
198315
|
-
use_new_pointcloud_type: bool
|
|
198316
|
-
""" Enable the new point cloud type in the ui
|
|
198317
|
-
|
|
198318
|
-
:type: bool
|
|
198319
|
-
"""
|
|
198320
|
-
|
|
198321
198315
|
use_new_volume_nodes: bool
|
|
198322
198316
|
""" Enables visibility of the new Volume nodes in the UI
|
|
198323
198317
|
|
|
@@ -228459,6 +228453,18 @@ class ToolSettings(bpy_struct):
|
|
|
228459
228453
|
:type: bool
|
|
228460
228454
|
"""
|
|
228461
228455
|
|
|
228456
|
+
use_snap_driver: bool
|
|
228457
|
+
""" Enable snapping when transforming keys in the Driver Editor
|
|
228458
|
+
|
|
228459
|
+
:type: bool
|
|
228460
|
+
"""
|
|
228461
|
+
|
|
228462
|
+
use_snap_driver_absolute: bool
|
|
228463
|
+
""" Snap to full values
|
|
228464
|
+
|
|
228465
|
+
:type: bool
|
|
228466
|
+
"""
|
|
228467
|
+
|
|
228462
228468
|
use_snap_edit: bool
|
|
228463
228469
|
""" Snap onto non-active objects in edit mode (edit mode only)
|
|
228464
228470
|
|
|
@@ -231622,7 +231628,7 @@ class USERPREF_UL_asset_libraries(UIList, bpy_struct):
|
|
|
231622
231628
|
layout,
|
|
231623
231629
|
_data,
|
|
231624
231630
|
item,
|
|
231625
|
-
|
|
231631
|
+
_icon,
|
|
231626
231632
|
_active_data,
|
|
231627
231633
|
_active_propname,
|
|
231628
231634
|
_index,
|
|
@@ -231633,7 +231639,7 @@ class USERPREF_UL_asset_libraries(UIList, bpy_struct):
|
|
|
231633
231639
|
:param layout:
|
|
231634
231640
|
:param _data:
|
|
231635
231641
|
:param item:
|
|
231636
|
-
:param
|
|
231642
|
+
:param _icon:
|
|
231637
231643
|
:param _active_data:
|
|
231638
231644
|
:param _active_propname:
|
|
231639
231645
|
:param _index:
|
|
@@ -239690,6 +239696,8 @@ GRAPH_MT_view: bl_ui.space_graph.GRAPH_MT_view
|
|
|
239690
239696
|
|
|
239691
239697
|
GRAPH_MT_view_pie: bl_ui.space_graph.GRAPH_MT_view_pie
|
|
239692
239698
|
|
|
239699
|
+
GRAPH_PT_driver_snapping: bl_ui.space_graph.GRAPH_PT_driver_snapping
|
|
239700
|
+
|
|
239693
239701
|
GRAPH_PT_filters: bl_ui.space_graph.GRAPH_PT_filters
|
|
239694
239702
|
|
|
239695
239703
|
GRAPH_PT_proportional_edit: bl_ui.space_graph.GRAPH_PT_proportional_edit
|
|
@@ -157,7 +157,7 @@ bl_ui/space_clip/__init__.pyi,sha256=m-hA2BCfHkiX3mLo0EHswP6WJ0C-nGtWpYki4OklnXA
|
|
|
157
157
|
bl_ui/space_console/__init__.pyi,sha256=X_JBBHl7cwwDVYQlTAE4H5T6HkqSzQVNYGtnyBtv-WA,3300
|
|
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
|
-
bl_ui/space_graph/__init__.pyi,sha256=
|
|
160
|
+
bl_ui/space_graph/__init__.pyi,sha256=sadLptKxyzDtIT5Pmd1pDYWCL3AFCT2b3yzCtaikWYc,11606
|
|
161
161
|
bl_ui/space_image/__init__.pyi,sha256=dt24hDX6d62SH7MDYEt4JBrS_Q4M_KTqvv9rAvug1hs,45232
|
|
162
162
|
bl_ui/space_info/__init__.pyi,sha256=ukwr4M_jVQH2U1wo4jTie5RK8kf3wfEBHnTIV8dvKxM,3312
|
|
163
163
|
bl_ui/space_nla/__init__.pyi,sha256=rHI5YccrddEIyXIv7ojfdoS5H5-8W3t9CD86W0DZWTw,9562
|
|
@@ -172,7 +172,7 @@ bl_ui/space_time/__init__.pyi,sha256=2cMsdu3bk7NU5W2beqhyWJCL1-d4aa26R1KNTq0v07M
|
|
|
172
172
|
bl_ui/space_toolsystem_common/__init__.pyi,sha256=u9fq0qxsCYtwB6CEJHjkfbrkj4uDxd9Y5RZ_4Q76Iss,3212
|
|
173
173
|
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=nw4_dyzrE9gxIsDHRKDqQG6V6tQYZWcD-2wQzALvKp4,9973
|
|
174
174
|
bl_ui/space_topbar/__init__.pyi,sha256=8JXrYqbiPLGQTsbcniOLTaAhvhtkLSaTFmikzMMH5Zo,15343
|
|
175
|
-
bl_ui/space_userpref/__init__.pyi,sha256=
|
|
175
|
+
bl_ui/space_userpref/__init__.pyi,sha256=u6fweJMvs86854KldySIbAPoigu9f14mUF0TeLaQqjM,79609
|
|
176
176
|
bl_ui/space_view3d/__init__.pyi,sha256=ti9fWwn2LavDNpDzziuZP0Iq_YhZocwm9TZpc_QRW9I,157186
|
|
177
177
|
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=Ustue-nkysid6xip9XciEHWqCROHnUVF_FTFaXryQjw,76322
|
|
178
178
|
bl_ui/utils/__init__.pyi,sha256=wzUQN8iooBJnE-iFedHD1cTNBwFUmwZN6d2jwfRIK5Y,510
|
|
@@ -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=Upi0xLx5yw2oWgFR1yTa0GC_qxvo7iEqCp-S3ZbrITo,5586670
|
|
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=dc9ZViPAqOap5ZsFfWoI0d6bHdri3pWWiVeRxAaZr-U,2672
|
|
@@ -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=ub0HsAFKN7jMbNu3fuP9OpaOSHywBpSckuXSexz0Bos,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
|
|
@@ -328,7 +328,7 @@ gpu/texture/__init__.pyi,sha256=eXL-ZQU-gsMFo_Yv6ShF_YjBQ-yPDLRZno-T3P59nhE,668
|
|
|
328
328
|
gpu/types/__init__.pyi,sha256=9wnXX8CdoIPTRMxWLEEiwmDi8Xj0-_lovIxRZ5BEKaM,29330
|
|
329
329
|
gpu_extras/__init__.pyi,sha256=XscwC-5DTPC0yc2HB_XMgvX61rT5Qs5RaImqNwR6c40,240
|
|
330
330
|
gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
331
|
-
gpu_extras/batch/__init__.pyi,sha256=
|
|
331
|
+
gpu_extras/batch/__init__.pyi,sha256=0z8rIEm4SFuC-rUGyoOMU0L6i_TsaW5nJN9cGR6u40Y,1306
|
|
332
332
|
gpu_extras/presets/__init__.pyi,sha256=9MrG1r0CUOxBYWyp_vZSYxs47oElIxca1uMyuFPLKdw,1674
|
|
333
333
|
graphviz_export/__init__.pyi,sha256=_breciGLRC6qTh-HOor-Ufn_fI5HXnoQego6mmvTAIQ,242
|
|
334
334
|
graphviz_export/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-20250416.dist-info/METADATA,sha256=Z1H9kZKBs1_Yak791hwZVGn5tV8XWLxI-BDOu_iMI9Y,7429
|
|
365
|
+
fake_bpy_module-20250416.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
366
|
+
fake_bpy_module-20250416.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
367
|
+
fake_bpy_module-20250416.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={Stroke, StrokeVertexIterator}):
|
|
129
129
|
"""Yields a tuple containing the previous and current object"""
|
|
130
130
|
|
|
131
131
|
def rgb_to_bw(r, g, b):
|
gpu_extras/batch/__init__.pyi
CHANGED
|
@@ -2,7 +2,6 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
|
-
import bgl
|
|
6
5
|
import gpu.types
|
|
7
6
|
|
|
8
7
|
def batch_for_shader(
|
|
@@ -10,7 +9,7 @@ def batch_for_shader(
|
|
|
10
9
|
type: str,
|
|
11
10
|
content: dict[
|
|
12
11
|
str,
|
|
13
|
-
|
|
12
|
+
gpu.types.Buffer
|
|
14
13
|
| collections.abc.Sequence[float]
|
|
15
14
|
| collections.abc.Sequence[int]
|
|
16
15
|
| collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
@@ -27,7 +26,7 @@ def batch_for_shader(
|
|
|
27
26
|
:type type: str
|
|
28
27
|
:param content: Maps the name of the shader attribute with the data to fill the vertex buffer.
|
|
29
28
|
For the dictionary values see documentation for `gpu.types.GPUVertBuf.attr_fill` data argument.
|
|
30
|
-
:type content: dict[str,
|
|
29
|
+
:type content: dict[str, gpu.types.Buffer | collections.abc.Sequence[float] | collections.abc.Sequence[int] | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[collections.abc.Sequence[int]]]
|
|
31
30
|
:return: compatible batch
|
|
32
31
|
:rtype: gpu.types.GPUBatch
|
|
33
32
|
"""
|
|
File without changes
|
|
File without changes
|