fake-bpy-module 20250929__py3-none-any.whl → 20250930__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_i18n_utils/bl_extract_messages/__init__.pyi +1 -0
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/properties_data_modifier/__init__.pyi +12 -1
- bmesh/types/__init__.pyi +6 -7
- bpy/app/translations/__init__.pyi +1 -1
- bpy/ops/brush/__init__.pyi +0 -32
- bpy/ops/collection/__init__.pyi +1 -1
- bpy/ops/grease_pencil/__init__.pyi +18 -0
- bpy/ops/node/__init__.pyi +13 -2
- bpy/stub_internal/rna_enums/__init__.pyi +10 -11
- bpy/types/__init__.pyi +355 -266
- {fake_bpy_module-20250929.dist-info → fake_bpy_module-20250930.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250929.dist-info → fake_bpy_module-20250930.dist-info}/RECORD +16 -16
- mathutils/bvhtree/__init__.pyi +2 -3
- {fake_bpy_module-20250929.dist-info → fake_bpy_module-20250930.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250929.dist-info → fake_bpy_module-20250930.dist-info}/top_level.txt +0 -0
|
@@ -11,6 +11,7 @@ def dump_addon_messages(addon_module_name, do_checks, settings) -> None: ...
|
|
|
11
11
|
def dump_asset_messages(msgs, reports, settings) -> None: ...
|
|
12
12
|
def dump_extension_metadata(msgs, reports, settings) -> None: ...
|
|
13
13
|
def dump_messages(do_messages, do_checks, settings) -> None: ...
|
|
14
|
+
def dump_ocio_config(msgs, reports, settings) -> None: ...
|
|
14
15
|
def dump_preset_messages(msgs, reports, settings) -> None: ...
|
|
15
16
|
def dump_py_messages(msgs, reports, addons, settings, addons_only=False) -> None: ...
|
|
16
17
|
def dump_py_messages_from_files(msgs, reports, files, settings) -> None: ...
|
|
@@ -120,7 +120,7 @@ class UILIST_OT_entry_remove(GenericUIListOperator, _bpy_types.Operator):
|
|
|
120
120
|
|
|
121
121
|
def draw_ui_list(
|
|
122
122
|
layout: bpy.types.UILayout,
|
|
123
|
-
context:
|
|
123
|
+
context: bpy.types.Context,
|
|
124
124
|
class_name: str = "UI_UL_list",
|
|
125
125
|
*,
|
|
126
126
|
unique_id: str,
|
|
@@ -136,7 +136,7 @@ def draw_ui_list(
|
|
|
136
136
|
:param layout: UILayout to draw the list in.
|
|
137
137
|
:type layout: bpy.types.UILayout
|
|
138
138
|
:param context: Blender context to get the list data from.
|
|
139
|
-
:type context:
|
|
139
|
+
:type context: bpy.types.Context
|
|
140
140
|
:param class_name: Name of the UIList class to draw. The default is the UIList class that ships with Blender.
|
|
141
141
|
:type class_name: str
|
|
142
142
|
:param unique_id: Unique identifier to differentiate this from other UI lists.
|
|
@@ -81,11 +81,22 @@ class ModifierAddMenu:
|
|
|
81
81
|
MODIFIER_TYPES_TO_LABELS: typing.Any
|
|
82
82
|
|
|
83
83
|
@classmethod
|
|
84
|
-
def operator_modifier_add(cls, layout, mod_type) -> None:
|
|
84
|
+
def operator_modifier_add(cls, layout, mod_type, text=None, no_icon=False) -> None:
|
|
85
85
|
"""
|
|
86
86
|
|
|
87
87
|
:param layout:
|
|
88
88
|
:param mod_type:
|
|
89
|
+
:param text:
|
|
90
|
+
:param no_icon:
|
|
91
|
+
"""
|
|
92
|
+
|
|
93
|
+
@classmethod
|
|
94
|
+
def operator_modifier_add_asset(cls, layout, name, icon="NONE") -> None:
|
|
95
|
+
"""
|
|
96
|
+
|
|
97
|
+
:param layout:
|
|
98
|
+
:param name:
|
|
99
|
+
:param icon:
|
|
89
100
|
"""
|
|
90
101
|
|
|
91
102
|
class ModifierButtonsPanel:
|
bmesh/types/__init__.pyi
CHANGED
|
@@ -23,7 +23,6 @@ import typing
|
|
|
23
23
|
import collections.abc
|
|
24
24
|
import typing_extensions
|
|
25
25
|
import numpy.typing as npt
|
|
26
|
-
import _bpy_types
|
|
27
26
|
import bpy.types
|
|
28
27
|
import mathutils
|
|
29
28
|
|
|
@@ -1616,7 +1615,7 @@ class BMesh:
|
|
|
1616
1615
|
|
|
1617
1616
|
def from_mesh(
|
|
1618
1617
|
self,
|
|
1619
|
-
mesh:
|
|
1618
|
+
mesh: bpy.types.Mesh,
|
|
1620
1619
|
*,
|
|
1621
1620
|
face_normals: bool = True,
|
|
1622
1621
|
vertex_normals: bool = True,
|
|
@@ -1626,7 +1625,7 @@ class BMesh:
|
|
|
1626
1625
|
"""Initialize this bmesh from existing mesh data-block.
|
|
1627
1626
|
|
|
1628
1627
|
:param mesh: The mesh data to load.
|
|
1629
|
-
:type mesh:
|
|
1628
|
+
:type mesh: bpy.types.Mesh
|
|
1630
1629
|
:param face_normals:
|
|
1631
1630
|
:type face_normals: bool
|
|
1632
1631
|
:param vertex_normals:
|
|
@@ -1639,7 +1638,7 @@ class BMesh:
|
|
|
1639
1638
|
|
|
1640
1639
|
def from_object(
|
|
1641
1640
|
self,
|
|
1642
|
-
object:
|
|
1641
|
+
object: bpy.types.Object,
|
|
1643
1642
|
depsgraph: bpy.types.Depsgraph,
|
|
1644
1643
|
*,
|
|
1645
1644
|
cage: bool = False,
|
|
@@ -1649,7 +1648,7 @@ class BMesh:
|
|
|
1649
1648
|
"""Initialize this bmesh from existing object data-block (only meshes are currently supported).
|
|
1650
1649
|
|
|
1651
1650
|
:param object: The object data to load.
|
|
1652
|
-
:type object:
|
|
1651
|
+
:type object: bpy.types.Object
|
|
1653
1652
|
:param depsgraph:
|
|
1654
1653
|
:type depsgraph: bpy.types.Depsgraph
|
|
1655
1654
|
:param cage: Get the mesh as a deformed cage.
|
|
@@ -1673,11 +1672,11 @@ class BMesh:
|
|
|
1673
1672
|
def select_flush_mode(self) -> None:
|
|
1674
1673
|
"""flush selection based on the current mode current `BMesh.select_mode`."""
|
|
1675
1674
|
|
|
1676
|
-
def to_mesh(self, mesh:
|
|
1675
|
+
def to_mesh(self, mesh: bpy.types.Mesh) -> None:
|
|
1677
1676
|
"""Writes this BMesh data into an existing Mesh data-block.
|
|
1678
1677
|
|
|
1679
1678
|
:param mesh: The mesh data to write into.
|
|
1680
|
-
:type mesh:
|
|
1679
|
+
:type mesh: bpy.types.Mesh
|
|
1681
1680
|
"""
|
|
1682
1681
|
|
|
1683
1682
|
def transform(
|
|
@@ -148,7 +148,7 @@ def unregister(module_name: str | None) -> None:
|
|
|
148
148
|
"""
|
|
149
149
|
|
|
150
150
|
contexts: typing.Any
|
|
151
|
-
""" Constant value bpy.app.translations.contexts(default_real=None, default=*, operator_default=Operator, ui_events_keymaps=UI_Events_KeyMaps, plural=Plural, id_action=Action, id_armature=Armature, id_brush=Brush, id_cachefile=CacheFile, id_camera=Camera, id_collection=Collection, id_curves=Curves, id_curve=Curve, id_fs_linestyle=FreestyleLineStyle, id_gpencil=GPencil, id_id=ID, id_image=Image, id_lattice=Lattice, id_library=Library, id_light=Light, id_lightprobe=LightProbe, id_mask=Mask, id_material=Material, id_mesh=Mesh, id_metaball=Metaball, id_movieclip=MovieClip, id_nodetree=NodeTree, id_object=Object, id_paintcurve=PaintCurve, id_palette=Palette, id_particlesettings=ParticleSettings, id_pointcloud=PointCloud, id_scene=Scene, id_screen=Screen, id_sequence=Sequence, id_shapekey=Key, id_simulation=Simulation, id_sound=Sound, id_speaker=Speaker, id_text=Text, id_texture=Texture, id_vfont=VFont, id_volume=Volume, id_windowmanager=WindowManager, id_workspace=WorkSpace, id_world=World, editor_filebrowser=File browser, editor_python_console=Python console, editor_preferences=Preferences, editor_view3d=View3D, amount=Amount, color=Color, constraint=Constraint, modifier=Modifier, navigation=Navigation, render_layer=Render Layer, time=Time, unit=Unit)
|
|
151
|
+
""" Constant value bpy.app.translations.contexts(default_real=None, default=*, operator_default=Operator, ui_events_keymaps=UI_Events_KeyMaps, plural=Plural, id_action=Action, id_armature=Armature, no_translation=Do not translate, id_brush=Brush, id_cachefile=CacheFile, id_camera=Camera, id_collection=Collection, id_curves=Curves, id_curve=Curve, id_fs_linestyle=FreestyleLineStyle, id_gpencil=GPencil, id_id=ID, id_image=Image, id_lattice=Lattice, id_library=Library, id_light=Light, id_lightprobe=LightProbe, id_mask=Mask, id_material=Material, id_mesh=Mesh, id_metaball=Metaball, id_movieclip=MovieClip, id_nodetree=NodeTree, id_object=Object, id_paintcurve=PaintCurve, id_palette=Palette, id_particlesettings=ParticleSettings, id_pointcloud=PointCloud, id_scene=Scene, id_screen=Screen, id_sequence=Sequence, id_shapekey=Key, id_simulation=Simulation, id_sound=Sound, id_speaker=Speaker, id_text=Text, id_texture=Texture, id_vfont=VFont, id_volume=Volume, id_windowmanager=WindowManager, id_workspace=WorkSpace, id_world=World, editor_filebrowser=File browser, editor_python_console=Python console, editor_preferences=Preferences, editor_view3d=View3D, amount=Amount, color=Color, constraint=Constraint, modifier=Modifier, navigation=Navigation, render_layer=Render Layer, time=Time, unit=Unit)
|
|
152
152
|
"""
|
|
153
153
|
|
|
154
154
|
contexts_C_to_py: typing.Any
|
bpy/ops/brush/__init__.pyi
CHANGED
|
@@ -203,22 +203,6 @@ def asset_save_as(
|
|
|
203
203
|
:type catalog_path: str
|
|
204
204
|
"""
|
|
205
205
|
|
|
206
|
-
def curve_preset(
|
|
207
|
-
execution_context: int | str | None = None,
|
|
208
|
-
undo: bool | None = None,
|
|
209
|
-
/,
|
|
210
|
-
*,
|
|
211
|
-
shape: typing.Literal["SHARP", "SMOOTH", "MAX", "LINE", "ROUND", "ROOT"]
|
|
212
|
-
| None = "SMOOTH",
|
|
213
|
-
) -> None:
|
|
214
|
-
"""Set brush shape
|
|
215
|
-
|
|
216
|
-
:type execution_context: int | str | None
|
|
217
|
-
:type undo: bool | None
|
|
218
|
-
:param shape: Mode
|
|
219
|
-
:type shape: typing.Literal['SHARP','SMOOTH','MAX','LINE','ROUND','ROOT'] | None
|
|
220
|
-
"""
|
|
221
|
-
|
|
222
206
|
def scale_size(
|
|
223
207
|
execution_context: int | str | None = None,
|
|
224
208
|
undo: bool | None = None,
|
|
@@ -234,22 +218,6 @@ def scale_size(
|
|
|
234
218
|
:type scalar: float | None
|
|
235
219
|
"""
|
|
236
220
|
|
|
237
|
-
def sculpt_curves_falloff_preset(
|
|
238
|
-
execution_context: int | str | None = None,
|
|
239
|
-
undo: bool | None = None,
|
|
240
|
-
/,
|
|
241
|
-
*,
|
|
242
|
-
shape: typing.Literal["SHARP", "SMOOTH", "MAX", "LINE", "ROUND", "ROOT"]
|
|
243
|
-
| None = "SMOOTH",
|
|
244
|
-
) -> None:
|
|
245
|
-
"""Set Curve Falloff Preset
|
|
246
|
-
|
|
247
|
-
:type execution_context: int | str | None
|
|
248
|
-
:type undo: bool | None
|
|
249
|
-
:param shape: Mode
|
|
250
|
-
:type shape: typing.Literal['SHARP','SMOOTH','MAX','LINE','ROUND','ROOT'] | None
|
|
251
|
-
"""
|
|
252
|
-
|
|
253
221
|
def stencil_control(
|
|
254
222
|
execution_context: int | str | None = None,
|
|
255
223
|
undo: bool | None = None,
|
bpy/ops/collection/__init__.pyi
CHANGED
|
@@ -1538,6 +1538,24 @@ def set_active_material(
|
|
|
1538
1538
|
:type undo: bool | None
|
|
1539
1539
|
"""
|
|
1540
1540
|
|
|
1541
|
+
def set_corner_type(
|
|
1542
|
+
execution_context: int | str | None = None,
|
|
1543
|
+
undo: bool | None = None,
|
|
1544
|
+
/,
|
|
1545
|
+
*,
|
|
1546
|
+
corner_type: typing.Literal["ROUND", "FLAT", "SHARP"] | None = "SHARP",
|
|
1547
|
+
miter_angle: float | None = 0.785398,
|
|
1548
|
+
) -> None:
|
|
1549
|
+
"""Set the corner type of the selected points
|
|
1550
|
+
|
|
1551
|
+
:type execution_context: int | str | None
|
|
1552
|
+
:type undo: bool | None
|
|
1553
|
+
:param corner_type: Corner Type
|
|
1554
|
+
:type corner_type: typing.Literal['ROUND','FLAT','SHARP'] | None
|
|
1555
|
+
:param miter_angle: Miter Cut Angle, All corners sharper than the Miter angle will be cut flat
|
|
1556
|
+
:type miter_angle: float | None
|
|
1557
|
+
"""
|
|
1558
|
+
|
|
1541
1559
|
def set_curve_resolution(
|
|
1542
1560
|
execution_context: int | str | None = None,
|
|
1543
1561
|
undo: bool | None = None,
|
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -1714,12 +1714,23 @@ def join_named(
|
|
|
1714
1714
|
|
|
1715
1715
|
:type execution_context: int | str | None
|
|
1716
1716
|
:type undo: bool | None
|
|
1717
|
-
:param NODE_OT_join: Join Nodes, Attach selected nodes to a new common frame
|
|
1717
|
+
:param NODE_OT_join: Join Nodes in Frame, Attach selected nodes to a new common frame
|
|
1718
1718
|
:type NODE_OT_join: join | None
|
|
1719
1719
|
:param WM_OT_call_panel: Call Panel, Open a predefined panel
|
|
1720
1720
|
:type WM_OT_call_panel: bpy.ops.wm.call_panel | None
|
|
1721
1721
|
"""
|
|
1722
1722
|
|
|
1723
|
+
def join_nodes(
|
|
1724
|
+
execution_context: int | str | None = None,
|
|
1725
|
+
undo: bool | None = None,
|
|
1726
|
+
/,
|
|
1727
|
+
) -> None:
|
|
1728
|
+
"""Merge selected group input nodes into one if possible
|
|
1729
|
+
|
|
1730
|
+
:type execution_context: int | str | None
|
|
1731
|
+
:type undo: bool | None
|
|
1732
|
+
"""
|
|
1733
|
+
|
|
1723
1734
|
def link(
|
|
1724
1735
|
execution_context: int | str | None = None,
|
|
1725
1736
|
undo: bool | None = None,
|
|
@@ -1881,7 +1892,7 @@ def new_compositing_node_group(
|
|
|
1881
1892
|
undo: bool | None = None,
|
|
1882
1893
|
/,
|
|
1883
1894
|
*,
|
|
1884
|
-
name: str = "
|
|
1895
|
+
name: str = "",
|
|
1885
1896
|
) -> None:
|
|
1886
1897
|
"""Create a new compositing node group and initialize it with default nodes
|
|
1887
1898
|
|
|
@@ -2808,22 +2808,22 @@ type SpaceActionModeItems = typing.Literal[
|
|
|
2808
2808
|
"TIMELINE", # Timeline.Timeline and playback controls.
|
|
2809
2809
|
]
|
|
2810
2810
|
type SpaceFileBrowseModeItems = typing.Literal[
|
|
2811
|
-
"FILES", # File Browser.
|
|
2812
|
-
"ASSETS", # Asset Browser.
|
|
2811
|
+
"FILES", # File Browser.Built-in file manager for opening, saving, and linking data.
|
|
2812
|
+
"ASSETS", # Asset Browser.Manage assets in the current file and access linked asset libraries.
|
|
2813
2813
|
]
|
|
2814
2814
|
type SpaceGraphModeItems = typing.Literal[
|
|
2815
2815
|
"FCURVES", # Graph Editor.Edit animation/keyframes displayed as 2D curves.
|
|
2816
|
-
"DRIVERS", # Drivers.
|
|
2816
|
+
"DRIVERS", # Drivers.Define and edit drivers that link properties to custom functions or other data.
|
|
2817
2817
|
]
|
|
2818
2818
|
type SpaceImageModeAllItems = typing.Literal[
|
|
2819
|
-
"VIEW", # View.
|
|
2820
|
-
"UV", # UV Editor.
|
|
2821
|
-
"PAINT", # Paint.
|
|
2822
|
-
"MASK", # Mask.
|
|
2819
|
+
"VIEW", # View.Inspect images or render results.
|
|
2820
|
+
"UV", # UV Editor.View and edit UVs.
|
|
2821
|
+
"PAINT", # Paint.Paint images in 2D.
|
|
2822
|
+
"MASK", # Mask.View and edit masks.
|
|
2823
2823
|
]
|
|
2824
2824
|
type SpaceImageModeItems = typing.Literal[
|
|
2825
|
-
"IMAGE_EDITOR", # Image Editor.
|
|
2826
|
-
"UV", # UV Editor.
|
|
2825
|
+
"IMAGE_EDITOR", # Image Editor.Inspect images or render results.
|
|
2826
|
+
"UV", # UV Editor.View and edit UVs.
|
|
2827
2827
|
]
|
|
2828
2828
|
type SpaceSequencerViewTypeItems = typing.Literal[
|
|
2829
2829
|
"SEQUENCER", # Sequencer.
|
|
@@ -2835,7 +2835,7 @@ type SpaceTypeItems = typing.Literal[
|
|
|
2835
2835
|
"VIEW_3D", # 3D Viewport.Manipulate objects in a 3D environment.
|
|
2836
2836
|
"IMAGE_EDITOR", # UV/Image Editor.View and edit images and UV Maps.
|
|
2837
2837
|
"NODE_EDITOR", # Node Editor.Editor for node-based shading and compositing tools.
|
|
2838
|
-
"SEQUENCE_EDITOR", # Video Sequencer.
|
|
2838
|
+
"SEQUENCE_EDITOR", # Video Sequencer.Non-linear editor for arranging and mixing scenes, video, audio, and effects.
|
|
2839
2839
|
"CLIP_EDITOR", # Movie Clip Editor.Motion tracking tools.
|
|
2840
2840
|
"DOPESHEET_EDITOR", # Dope Sheet.Adjust timing of keyframes.
|
|
2841
2841
|
"GRAPH_EDITOR", # Graph Editor.Edit drivers and keyframe interpolation.
|
|
@@ -3001,7 +3001,6 @@ type TransformPivotFullItems = typing.Literal[
|
|
|
3001
3001
|
type UilistLayoutTypeItems = typing.Literal[
|
|
3002
3002
|
"DEFAULT", # Default Layout.Use the default, multi-rows layout.
|
|
3003
3003
|
"COMPACT", # Compact Layout.Use the compact, single-row layout.
|
|
3004
|
-
"GRID", # Grid Layout.Use the grid-based layout.
|
|
3005
3004
|
]
|
|
3006
3005
|
type UnpackMethodItems = typing.Literal[
|
|
3007
3006
|
"REMOVE", # Remove Pack.
|