fake-bpy-module 20250505__py3-none-any.whl → 20250520__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.

@@ -6,6 +6,19 @@ import numpy.typing as npt
6
6
  class AttributeGetterSetter:
7
7
  """Helper class to get and set attributes at an index for a domain."""
8
8
 
9
+ class BezierHandle:
10
+ LEFT: typing.Any
11
+ RIGHT: typing.Any
12
+ name: typing.Any
13
+ value: typing.Any
14
+
15
+ class GreasePencilStrokePointHandle:
16
+ """Proxy giving read-only/write access to Bézier handle data."""
17
+
18
+ position: typing.Any
19
+ select: typing.Any
20
+ type: typing.Any
21
+
9
22
  class SliceHelper:
10
23
  """Helper class to handle custom slicing."""
11
24
 
@@ -41,13 +54,13 @@ class GreasePencilStrokePoint(AttributeGetterSetter):
41
54
  """A helper class to get access to stroke point data."""
42
55
 
43
56
  delta_time: typing.Any
57
+ handle_left: typing.Any
58
+ handle_right: typing.Any
44
59
  opacity: typing.Any
45
60
  position: typing.Any
46
61
  radius: typing.Any
47
62
  rotation: typing.Any
48
63
  select: typing.Any
49
- select_handle_left: typing.Any
50
- select_handle_right: typing.Any
51
64
  vertex_color: typing.Any
52
65
 
53
66
  class GreasePencilStrokePointSlice(SliceHelper):
@@ -59,6 +59,41 @@ class NODE_OT_add_closure_zone(NodeAddZoneOperator, bpy.types.Operator):
59
59
  :rtype: typing.Any
60
60
  """
61
61
 
62
+ class NODE_OT_add_empty_group(NodeAddOperator, bpy.types.Operator):
63
+ bl_description: typing.Any
64
+ bl_idname: typing.Any
65
+ bl_label: typing.Any
66
+ bl_options: typing.Any
67
+ bl_rna: typing.Any
68
+ id_data: typing.Any
69
+
70
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
71
+ """
72
+
73
+ :return: The RNA type or default when not found.
74
+ :rtype: bpy.types.Struct
75
+ """
76
+
77
+ def bl_rna_get_subclass_py(self) -> typing.Any:
78
+ """
79
+
80
+ :return: The class or default when not found.
81
+ :rtype: typing.Any
82
+ """
83
+
84
+ @staticmethod
85
+ def create_empty_group(idname):
86
+ """
87
+
88
+ :param idname:
89
+ """
90
+
91
+ def execute(self, context):
92
+ """
93
+
94
+ :param context:
95
+ """
96
+
62
97
  class NODE_OT_add_foreach_geometry_element_zone(
63
98
  NodeAddZoneOperator, bpy.types.Operator
64
99
  ):
@@ -31,10 +31,18 @@ class NODE_MT_category_layout(bpy.types.Menu):
31
31
  """
32
32
 
33
33
  def add_closure_zone(layout, label): ...
34
+ def add_color_mix_node(context, layout): ...
35
+ def add_empty_group(layout): ...
34
36
  def add_foreach_geometry_element_zone(layout, label): ...
35
37
  def add_node_type(layout, node_type, *, label=None, poll=None, search_weight=0.0):
36
38
  """Add a node type to a menu."""
37
39
 
40
+ def add_node_type_with_searchable_enum(
41
+ context, layout, node_idname, property_name, search_weight=0.0
42
+ ): ...
43
+ def add_node_type_with_subnames(
44
+ context, layout, node_type, subnames, *, label=None, search_weight=0.0
45
+ ): ...
38
46
  def add_repeat_zone(layout, label): ...
39
47
  def add_simulation_zone(layout, label):
40
48
  """Add simulation zone to a menu."""
@@ -76,10 +76,10 @@ class NODE_MT_category_compositor_color_mix(bpy.types.Menu):
76
76
  :rtype: typing.Any
77
77
  """
78
78
 
79
- def draw(self, _context):
79
+ def draw(self, context):
80
80
  """
81
81
 
82
- :param _context:
82
+ :param context:
83
83
  """
84
84
 
85
85
  class NODE_MT_category_compositor_filter(bpy.types.Menu):
@@ -102,10 +102,10 @@ class NODE_MT_category_compositor_filter(bpy.types.Menu):
102
102
  :rtype: typing.Any
103
103
  """
