fake-bpy-module-latest 20260115__py3-none-any.whl → 20260125__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.
- _bpy_internal/__init__.pyi +2 -1
- _bpy_internal/filesystem/__init__.pyi +5 -0
- _bpy_internal/filesystem/locking/__init__.pyi +28 -0
- _bpy_internal/platform/__init__.pyi +5 -0
- bl_operators/node/__init__.pyi +14 -0
- bl_ui/generic_ui_list/__init__.pyi +1 -1
- bpy/app/__init__.pyi +8 -4
- bpy/app/handlers/__init__.pyi +4 -0
- bpy/ops/grease_pencil/__init__.pyi +44 -12
- bpy/ops/mesh/__init__.pyi +44 -17
- bpy/ops/node/__init__.pyi +38 -0
- bpy/ops/outliner/__init__.pyi +4 -4
- bpy/ops/paint/__init__.pyi +47 -9
- bpy/ops/preferences/__init__.pyi +14 -0
- bpy/ops/sculpt/__init__.pyi +11 -3
- bpy/ops/sculpt_curves/__init__.pyi +11 -3
- bpy/stub_internal/rna_enums/__init__.pyi +18 -0
- bpy/types/__init__.pyi +1793 -660
- {fake_bpy_module_latest-20260115.dist-info → fake_bpy_module_latest-20260125.dist-info}/METADATA +1 -1
- {fake_bpy_module_latest-20260115.dist-info → fake_bpy_module_latest-20260125.dist-info}/RECORD +26 -23
- {fake_bpy_module_latest-20260115.dist-info → fake_bpy_module_latest-20260125.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +19 -4
- idprop/__init__.pyi +16 -0
- mathutils/bvhtree/__init__.pyi +2 -1
- /_bpy_internal/{freedesktop → platform/freedesktop}/__init__.pyi +0 -0
- {fake_bpy_module_latest-20260115.dist-info → fake_bpy_module_latest-20260125.dist-info}/top_level.txt +0 -0
|
@@ -2019,6 +2019,22 @@ type MeshSelectModeUvItems = typing.Literal[
|
|
|
2019
2019
|
"EDGE", # Edge.Edge selection mode.
|
|
2020
2020
|
"FACE", # Face.Face selection mode.
|
|
2021
2021
|
]
|
|
2022
|
+
type MeshWalkDelimitEdgeLoopItems = typing.Literal[
|
|
2023
|
+
"INNER_CORNERS", # Inner Corners.Stop boundary selection at vertices with more than three edges.
|
|
2024
|
+
"OUTER_CORNERS", # Outer Corners.Stop boundary selection at vertices with two edges when they share a face that is not an n-gon.
|
|
2025
|
+
"NGONS", # N-gons.Stop boundary selection at n-gons.
|
|
2026
|
+
]
|
|
2027
|
+
type MeshWalkDelimitEdgeRingItems = typing.Literal[
|
|
2028
|
+
"SEAM", # Seam.Delimit edge ring selection at seams.
|
|
2029
|
+
"SHARP", # Sharp.Delimit edge ring selection at sharp edges.
|
|
2030
|
+
"MATERIAL", # Material.Delimit edge ring selection at material boundaries.
|
|
2031
|
+
"NGONS", # N-gons.Allow edge ring selection to step over n-gons with an even number of sides.
|
|
2032
|
+
]
|
|
2033
|
+
type MeshWalkDelimitFaceLoopItems = typing.Literal[
|
|
2034
|
+
"SEAM", # Seam.Delimit face loop selection at seams.
|
|
2035
|
+
"SHARP", # Sharp.Delimit face loop selection at sharp edges.
|
|
2036
|
+
"MATERIAL", # Material.Delimit face loop selection at material boundaries.
|
|
2037
|
+
]
|
|
2022
2038
|
type MetaelemTypeItems = typing.Literal[
|
|
2023
2039
|
"BALL", # Ball.
|
|
2024
2040
|
"CAPSULE", # Capsule.
|
|
@@ -2606,6 +2622,7 @@ type PropertySubtypeItems = typing.Literal[
|
|
|
2606
2622
|
"UNSIGNED", # Unsigned.
|
|
2607
2623
|
"PERCENTAGE", # Percentage.A percentage between 0 and 100.
|
|
2608
2624
|
"FACTOR", # Factor.A factor between 0.0 and 1.0.
|
|
2625
|
+
"MASS", # Mass.A mass, based on scene unit settings.
|
|
2609
2626
|
"ANGLE", # Angle.A rotational value specified in radians.
|
|
2610
2627
|
"TIME", # Time (Scene Relative).Time specified in frames, converted to seconds based on scene frame rate.
|
|
2611
2628
|
"TIME_ABSOLUTE", # Time (Absolute).Time specified in seconds, independent of the scene.
|
|
@@ -2657,6 +2674,7 @@ type PropertySubtypeNumberItems = typing.Literal[
|
|
|
2657
2674
|
"UNSIGNED", # Unsigned.
|
|
2658
2675
|
"PERCENTAGE", # Percentage.A percentage between 0 and 100.
|
|
2659
2676
|
"FACTOR", # Factor.A factor between 0.0 and 1.0.
|
|
2677
|
+
"MASS", # Mass.A mass, based on scene unit settings.
|
|
2660
2678
|
"ANGLE", # Angle.A rotational value specified in radians.
|
|
2661
2679
|
"TIME", # Time (Scene Relative).Time specified in frames, converted to seconds based on scene frame rate.
|
|
2662
2680
|
"TIME_ABSOLUTE", # Time (Absolute).Time specified in seconds, independent of the scene.
|