fake-bpy-module 20250610__py3-none-any.whl → 20250611__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/ops/node/__init__.pyi +15 -0
- bpy/ops/object/__init__.pyi +3 -0
- bpy/stub_internal/rna_enums/__init__.pyi +7 -0
- bpy/types/__init__.pyi +32751 -32732
- {fake_bpy_module-20250610.dist-info → fake_bpy_module-20250611.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250610.dist-info → fake_bpy_module-20250611.dist-info}/RECORD +10 -10
- gpu/types/__init__.pyi +1 -1
- gpu_extras/batch/__init__.pyi +2 -3
- {fake_bpy_module-20250610.dist-info → fake_bpy_module-20250611.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250610.dist-info → fake_bpy_module-20250611.dist-info}/top_level.txt +0 -0
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -1499,6 +1499,21 @@ def mute_toggle(
|
|
|
1499
1499
|
:type undo: bool | None
|
|
1500
1500
|
"""
|
|
1501
1501
|
|
|
1502
|
+
def new_compositing_node_group(
|
|
1503
|
+
execution_context: int | str | None = None,
|
|
1504
|
+
undo: bool | None = None,
|
|
1505
|
+
/,
|
|
1506
|
+
*,
|
|
1507
|
+
name: str = "Compositing Node Tree",
|
|
1508
|
+
) -> None:
|
|
1509
|
+
"""Create a new compositing node tree and initialize it with default nodes
|
|
1510
|
+
|
|
1511
|
+
:type execution_context: int | str | None
|
|
1512
|
+
:type undo: bool | None
|
|
1513
|
+
:param name: Name
|
|
1514
|
+
:type name: str
|
|
1515
|
+
"""
|
|
1516
|
+
|
|
1502
1517
|
def new_geometry_node_group_assign(
|
|
1503
1518
|
execution_context: int | str | None = None, undo: bool | None = None
|
|
1504
1519
|
) -> None:
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -4289,6 +4289,7 @@ def subdivision_set(
|
|
|
4289
4289
|
*,
|
|
4290
4290
|
level: int | None = 1,
|
|
4291
4291
|
relative: bool | None = False,
|
|
4292
|
+
ensure_modifier: bool | None = True,
|
|
4292
4293
|
) -> None:
|
|
4293
4294
|
"""Sets a Subdivision Surface level (1 to 5)
|
|
4294
4295
|
|
|
@@ -4298,6 +4299,8 @@ def subdivision_set(
|
|
|
4298
4299
|
:type level: int | None
|
|
4299
4300
|
:param relative: Relative, Apply the subdivision surface level as an offset relative to the current level
|
|
4300
4301
|
:type relative: bool | None
|
|
4302
|
+
:param ensure_modifier: Ensure Modifier, Create the corresponding modifier if it does not exist
|
|
4303
|
+
:type ensure_modifier: bool | None
|
|
4301
4304
|
"""
|
|
4302
4305
|
|
|
4303
4306
|
def surfacedeform_bind(
|
|
@@ -2197,6 +2197,13 @@ type NodeSocketInOutItems = typing.Literal[
|
|
|
2197
2197
|
"IN", # Input.
|
|
2198
2198
|
"OUT", # Output.
|
|
2199
2199
|
]
|
|
2200
|
+
type NodeSocketStructureTypeItems = typing.Literal[
|
|
2201
|
+
"AUTO", # Auto.Automatically detect a good structure type based on how the socket is used.
|
|
2202
|
+
"SINGLE", # Single.Socket expects a single value.
|
|
2203
|
+
"DYNAMIC", # Dynamic.Socket can work with different kinds of structures.
|
|
2204
|
+
"FIELD", # Field.Socket expects a field.
|
|
2205
|
+
"GRID", # Grid.Socket expects a grid.
|
|
2206
|
+
]
|
|
2200
2207
|
type NodeSocketTypeItems = typing.Literal[
|
|
2201
2208
|
"CUSTOM", # Custom.
|
|
2202
2209
|
"VALUE", # Value.
|