fake-bpy-module 20250416__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.
- bpy/app/__init__.pyi +1 -1
- bpy/ops/wm/__init__.pyi +142 -0
- bpy/types/__init__.pyi +16 -16
- {fake_bpy_module-20250416.dist-info → fake_bpy_module-20250417.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250416.dist-info → fake_bpy_module-20250417.dist-info}/RECORD +9 -9
- freestyle/utils/__init__.pyi +1 -1
- gpu_extras/batch/__init__.pyi +3 -2
- {fake_bpy_module-20250416.dist-info → fake_bpy_module-20250417.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250416.dist-info → fake_bpy_module-20250417.dist-info}/top_level.txt +0 -0
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
|
"""
|
|
@@ -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
|
"""
|
|
@@ -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
|
"""
|
|
@@ -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
|
|
@@ -193372,7 +193372,7 @@ class OperatorStrokeElement(PropertyGroup, bpy_struct):
|
|
|
193372
193372
|
"""
|
|
193373
193373
|
|
|
193374
193374
|
y_tilt: float
|
|
193375
|
-
""" Pen tilt from
|
|
193375
|
+
""" Pen tilt from backward (-1.0) to forward (+1.0)
|
|
193376
193376
|
|
|
193377
193377
|
:type: float
|
|
193378
193378
|
"""
|
|
@@ -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
|
|
@@ -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
|
|
@@ -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=P0KwOXu_4yBZvCupG7WJ08TQ6yvocr5NZLAhJK_qLtQ,1305
|
|
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-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,,
|
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):
|
gpu_extras/batch/__init__.pyi
CHANGED
|
@@ -2,6 +2,7 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
|
+
import bgl
|
|
5
6
|
import gpu.types
|
|
6
7
|
|
|
7
8
|
def batch_for_shader(
|
|
@@ -9,7 +10,7 @@ def batch_for_shader(
|
|
|
9
10
|
type: str,
|
|
10
11
|
content: dict[
|
|
11
12
|
str,
|
|
12
|
-
|
|
13
|
+
bgl.Buffer
|
|
13
14
|
| collections.abc.Sequence[float]
|
|
14
15
|
| collections.abc.Sequence[int]
|
|
15
16
|
| collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
@@ -26,7 +27,7 @@ def batch_for_shader(
|
|
|
26
27
|
:type type: str
|
|
27
28
|
:param content: Maps the name of the shader attribute with the data to fill the vertex buffer.
|
|
28
29
|
For the dictionary values see documentation for `gpu.types.GPUVertBuf.attr_fill` data argument.
|
|
29
|
-
:type content: dict[str,
|
|
30
|
+
:type content: dict[str, bgl.Buffer | collections.abc.Sequence[float] | collections.abc.Sequence[int] | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[collections.abc.Sequence[int]]]
|
|
30
31
|
:return: compatible batch
|
|
31
32
|
:rtype: gpu.types.GPUBatch
|
|
32
33
|
"""
|
|
File without changes
|
|
File without changes
|