fake-bpy-module 20250928__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.

@@ -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: ...
@@ -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:
@@ -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
@@ -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,
@@ -8,7 +8,7 @@ def create(
8
8
  undo: bool | None = None,
9
9
  /,
10
10
  *,
11
- name: str = "Collection",
11
+ name: str = "",
12
12
  ) -> None:
13
13
  """Create an object collection from selected objects
14
14
 
@@ -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 = "Compositor Nodes",
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.Edit 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.View the image.
2820
- "UV", # UV Editor.UV edit in mesh editmode.
2821
- "PAINT", # Paint.2D image painting mode.
2822
- "MASK", # Mask.Mask editing.
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.View the image.
2826
- "UV", # UV Editor.UV edit in mesh editmode.
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.Video editing tools.
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.