fake-bpy-module 20250415__py3-none-any.whl → 20250417__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/app/__init__.pyi +1 -1
- bpy/ops/wm/__init__.pyi +142 -0
- bpy/types/__init__.pyi +44 -36
- {fake_bpy_module-20250415.dist-info → fake_bpy_module-20250417.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250415.dist-info → fake_bpy_module-20250417.dist-info}/RECORD +9 -9
- {fake_bpy_module-20250415.dist-info → fake_bpy_module-20250417.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250415.dist-info → fake_bpy_module-20250417.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/app/__init__.pyi
CHANGED
|
@@ -98,7 +98,7 @@ build_linkflags: typing.Any
|
|
|
98
98
|
"""
|
|
99
99
|
|
|
100
100
|
build_options: typing.Any
|
|
101
|
-
""" Constant value bpy.app.build_options(bullet=True, codec_avi=False, codec_ffmpeg=True, codec_sndfile=True, compositor_cpu=True, cycles=True, cycles_osl=True, freestyle=True, image_cineon=True, image_dds=True, image_hdr=True, image_openexr=True, image_openjpeg=True, image_tiff=True, image_webp=True, input_ndof=True, audaspace=True, international=True, openal=True, opensubdiv=True, sdl=False, coreaudio=False, jack=False, pulseaudio=False, wasapi=False, libmv=True, mod_oceansim=True, mod_remesh=True, collada=True, io_wavefront_obj=True, io_ply=True, io_stl=True, io_gpencil=True, opencolorio=True, openmp=False, openvdb=True, alembic=True, usd=True, fluid=True, xr_openxr=True, potrace=True, pugixml=True, haru=True)
|
|
101
|
+
""" Constant value bpy.app.build_options(bullet=True, codec_avi=False, codec_ffmpeg=True, codec_sndfile=True, compositor_cpu=True, cycles=True, cycles_osl=True, freestyle=True, image_cineon=True, image_dds=True, image_hdr=True, image_openexr=True, image_openjpeg=True, image_tiff=True, image_webp=True, input_ndof=True, audaspace=True, international=True, openal=True, opensubdiv=True, sdl=False, coreaudio=False, jack=False, pulseaudio=False, wasapi=False, libmv=True, mod_oceansim=True, mod_remesh=True, collada=True, io_wavefront_obj=True, io_ply=True, io_stl=True, io_fbx=True, io_gpencil=True, opencolorio=True, openmp=False, openvdb=True, alembic=True, usd=True, fluid=True, xr_openxr=True, potrace=True, pugixml=True, haru=True)
|
|
102
102
|
"""
|
|
103
103
|
|
|
104
104
|
build_platform: typing.Any
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -1422,6 +1422,148 @@ def drop_import_file(
|
|
|
1422
1422
|
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
|
|
1423
1423
|
"""
|
|
1424
1424
|
|
|
1425
|
+
def fbx_import(
|
|
1426
|
+
execution_context: int | str | None = None,
|
|
1427
|
+
undo: bool | None = None,
|
|
1428
|
+
/,
|
|
1429
|
+
*,
|
|
1430
|
+
filepath: str = "",
|
|
1431
|
+
directory: str = "",
|
|
1432
|
+
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
1433
|
+
| None = None,
|
|
1434
|
+
check_existing: bool | None = False,
|
|
1435
|
+
filter_blender: bool | None = False,
|
|
1436
|
+
filter_backup: bool | None = False,
|
|
1437
|
+
filter_image: bool | None = False,
|
|
1438
|
+
filter_movie: bool | None = False,
|
|
1439
|
+
filter_python: bool | None = False,
|
|
1440
|
+
filter_font: bool | None = False,
|
|
1441
|
+
filter_sound: bool | None = False,
|
|
1442
|
+
filter_text: bool | None = False,
|
|
1443
|
+
filter_archive: bool | None = False,
|
|
1444
|
+
filter_btx: bool | None = False,
|
|
1445
|
+
filter_collada: bool | None = False,
|
|
1446
|
+
filter_alembic: bool | None = False,
|
|
1447
|
+
filter_usd: bool | None = False,
|
|
1448
|
+
filter_obj: bool | None = False,
|
|
1449
|
+
filter_volume: bool | None = False,
|
|
1450
|
+
filter_folder: bool | None = True,
|
|
1451
|
+
filter_blenlib: bool | None = False,
|
|
1452
|
+
filemode: int | None = 8,
|
|
1453
|
+
display_type: typing.Literal[
|
|
1454
|
+
"DEFAULT", "LIST_VERTICAL", "LIST_HORIZONTAL", "THUMBNAIL"
|
|
1455
|
+
]
|
|
1456
|
+
| None = "DEFAULT",
|
|
1457
|
+
sort_method: str | None = "",
|
|
1458
|
+
global_scale: float | None = 1.0,
|
|
1459
|
+
import_colors: typing.Literal["NONE", "SRGB", "LINEAR"] | None = "SRGB",
|
|
1460
|
+
use_custom_normals: bool | None = True,
|
|
1461
|
+
use_custom_props: bool | None = True,
|
|
1462
|
+
use_custom_props_enum_as_string: bool | None = True,
|
|
1463
|
+
import_subdivision: bool | None = False,
|
|
1464
|
+
ignore_leaf_bones: bool | None = False,
|
|
1465
|
+
validate_meshes: bool | None = True,
|
|
1466
|
+
use_anim: bool | None = True,
|
|
1467
|
+
anim_offset: float | None = 1.0,
|
|
1468
|
+
filter_glob: str = "*.fbx",
|
|
1469
|
+
):
|
|
1470
|
+
"""Import FBX file into current scene
|
|
1471
|
+
|
|
1472
|
+
:type execution_context: int | str | None
|
|
1473
|
+
:type undo: bool | None
|
|
1474
|
+
:param filepath: File Path, Path to file
|
|
1475
|
+
:type filepath: str
|
|
1476
|
+
:param directory: Directory, Directory of the file
|
|
1477
|
+
:type directory: str
|
|
1478
|
+
:param files: Files
|
|
1479
|
+
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
|
|
1480
|
+
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
1481
|
+
:type check_existing: bool | None
|
|
1482
|
+
:param filter_blender: Filter .blend files
|
|
1483
|
+
:type filter_blender: bool | None
|
|
1484
|
+
:param filter_backup: Filter .blend files
|
|
1485
|
+
:type filter_backup: bool | None
|
|
1486
|
+
:param filter_image: Filter image files
|
|
1487
|
+
:type filter_image: bool | None
|
|
1488
|
+
:param filter_movie: Filter movie files
|
|
1489
|
+
:type filter_movie: bool | None
|
|
1490
|
+
:param filter_python: Filter Python files
|
|
1491
|
+
:type filter_python: bool | None
|
|
1492
|
+
:param filter_font: Filter font files
|
|
1493
|
+
:type filter_font: bool | None
|
|
1494
|
+
:param filter_sound: Filter sound files
|
|
1495
|
+
:type filter_sound: bool | None
|
|
1496
|
+
:param filter_text: Filter text files
|
|
1497
|
+
:type filter_text: bool | None
|
|
1498
|
+
:param filter_archive: Filter archive files
|
|
1499
|
+
:type filter_archive: bool | None
|
|
1500
|
+
:param filter_btx: Filter btx files
|
|
1501
|
+
:type filter_btx: bool | None
|
|
1502
|
+
:param filter_collada: Filter COLLADA files
|
|
1503
|
+
:type filter_collada: bool | None
|
|
1504
|
+
:param filter_alembic: Filter Alembic files
|
|
1505
|
+
:type filter_alembic: bool | None
|
|
1506
|
+
:param filter_usd: Filter USD files
|
|
1507
|
+
:type filter_usd: bool | None
|
|
1508
|
+
:param filter_obj: Filter OBJ files
|
|
1509
|
+
:type filter_obj: bool | None
|
|
1510
|
+
:param filter_volume: Filter OpenVDB volume files
|
|
1511
|
+
:type filter_volume: bool | None
|
|
1512
|
+
:param filter_folder: Filter folders
|
|
1513
|
+
:type filter_folder: bool | None
|
|
1514
|
+
:param filter_blenlib: Filter Blender IDs
|
|
1515
|
+
:type filter_blenlib: bool | None
|
|
1516
|
+
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
1517
|
+
:type filemode: int | None
|
|
1518
|
+
:param display_type: Display Type
|
|
1519
|
+
|
|
1520
|
+
DEFAULT
|
|
1521
|
+
Default -- Automatically determine display type for files.
|
|
1522
|
+
|
|
1523
|
+
LIST_VERTICAL
|
|
1524
|
+
Short List -- Display files as short list.
|
|
1525
|
+
|
|
1526
|
+
LIST_HORIZONTAL
|
|
1527
|
+
Long List -- Display files as a detailed list.
|
|
1528
|
+
|
|
1529
|
+
THUMBNAIL
|
|
1530
|
+
Thumbnails -- Display files as thumbnails.
|
|
1531
|
+
:type display_type: typing.Literal['DEFAULT','LIST_VERTICAL','LIST_HORIZONTAL','THUMBNAIL'] | None
|
|
1532
|
+
:param sort_method: File sorting mode
|
|
1533
|
+
:type sort_method: str | None
|
|
1534
|
+
:param global_scale: Scale
|
|
1535
|
+
:type global_scale: float | None
|
|
1536
|
+
:param import_colors: Vertex Colors, Import vertex color attributes
|
|
1537
|
+
|
|
1538
|
+
NONE
|
|
1539
|
+
None -- Do not import color attributes.
|
|
1540
|
+
|
|
1541
|
+
SRGB
|
|
1542
|
+
sRGB -- Vertex colors in the file are in sRGB color space.
|
|
1543
|
+
|
|
1544
|
+
LINEAR
|
|
1545
|
+
Linear -- Vertex colors in the file are in linear color space.
|
|
1546
|
+
:type import_colors: typing.Literal['NONE','SRGB','LINEAR'] | None
|
|
1547
|
+
:param use_custom_normals: Custom Normals, Import custom normals, if available (otherwise Blender will compute them)
|
|
1548
|
+
:type use_custom_normals: bool | None
|
|
1549
|
+
:param use_custom_props: Custom Properties, Import user properties as custom properties
|
|
1550
|
+
:type use_custom_props: bool | None
|
|
1551
|
+
:param use_custom_props_enum_as_string: Enums As Strings, Store custom property enumeration values as strings
|
|
1552
|
+
:type use_custom_props_enum_as_string: bool | None
|
|
1553
|
+
:param import_subdivision: Subdivision Data, Import FBX subdivision information as subdivision surface modifiers
|
|
1554
|
+
:type import_subdivision: bool | None
|
|
1555
|
+
:param ignore_leaf_bones: Ignore Leaf Bones, Ignore the last bone at the end of each chain (used to mark the length of the previous bone)
|
|
1556
|
+
:type ignore_leaf_bones: bool | None
|
|
1557
|
+
:param validate_meshes: Validate Meshes, Ensure the data is valid (when disabled, data may be imported which causes crashes displaying or editing)
|
|
1558
|
+
:type validate_meshes: bool | None
|
|
1559
|
+
:param use_anim: Import Animation, Import FBX animation
|
|
1560
|
+
:type use_anim: bool | None
|
|
1561
|
+
:param anim_offset: Offset, Offset to apply to animation timestamps, in frames
|
|
1562
|
+
:type anim_offset: float | None
|
|
1563
|
+
:param filter_glob: Extension Filter
|
|
1564
|
+
:type filter_glob: str
|
|
1565
|
+
"""
|
|
1566
|
+
|
|
1425
1567
|
def grease_pencil_export_pdf(
|
|
1426
1568
|
execution_context: int | str | None = None,
|
|
1427
1569
|
undo: bool | None = None,
|
bpy/types/__init__.pyi
CHANGED
|
@@ -79114,7 +79114,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
79114
79114
|
* BlendDataNodeTrees.remove
|
|
79115
79115
|
* CompositorNodeCustomGroup.node_tree
|
|
79116
79116
|
* CompositorNodeGroup.node_tree
|
|
79117
|
-
* EvaluateClosureNodeViewerPathElem.
|
|
79117
|
+
* EvaluateClosureNodeViewerPathElem.source_node_tree
|
|
79118
79118
|
* FreestyleLineStyle.node_tree
|
|
79119
79119
|
* GeometryNodeCustomGroup.node_tree
|
|
79120
79120
|
* GeometryNodeGroup.node_tree
|
|
@@ -131692,13 +131692,13 @@ class CompositorNodeDilateErode(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
131692
131692
|
"""Expand and shrink masks"""
|
|
131693
131693
|
|
|
131694
131694
|
distance: int
|
|
131695
|
-
""" Distance to grow/shrink (number of iterations)
|
|
131695
|
+
""" Distance to grow/shrink (number of iterations). (Deprecated: Use Size input instead.)
|
|
131696
131696
|
|
|
131697
131697
|
:type: int
|
|
131698
131698
|
"""
|
|
131699
131699
|
|
|
131700
131700
|
edge: float
|
|
131701
|
-
""" Edge to inset
|
|
131701
|
+
""" Edge to inset. (Deprecated: Use Falloff Size input instead.)
|
|
131702
131702
|
|
|
131703
131703
|
:type: float
|
|
131704
131704
|
"""
|
|
@@ -132812,7 +132812,7 @@ class CompositorNodeInpaint(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
132812
132812
|
"""Extend borders of an image into transparent or masked regions"""
|
|
132813
132813
|
|
|
132814
132814
|
distance: int
|
|
132815
|
-
""" Distance to inpaint (number of iterations)
|
|
132815
|
+
""" Distance to inpaint (number of iterations). (Deprecated: Use Size input instead.)
|
|
132816
132816
|
|
|
132817
132817
|
:type: int
|
|
132818
132818
|
"""
|
|
@@ -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
|
"""
|
|
@@ -134198,7 +134198,7 @@ class CompositorNodePixelate(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
134198
134198
|
"""Reduce detail in an image by making individual pixels more prominent, for a blocky or mosaic-like appearance"""
|
|
134199
134199
|
|
|
134200
134200
|
pixel_size: int
|
|
134201
|
-
""" Pixel size of the output image
|
|
134201
|
+
""" Pixel size of the output image. (Deprecated: Use Size input instead.)
|
|
134202
134202
|
|
|
134203
134203
|
:type: int
|
|
134204
134204
|
"""
|
|
@@ -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
|
"""
|
|
@@ -135692,43 +135692,43 @@ class CompositorNodeTonemap(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
135692
135692
|
"""Map one set of colors to another in order to approximate the appearance of high dynamic range"""
|
|
135693
135693
|
|
|
135694
135694
|
adaptation: float
|
|
135695
|
-
""" If 0, global; if 1, based on pixel intensity
|
|
135695
|
+
""" If 0, global; if 1, based on pixel intensity. (Deprecated: Use Light Adaptation input instead.)
|
|
135696
135696
|
|
|
135697
135697
|
:type: float
|
|
135698
135698
|
"""
|
|
135699
135699
|
|
|
135700
135700
|
contrast: float
|
|
135701
|
-
""" Set to 0 to use estimate from input image
|
|
135701
|
+
""" Set to 0 to use estimate from input image. (Deprecated: Use Contrast input instead.)
|
|
135702
135702
|
|
|
135703
135703
|
:type: float
|
|
135704
135704
|
"""
|
|
135705
135705
|
|
|
135706
135706
|
correction: float
|
|
135707
|
-
""" If 0, same for all channels; if 1, each independent
|
|
135707
|
+
""" If 0, same for all channels; if 1, each independent (Deprecated: Use Chromatic Adaptation input instead.)
|
|
135708
135708
|
|
|
135709
135709
|
:type: float
|
|
135710
135710
|
"""
|
|
135711
135711
|
|
|
135712
135712
|
gamma: float
|
|
135713
|
-
""" If not used, set to 1
|
|
135713
|
+
""" If not used, set to 1. (Deprecated: Use Gamma input instead.)
|
|
135714
135714
|
|
|
135715
135715
|
:type: float
|
|
135716
135716
|
"""
|
|
135717
135717
|
|
|
135718
135718
|
intensity: float
|
|
135719
|
-
""" If less than zero, darkens image; otherwise, makes it brighter
|
|
135719
|
+
""" If less than zero, darkens image; otherwise, makes it brighter. (Deprecated: Use Intensity input instead.)
|
|
135720
135720
|
|
|
135721
135721
|
:type: float
|
|
135722
135722
|
"""
|
|
135723
135723
|
|
|
135724
135724
|
key: float
|
|
135725
|
-
""" The value the average luminance is mapped to
|
|
135725
|
+
""" The value the average luminance is mapped to. (Deprecated: Use Key input instead.)
|
|
135726
135726
|
|
|
135727
135727
|
:type: float
|
|
135728
135728
|
"""
|
|
135729
135729
|
|
|
135730
135730
|
offset: float
|
|
135731
|
-
""" Normally always 1, but can be used as an extra control to alter the brightness curve
|
|
135731
|
+
""" Normally always 1, but can be used as an extra control to alter the brightness curve. (Deprecated: Use Balance input instead.)
|
|
135732
135732
|
|
|
135733
135733
|
:type: float
|
|
135734
135734
|
"""
|
|
@@ -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
|
"""
|
|
@@ -141846,19 +141846,19 @@ class EnumPropertyItem(bpy_struct):
|
|
|
141846
141846
|
"""
|
|
141847
141847
|
|
|
141848
141848
|
class EvaluateClosureNodeViewerPathElem(ViewerPathElem, bpy_struct):
|
|
141849
|
-
|
|
141849
|
+
evaluate_node_id: int
|
|
141850
141850
|
"""
|
|
141851
141851
|
|
|
141852
141852
|
:type: int
|
|
141853
141853
|
"""
|
|
141854
141854
|
|
|
141855
|
-
|
|
141855
|
+
source_node_tree: NodeTree | None
|
|
141856
141856
|
"""
|
|
141857
141857
|
|
|
141858
141858
|
:type: NodeTree | None
|
|
141859
141859
|
"""
|
|
141860
141860
|
|
|
141861
|
-
|
|
141861
|
+
source_output_node_id: int
|
|
141862
141862
|
"""
|
|
141863
141863
|
|
|
141864
141864
|
:type: int
|
|
@@ -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 backward (-1.0) to forward (+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
|
|
@@ -193,7 +193,7 @@ bpy/__init__.pyi,sha256=xqYSQA60ItjGIlcKmU1c67ClE1dzY3IA0l7SeDDfFFg,491
|
|
|
193
193
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
194
194
|
bpy/_typing/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
|
|
195
195
|
bpy/_typing/rna_enums/__init__.pyi,sha256=gzGoh2vHz9KGc5JnfmYr-6k5u7cn2mrFfAiy0y28Jio,140438
|
|
196
|
-
bpy/app/__init__.pyi,sha256=
|
|
196
|
+
bpy/app/__init__.pyi,sha256=Xwk-SXH12MBT1wOpGXofw-vK_zhwxtNX41BV9q6WvQE,8797
|
|
197
197
|
bpy/app/handlers/__init__.pyi,sha256=A9IS2EmBskYtGy2aMCX5vxAmTKB3YCuz1hUPZvah8S4,6938
|
|
198
198
|
bpy/app/icons/__init__.pyi,sha256=IxxJA0uPQaBAogv-iZ2jEG-5f6i3X9M-gRjw8jJnL8A,955
|
|
199
199
|
bpy/app/timers/__init__.pyi,sha256=z2vm07XNdNRr9Hi7N82BILPmiLXCzhaml-BrR1orBIo,2153
|
|
@@ -274,12 +274,12 @@ bpy/ops/uilist/__init__.pyi,sha256=CvereEDgN2sNfwlFl55E3sGeLTcaUcTCowuL1XVlclE,1
|
|
|
274
274
|
bpy/ops/uv/__init__.pyi,sha256=nVZbRNLymiV8kXoRxWWNRSq72QkPBHTtwifjBxyVINY,45463
|
|
275
275
|
bpy/ops/view2d/__init__.pyi,sha256=-ofLmKQJ0PqTP5b_mT2JHGo-Jf7aa3qeEf1nsmJQf50,7013
|
|
276
276
|
bpy/ops/view3d/__init__.pyi,sha256=zjN4R4gMYbiteFoT7Hq2jy6JC9o5VmtOvRcq4og13s8,30895
|
|
277
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
277
|
+
bpy/ops/wm/__init__.pyi,sha256=cmmx4mpSloZ3G0i3AewHHS77H8V8ejPV3LDfEcM6Nk0,228037
|
|
278
278
|
bpy/ops/workspace/__init__.pyi,sha256=NdaJuwz3A-gStNuzp_OWR9DIj7oeSgLjn9SUEBLYuNo,2024
|
|
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=NCdsZsjunCuIxo8ei2mvKKFmtD3E2nzSp6D4FZ7yJJw,5587157
|
|
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
|
|
@@ -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-20250417.dist-info/METADATA,sha256=LsJ4zMr60O9_O85ahYPqjruVwfZcTG1TEpce4gow6NM,7429
|
|
365
|
+
fake_bpy_module-20250417.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
366
|
+
fake_bpy_module-20250417.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
367
|
+
fake_bpy_module-20250417.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|