104
104
 
105
- def draw(self, _context):
105
+ def draw(self, context):
106
106
  """
107
107
 
108
- :param _context:
108
+ :param context:
109
109
  """
110
110
 
111
111
  class NODE_MT_category_compositor_filter_blur(bpy.types.Menu):
@@ -232,10 +232,10 @@ class NODE_MT_category_compositor_input_scene(bpy.types.Menu):
232
232
  :rtype: typing.Any
233
233
  """
234
234
 
235
- def draw(self, _context):
235
+ def draw(self, context):
236
236
  """
237
237
 
238
- :param _context:
238
+ :param context:
239
239
  """
240
240
 
241
241
  class NODE_MT_category_compositor_keying(bpy.types.Menu):
@@ -415,10 +415,10 @@ class NODE_MT_category_compositor_utilities(bpy.types.Menu):
415
415
  :rtype: typing.Any
416
416
  """
417
417
 
418
- def draw(self, _context):
418
+ def draw(self, context):
419
419
  """
420
420
 
421
- :param _context:
421
+ :param context:
422
422
  """
423
423
 
424
424
  class NODE_MT_category_compositor_vector(bpy.types.Menu):
@@ -441,10 +441,10 @@ class NODE_MT_category_compositor_vector(bpy.types.Menu):
441
441
  :rtype: typing.Any
442
442
  """
443
443
 
444
- def draw(self, _context):
444
+ def draw(self, context):
445
445
  """
446
446
 
447
- :param _context:
447
+ :param context:
448
448
  """
449
449
 
450
450
  class NODE_MT_compositor_node_add_all(bpy.types.Menu):
@@ -232,10 +232,10 @@ class NODE_MT_category_GEO_UTILITIES_MATH(bpy.types.Menu):
232
232
  :rtype: typing.Any
233
233
  """
234
234
 
235
- def draw(self, _context):
235
+ def draw(self, context):
236
236
  """
237
237
 
238
- :param _context:
238
+ :param context:
239
239
  """
240
240
 
241
241
  class NODE_MT_category_GEO_UTILITIES_ROTATION(bpy.types.Menu):
@@ -310,10 +310,10 @@ class NODE_MT_category_GEO_VECTOR(bpy.types.Menu):
310
310
  :rtype: typing.Any
311
311
  """
312
312
 
313
- def draw(self, _context):
313
+ def draw(self, context):
314
314
  """
315
315
 
316
- :param _context:
316
+ :param context:
317
317
  """
318
318
 
319
319
  class NODE_MT_category_GEO_VOLUME(bpy.types.Menu):
@@ -493,10 +493,10 @@ class NODE_MT_geometry_node_GEO_COLOR(bpy.types.Menu):
493
493
  :rtype: typing.Any
494
494
  """
495
495
 
496
- def draw(self, _context):
496
+ def draw(self, context):
497
497
  """
498
498
 
499
- :param _context:
499
+ :param context:
500
500
  """
501
501
 
502
502
  class NODE_MT_geometry_node_GEO_CURVE(bpy.types.Menu):
@@ -24,10 +24,10 @@ class NODE_MT_category_shader_color(bpy.types.Menu):
24
24
  :rtype: typing.Any
25
25
  """
26
26
 
27
- def draw(self, _context):
27
+ def draw(self, context):
28
28
  """
29
29
 
30
- :param _context:
30
+ :param context:
31
31
  """
32
32
 
33
33
  class NODE_MT_category_shader_converter(bpy.types.Menu):
@@ -2312,48 +2312,6 @@ class SEQUENCER_PT_strip(SequencerButtonsPanel, bpy.types.Panel):
2312
2312
  :param context:
2313
2313
  """
2314
2314
 
