fake-bpy-module 20250929__py3-none-any.whl → 20251001__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:
@@ -880,42 +880,6 @@ class NODE_PT_node_tree_interface(_bpy_types.Panel):
880
880
  :param context:
881
881
  """
882
882
 
883
- class NODE_PT_node_tree_interface_panel_toggle(_bpy_types.Panel):
884
- bl_category: typing.Any
885
- bl_label: typing.Any
886
- bl_parent_id: typing.Any
887
- bl_region_type: typing.Any
888
- bl_rna: typing.Any
889
- bl_space_type: typing.Any
890
- id_data: typing.Any
891
-
892
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
893
- """
894
-
895
- :return: The RNA type or default when not found.
896
- :rtype: bpy.types.Struct
897
- """
898
-
899
- def bl_rna_get_subclass_py(self) -> typing.Any:
900
- """
901
-
902
- :return: The class or default when not found.
903
- :rtype: typing.Any
904
- """
905
-
906
- def draw(self, context) -> None:
907
- """
908
-
909
- :param context:
910
- """
911
-
912
- @classmethod
913
- def poll(cls, context) -> None:
914
- """
915
-
916
- :param context:
917
- """
918
-
919
883
  class NODE_PT_node_tree_properties(_bpy_types.Panel):
920
884
  bl_category: typing.Any
921
885
  bl_label: typing.Any
@@ -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
@@ -992,6 +992,17 @@ def duplicate(
992
992
  :type linked: bool | None
993
993
  """
994
994
 
995
+ def duplicate_compositing_node_group(
996
+ execution_context: int | str | None = None,
997
+ undo: bool | None = None,
998
+ /,
999
+ ) -> None:
1000
+ """Duplicate the currently assigned compositing node group.
1001
+
1002
+ :type execution_context: int | str | None
1003
+ :type undo: bool | None
1004
+ """
1005
+
995
1006
  def duplicate_move(
996
1007
  execution_context: int | str | None = None,
997
1008
  undo: bool | None = None,
@@ -1515,6 +1526,17 @@ def group_edit(
1515
1526
  :type exit: bool | None
1516
1527
  """
1517
1528
 
1529
+ def group_enter_exit(
1530
+ execution_context: int | str | None = None,
1531
+ undo: bool | None = None,
1532
+ /,
1533
+ ) -> None:
1534
+ """Enter or exit node group based on cursor location
1535
+
1536
+ :type execution_context: int | str | None
1537
+ :type undo: bool | None
1538
+ """
1539
+
1518
1540
  def group_insert(
1519
1541
  execution_context: int | str | None = None,
1520
1542
  undo: bool | None = None,
@@ -1714,12 +1736,23 @@ def join_named(
1714
1736
 
1715
1737
  :type execution_context: int | str | None
1716
1738
  :type undo: bool | None
1717
- :param NODE_OT_join: Join Nodes, Attach selected nodes to a new common frame
1739
+ :param NODE_OT_join: Join Nodes in Frame, Attach selected nodes to a new common frame
1718
1740
  :type NODE_OT_join: join | None
1719
1741
  :param WM_OT_call_panel: Call Panel, Open a predefined panel
1720
1742
  :type WM_OT_call_panel: bpy.ops.wm.call_panel | None
1721
1743
  """
1722
1744
 
1745
+ def join_nodes(
1746
+ execution_context: int | str | None = None,
1747
+ undo: bool | None = None,
1748
+ /,
1749
+ ) -> None:
1750
+ """Merge selected group input nodes into one if possible
1751
+
1752
+ :type execution_context: int | str | None
1753
+ :type undo: bool | None
1754
+ """
1755
+
1723
1756
  def link(
1724
1757
  execution_context: int | str | None = None,
1725
1758
  undo: bool | None = None,
@@ -1881,7 +1914,7 @@ def new_compositing_node_group(
1881
1914
  undo: bool | None = None,
1882
1915
  /,
1883
1916
  *,
1884
- name: str = "Compositor Nodes",
1917
+ name: str = "",
1885
1918
  ) -> None:
1886
1919
  """Create a new compositing node group and initialize it with default nodes
1887
1920
 
@@ -1534,7 +1534,7 @@ def geometry_node_tree_copy_assign(
1534
1534
  undo: bool | None = None,
1535
1535
  /,
1536
1536
  ) -> None:
1537
- """Copy the active geometry node group and assign it to the active modifier
1537
+ """Duplicate the active geometry node group and assign it to the active modifier
1538
1538
 
1539
1539
  :type execution_context: int | str | None
1540
1540
  :type undo: bool | None
@@ -101,28 +101,6 @@ def blend_pose_asset(
101
101
  :type release_confirm: bool | None
102
102
  """
103
103
 
104
- def convert_old_object_poselib(
105
- execution_context: int | str | None = None,
106
- undo: bool | None = None,
107
- /,
108
- ) -> None:
109
- """Create a pose asset for each pose marker in this legacy pose library data-block
110
-
111
- :type execution_context: int | str | None
112
- :type undo: bool | None
113
- """
114
-
115
- def convert_old_poselib(
116
- execution_context: int | str | None = None,
117
- undo: bool | None = None,
118
- /,
119
- ) -> None:
120
- """Create a pose asset for each pose marker in the current action
121
-
122
- :type execution_context: int | str | None
123
- :type undo: bool | None
124
- """
125
-
126
104
  def copy_as_asset(
127
105
  execution_context: int | str | None = None,
128
106
  undo: bool | None = None,
@@ -2165,6 +2165,7 @@ def split(
2165
2165
  side: typing.Literal["MOUSE", "LEFT", "RIGHT", "BOTH", "NO_CHANGE"]
2166
2166
  | None = "MOUSE",
2167
2167
  ignore_selection: bool | None = False,
2168
+ ignore_connections: bool | None = False,
2168
2169
  ) -> None:
2169
2170
  """Split the selected strips in two
2170
2171
 
@@ -2182,6 +2183,8 @@ def split(
2182
2183
  :type side: typing.Literal['MOUSE','LEFT','RIGHT','BOTH','NO_CHANGE'] | None
2183
2184
  :param ignore_selection: Ignore Selection, Make cut even if strip is not selected preserving selection state after cut
2184
2185
  :type ignore_selection: bool | None
2186
+ :param ignore_connections: Ignore Connections, Dont propagate split to connected strips
2187
+ :type ignore_connections: bool | None
2185
2188
  """
2186
2189
 
2187
2190
  def split_multicam(
@@ -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.