2315
- class SEQUENCER_PT_strip_cache(SequencerButtonsPanel, bpy.types.Panel):
2316
- bl_category: typing.Any
2317
- bl_label: typing.Any
2318
- bl_options: typing.Any
2319
- bl_region_type: typing.Any
2320
- bl_rna: typing.Any
2321
- bl_space_type: typing.Any
2322
- id_data: typing.Any
2323
-
2324
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
2325
- """
2326
-
2327
- :return: The RNA type or default when not found.
2328
- :rtype: bpy.types.Struct
2329
- """
2330
-
2331
- def bl_rna_get_subclass_py(self) -> typing.Any:
2332
- """
2333
-
2334
- :return: The class or default when not found.
2335
- :rtype: typing.Any
2336
- """
2337
-
2338
- def draw(self, context):
2339
- """
2340
-
2341
- :param context:
2342
- """
2343
-
2344
- def draw_header(self, context):
2345
- """
2346
-
2347
- :param context:
2348
- """
2349
-
2350
- @classmethod
2351
- def poll(cls, context):
2352
- """
2353
-
2354
- :param context:
2355
- """
2356
-
2357
2315
  class SEQUENCER_PT_strip_proxy(SequencerButtonsPanel, bpy.types.Panel):
2358
2316
  bl_category: typing.Any
2359
2317
  bl_label: typing.Any
@@ -6788,6 +6788,7 @@ class VIEW3D_PT_shading_options_shadow(bpy.types.Panel):
6788
6788
  bl_region_type: typing.Any
6789
6789
  bl_rna: typing.Any
6790
6790
  bl_space_type: typing.Any
6791
+ bl_ui_units_x: typing.Any
6791
6792
  id_data: typing.Any
6792
6793
 
6793
6794
  def bl_rna_get_subclass(self) -> bpy.types.Struct:
@@ -532,6 +532,8 @@ type EventTypeItems = typing.Literal[
532
532
  "WHEELDOWNMOUSE", # Wheel Down.WhDown.
533
533
  "WHEELINMOUSE", # Wheel In.WhIn.
534
534
  "WHEELOUTMOUSE", # Wheel Out.WhOut.
535
+ "WHEELLEFTMOUSE", # Wheel Left.WhLeft.
536
+ "WHEELRIGHTMOUSE", # Wheel Right.WhRight.
535
537
  "A",
536
538
  "B", # <string>:4: (INFO/1) Enumerated list start value not ordinal-1: "B" (ordinal 2)
537
539
  "C", # <string>:4: (INFO/1) Enumerated list start value not ordinal-1: "C" (ordinal 3)
@@ -1522,6 +1524,9 @@ type IconItems = typing.Literal[
1522
1524
  "KEY_TAB", # KEY_TAB.
1523
1525
  "KEY_WINDOWS_FILLED", # KEY_WINDOWS_FILLED.
1524
1526
  "KEY_WINDOWS", # KEY_WINDOWS.
1527
+ "GESTURE_PAN", # GESTURE_PAN.
1528
+ "GESTURE_ROTATE", # GESTURE_ROTATE.
1529
+ "GESTURE_ZOOM", # GESTURE_ZOOM.
1525
1530
  "FUND", # FUND.
1526
1531
  "HEART", # HEART.
1527
1532
  "INTERNET_OFFLINE", # INTERNET_OFFLINE.
@@ -1713,6 +1718,9 @@ type IconItems = typing.Literal[
1713
1718
  "EVENT_EQUAL", # EVENT_EQUAL.
1714
1719
  "EVENT_LEFTBRACKET", # EVENT_LEFTBRACKET.
1715
1720
  "EVENT_RIGHTBRACKET", # EVENT_RIGHTBRACKET.
1721
+ "EVENT_PAD_PAN", # EVENT_PAD_PAN.
1722
+ "EVENT_PAD_ROTATE", # EVENT_PAD_ROTATE.
1723
+ "EVENT_PAD_ZOOM", # EVENT_PAD_ZOOM.
1716
1724
  "EVENT_NDOF_BUTTON_V1", # EVENT_NDOF_BUTTON_V1.
1717
1725
  "EVENT_NDOF_BUTTON_V2", # EVENT_NDOF_BUTTON_V2.
1718
1726
  "EVENT_NDOF_BUTTON_V3", # EVENT_NDOF_BUTTON_V3.
@@ -2523,6 +2531,7 @@ type PropertyFlagItems = typing.Literal[
2523
2531
  "TEXTEDIT_UPDATE", # Update on every keystroke in textedit 'mode'.
2524
2532
  "OUTPUT_PATH", # Output Path.
2525
2533
  "PATH_SUPPORTS_BLEND_RELATIVE", # Relative Path Support.This path supports relative prefix "//" which is expanded the the directory where the current ".blend" file is located..
2534
+ "SUPPORTS_TEMPLATES", # Variable expression support.This path supports the "{variable_name}" template syntax, which substitutes the value of the referenced variable in place of the template expression.
2526
2535
  ]
2527
2536
  type PropertyOverrideFlagCollectionItems = typing.Literal[
2528
2537
  "LIBRARY_OVERRIDABLE", # Library Overridable.Make that property editable in library overrides of linked data-blocks.NOTE: For a property to be overridable, its whole chain of parent properties must also be defined as overridable.
@@ -16,7 +16,7 @@ To add translations to your Python script, you must define a dictionary formatte
16
16
 
17
17
  where:
18
18
 
19
- * locale is either a lang iso code (e.g. fr
19
+ * locale is either a lang ISO code (e.g. fr
20
20
 
21
21
  ), a lang+country code (e.g. pt_BR
22
22
 
bpy/ops/__init__.pyi CHANGED
@@ -26,9 +26,13 @@ If operator was cancelled but there wasn't any reports from it with {'ERROR'}
26
26
  it will just return {'CANCELLED'}
27
27
 
28
28
  without raising any exceptions.
29
- If it had error reports, then it will raise a RuntimeError
29
+ However, if there are error reports, a RuntimeError
30
30
 
31
- including all report messages.
31
+ will be raised
32
+ after the operator finishes execution, including all error report messages,
33
+ regardless of the return status (even if it was {'FINISHED'}
34
+
35
+ ).
32
36
 
33
37
  Calling an operator in the wrong context will raise a RuntimeError
34
38
 
@@ -12,6 +12,7 @@ def asset_activate(
12
12
  asset_library_type: bpy._typing.rna_enums.AssetLibraryTypeItems | None = "LOCAL",
13
13
  asset_library_identifier: str = "",
14
14
  relative_asset_identifier: str = "",
15
+ use_toggle: bool | None = False,
15
16
  ):
16
17
  """Activate a brush asset as current sculpt and paint tool
17
18
 
@@ -23,6 +24,8 @@ def asset_activate(
23
24
  :type asset_library_identifier: str
24
25
  :param relative_asset_identifier: Relative Asset Identifier
25
26
  :type relative_asset_identifier: str
27
+ :param use_toggle: Toggle, Switch between the current and assigned brushes on consecutive uses.
28
+ :type use_toggle: bool | None
26
29
  """
27
30
 
28
31
  def asset_delete(execution_context: int | str | None = None, undo: bool | None = None):
bpy/ops/mesh/__init__.pyi CHANGED
@@ -1035,30 +1035,6 @@ def face_make_planar(
1035
1035
  :type repeat: int | None
1036
1036
  """
1037
1037
 
1038
- def face_set_extract(
1039
- execution_context: int | str | None = None,
1040
- undo: bool | None = None,
1041
- /,
1042
- *,
1043
- add_boundary_loop: bool | None = True,
1044
- smooth_iterations: int | None = 4,
1045
- apply_shrinkwrap: bool | None = True,
1046
- add_solidify: bool | None = True,
1047
- ):
1048
- """Create a new mesh object from the selected Face Set
1049
-
1050
- :type execution_context: int | str | None
1051
- :type undo: bool | None
1052
- :param add_boundary_loop: Add Boundary Loop, Add an extra edge loop to better preserve the shape when applying a subdivision surface modifier
1053
- :type add_boundary_loop: bool | None
1054
- :param smooth_iterations: Smooth Iterations, Smooth iterations applied to the extracted mesh
1055
- :type smooth_iterations: int | None
1056
- :param apply_shrinkwrap: Project to Sculpt, Project the extracted mesh into the original sculpt
1057
- :type apply_shrinkwrap: bool | None
1058
- :param add_solidify: Extract as Solid, Extract the mask as a solid object with a solidify modifier
1059
- :type add_solidify: bool | None
1060
- """
1061
-
1062
1038
  def face_split_by_edges(
1063
1039
  execution_context: int | str | None = None, undo: bool | None = None
1064
1040
  ):
@@ -1696,54 +1672,6 @@ def offset_edge_loops_slide(
1696
1672
  :type TRANSFORM_OT_edge_slide: bpy.ops.transform.edge_slide | None
1697
1673
  """
1698
1674
 
1699
- def paint_mask_extract(
1700
- execution_context: int | str | None = None,
1701
- undo: bool | None = None,
1702
- /,
1703
- *,
1704
- mask_threshold: float | None = 0.5,
1705
- add_boundary_loop: bool | None = True,
1706
- smooth_iterations: int | None = 4,
1707
- apply_shrinkwrap: bool | None = True,
1708
- add_solidify: bool | None = True,
1709
- ):
1710
- """Create a new mesh object from the current paint mask
1711
-
1712
- :type execution_context: int | str | None
1713
- :type undo: bool | None
1714
- :param mask_threshold: Threshold, Minimum mask value to consider the vertex valid to extract a face from the original mesh
1715
- :type mask_threshold: float | None
1716
- :param add_boundary_loop: Add Boundary Loop, Add an extra edge loop to better preserve the shape when applying a subdivision surface modifier
1717
- :type add_boundary_loop: bool | None
1718
- :param smooth_iterations: Smooth Iterations, Smooth iterations applied to the extracted mesh
1719
- :type smooth_iterations: int | None
1720
- :param apply_shrinkwrap: Project to Sculpt, Project the extracted mesh into the original sculpt
1721
- :type apply_shrinkwrap: bool | None
1722
- :param add_solidify: Extract as Solid, Extract the mask as a solid object with a solidify modifier
1723
- :type add_solidify: bool | None
1724
- """
1725
-
1726
- def paint_mask_slice(
1727
- execution_context: int | str | None = None,
1728
- undo: bool | None = None,
1729
- /,
1730
- *,
1731
- mask_threshold: float | None = 0.5,
1732
- fill_holes: bool | None = True,
1733
- new_object: bool | None = True,
1734
- ):
1735
- """Slices the paint mask from the mesh
1736
-
1737
- :type execution_context: int | str | None
1738
- :type undo: bool | None
1739
- :param mask_threshold: Threshold, Minimum mask value to consider the vertex valid to extract a face from the original mesh
1740
- :type mask_threshold: float | None
1741
- :param fill_holes: Fill Holes, Fill holes after slicing the mask
1742
- :type fill_holes: bool | None
1743
- :param new_object: Slice to New Object, Create a new object from the sliced mask
1744
- :type new_object: bool | None
1745
- """
1746
-
1747
1675
  def point_normals(
1748
1676
  execution_context: int | str | None = None,
1749
1677
  undo: bool | None = None,
bpy/ops/node/__init__.pyi CHANGED
@@ -5,6 +5,7 @@ import numpy.typing as npt
5
5
  import bl_operators.node
6
6
  import bpy._typing.rna_enums
7
7
  import bpy.ops.transform
8
+ import bpy.ops.wm
8
9
  import bpy.types
9
10
 
10
11
  def activate_viewer(
@@ -77,6 +78,25 @@ def add_color(
77
78
  :type has_alpha: bool | None
78
79
  """
79
80
 
81
+ def add_empty_group(
82
+ execution_context: int | str | None = None,
83
+ undo: bool | None = None,
84
+ /,
85
+ *,
86
+ use_transform: bool | None = False,
87
+ settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
88
+ | None = None,
89
+ ):
90
+ """Add a group node with an empty group
91
+
92
+ :type execution_context: int | str | None
93
+ :type undo: bool | None
94
+ :param use_transform: Use Transform, Start transform operator after inserting the node
95
+ :type use_transform: bool | None
96
+ :param settings: Settings, Settings to be applied on the newly created node
97
+ :type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] | None
98
+ """
99
+
80
100
  def add_foreach_geometry_element_zone(
81
101
  execution_context: int | str | None = None,
82
102
  undo: bool | None = None,
@@ -141,6 +161,24 @@ def add_group_asset(
141
161
  :type relative_asset_identifier: str
142
162
  """
143
163
 
164
+ def add_group_input_node(
165
+ execution_context: int | str | None = None,
166
+ undo: bool | None = None,
167
+ /,
168
+ *,
169
+ socket_identifier: str = "",
170
+ panel_identifier: int | None = 0,
171
+ ):
172
+ """Add a Group Input node with selected sockets to the current node editor
173
+
174
+ :type execution_context: int | str | None
175
+ :type undo: bool | None
176
+ :param socket_identifier: Socket Identifier, Socket to include in the added group input/output node
177
+ :type socket_identifier: str
178
+ :param panel_identifier: Panel Identifier, Panel from which to add sockets to the added group input/output node
179
+ :type panel_identifier: int | None
180
+ """
181
+
144
182
  def add_image(
145
183
  execution_context: int | str | None = None,
146
184
  undo: bool | None = None,
@@ -1239,6 +1277,24 @@ def join(execution_context: int | str | None = None, undo: bool | None = None):
1239
1277
  :type undo: bool | None
1240
1278
  """
1241
1279
 
1280
+ def join_named(
1281
+ execution_context: int | str | None = None,
1282
+ undo: bool | None = None,
1283
+ /,
1284
+ *,
1285
+ NODE_OT_join: join | None = None,
1286
+ WM_OT_call_panel: bpy.ops.wm.call_panel | None = None,
1287
+ ):
1288
+ """Create a new frame node around the selected nodes and name it immediately
1289
+
1290
+ :type execution_context: int | str | None
1291
+ :type undo: bool | None
1292
+ :param NODE_OT_join: Join Nodes, Attach selected nodes to a new common frame
1293
+ :type NODE_OT_join: join | None
1294
+ :param WM_OT_call_panel: Call Panel, Open a predefined panel
1295
+ :type WM_OT_call_panel: bpy.ops.wm.call_panel | None
1296
+ """
1297
+
1242
1298
  def link(
1243
1299
  execution_context: int | str | None = None,
1244
1300
  undo: bool | None = None,
@@ -2442,6 +2442,15 @@ def material_slot_remove(
2442
2442
  :type undo: bool | None
2443
2443
  """
2444
2444
 
2445
+ def material_slot_remove_all(
2446
+ execution_context: int | str | None = None, undo: bool | None = None
2447
+ ):
2448
+ """Remove all materials
2449
+
2450
+ :type execution_context: int | str | None
2451
+ :type undo: bool | None
2452
+ """
2453
+
2445
2454
  def material_slot_remove_unused(
2446
2455
  execution_context: int | str | None = None, undo: bool | None = None
2447
2456
  ):
@@ -3267,7 +3276,7 @@ def paths_update_visible(
3267
3276
  :type undo: bool | None
3268
3277
  """
3269
3278
 
3270
- def pointcloud_add(
3279
+ def pointcloud_random_add(
3271
3280
  execution_context: int | str | None = None,
3272
3281
  undo: bool | None = None,
3273
3282
  /,
@@ -3992,7 +4001,7 @@ def shape_key_clear(
3992
4001
  def shape_key_copy(
3993
4002
  execution_context: int | str | None = None, undo: bool | None = None
3994
4003
  ):
3995
- """Duplicate the acive shape key
4004
+ """Duplicate the active shape key
3996
4005
 
3997
4006
  :type execution_context: int | str | None
3998
4007
  :type undo: bool | None
@@ -381,6 +381,30 @@ def face_set_edit(
381
381
  :type modify_hidden: bool | None
382
382
  """
383
383
 
384
+ def face_set_extract(
385
+ execution_context: int | str | None = None,
386
+ undo: bool | None = None,
387
+ /,
388
+ *,
389
+ add_boundary_loop: bool | None = True,
390
+ smooth_iterations: int | None = 4,
391
+ apply_shrinkwrap: bool | None = True,
392
+ add_solidify: bool | None = True,
393
+ ):
394
+ """Create a new mesh object from the selected Face Set
395
+
396
+ :type execution_context: int | str | None
397
+ :type undo: bool | None
398
+ :param add_boundary_loop: Add Boundary Loop, Add an extra edge loop to better preserve the shape when applying a subdivision surface modifier
399
+ :type add_boundary_loop: bool | None
400
+ :param smooth_iterations: Smooth Iterations, Smooth iterations applied to the extracted mesh
401
+ :type smooth_iterations: int | None
402
+ :param apply_shrinkwrap: Project to Sculpt, Project the extracted mesh into the original sculpt
403
+ :type apply_shrinkwrap: bool | None
404
+ :param add_solidify: Extract as Solid, Extract the mask as a solid object with a solidify modifier
405
+ :type add_solidify: bool | None
406
+ """
407
+
384
408
  def face_set_lasso_gesture(
385
409
  execution_context: int | str | None = None,
386
410
  undo: bool | None = None,
@@ -827,6 +851,54 @@ def optimize(execution_context: int | str | None = None, undo: bool | None = Non
827
851
  :type undo: bool | None
828
852
  """
829
853
 
854
+ def paint_mask_extract(
855
+ execution_context: int | str | None = None,
856
+ undo: bool | None = None,
857
+ /,
858
+ *,
859
+ mask_threshold: float | None = 0.5,
860
+ add_boundary_loop: bool | None = True,
861
+ smooth_iterations: int | None = 4,
862
+ apply_shrinkwrap: bool | None = True,
863
+ add_solidify: bool | None = True,
864
+ ):
865
+ """Create a new mesh object from the current paint mask
866
+
867
+ :type execution_context: int | str | None
868
+ :type undo: bool | None
869
+ :param mask_threshold: Threshold, Minimum mask value to consider the vertex valid to extract a face from the original mesh
870
+ :type mask_threshold: float | None
871
+ :param add_boundary_loop: Add Boundary Loop, Add an extra edge loop to better preserve the shape when applying a subdivision surface modifier
872
+ :type add_boundary_loop: bool | None
873
+ :param smooth_iterations: Smooth Iterations, Smooth iterations applied to the extracted mesh
874
+ :type smooth_iterations: int | None
875
+ :param apply_shrinkwrap: Project to Sculpt, Project the extracted mesh into the original sculpt
876
+ :type apply_shrinkwrap: bool | None
877
+ :param add_solidify: Extract as Solid, Extract the mask as a solid object with a solidify modifier
878
+ :type add_solidify: bool | None
879
+ """
880
+
881
+ def paint_mask_slice(
882
+ execution_context: int | str | None = None,
883
+ undo: bool | None = None,
884
+ /,
885
+ *,
886
+ mask_threshold: float | None = 0.5,
887
+ fill_holes: bool | None = True,
888
+ new_object: bool | None = True,
889
+ ):
890
+ """Slices the paint mask from the mesh
891
+
892
+ :type execution_context: int | str | None
893
+ :type undo: bool | None
894
+ :param mask_threshold: Threshold, Minimum mask value to consider the vertex valid to extract a face from the original mesh
895
+ :type mask_threshold: float | None
896
+ :param fill_holes: Fill Holes, Fill holes after slicing the mask
897
+ :type fill_holes: bool | None
898
+ :param new_object: Slice to New Object, Create a new object from the sliced mask
899
+ :type new_object: bool | None
900
+ """
901
+
830
902
  def project_line_gesture(
831
903
  execution_context: int | str | None = None,
832
904
  undo: bool | None = None,
@@ -2255,7 +2255,7 @@ def text_edit_mode_toggle(
2255
2255
  def text_edit_paste(
2256
2256
  execution_context: int | str | None = None, undo: bool | None = None
2257
2257
  ):
2258
- """Paste text to clipboard
2258
+ """Paste text from clipboard
2259
2259
 
2260
2260
  :type execution_context: int | str | None
2261
2261
  :type undo: bool | None
@@ -30,6 +30,13 @@ def change_spreadsheet_data_source(
30
30
  :type attribute_domain_type: int | None
31
31
  """
32
32
 
33
+ def fit_column(execution_context: int | str | None = None, undo: bool | None = None):
34
+ """Resize a spreadsheet column to the width of the data
35
+
36
+ :type execution_context: int | str | None
37
+ :type undo: bool | None
38
+ """
39
+
33
40
  def remove_row_filter_rule(
34
41
  execution_context: int | str | None = None,
35
42
  undo: bool | None = None,
@@ -45,6 +52,13 @@ def remove_row_filter_rule(
45
52
  :type index: int | None
46
53
  """
47
54
 
55
+ def resize_column(execution_context: int | str | None = None, undo: bool | None = None):
56
+ """Resize a spreadsheet column
57
+
58
+ :type execution_context: int | str | None
59
+ :type undo: bool | None
60
+ """
61
+
48
62
  def toggle_pin(execution_context: int | str | None = None, undo: bool | None = None):
49
63
  """Turn on or off pinning
50
64