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

bmesh/types/__init__.pyi CHANGED
@@ -105,7 +105,7 @@ class BMEdge:
105
105
  """
106
106
 
107
107
  is_valid: bool
108
- """ True when this element is valid (hasnt been removed).
108
+ """ True when this element is valid (hasn't been removed).
109
109
 
110
110
  :type: bool
111
111
  """
@@ -451,7 +451,7 @@ class BMFace:
451
451
  """
452
452
 
453
453
  is_valid: bool
454
- """ True when this element is valid (hasnt been removed).
454
+ """ True when this element is valid (hasn't been removed).
455
455
 
456
456
  :type: bool
457
457
  """
@@ -463,7 +463,7 @@ class BMFace:
463
463
  """
464
464
 
465
465
  material_index: int
466
- """ The faces material index.
466
+ """ The face's material index.
467
467
 
468
468
  :type: int
469
469
  """
@@ -1061,7 +1061,7 @@ class BMLoop:
1061
1061
  """This is normally accessed from `BMFace.loops` where each face loop represents a corner of the face."""
1062
1062
 
1063
1063
  edge: BMEdge
1064
- """ The loops edge (between this loop and the next), (read-only).
1064
+ """ The loop's edge (between this loop and the next), (read-only).
1065
1065
 
1066
1066
  :type: BMEdge
1067
1067
  """
@@ -1085,7 +1085,7 @@ class BMLoop:
1085
1085
  """
1086
1086
 
1087
1087
  is_valid: bool
1088
- """ True when this element is valid (hasnt been removed).
1088
+ """ True when this element is valid (hasn't been removed).
1089
1089
 
1090
1090
  :type: bool
1091
1091
  """
@@ -1127,7 +1127,7 @@ class BMLoop:
1127
1127
  """
1128
1128
 
1129
1129
  vert: BMVert
1130
- """ The loops vertex (read-only).
1130
+ """ The loop's vertex (read-only).
1131
1131
 
1132
1132
  :type: BMVert
1133
1133
  """
@@ -1305,7 +1305,7 @@ class BMVert:
1305
1305
  """
1306
1306
 
1307
1307
  is_valid: bool
1308
- """ True when this element is valid (hasnt been removed).
1308
+ """ True when this element is valid (hasn't been removed).
1309
1309
 
1310
1310
  :type: bool
1311
1311
  """
@@ -1549,7 +1549,7 @@ class BMesh:
1549
1549
  """
1550
1550
 
1551
1551
  is_valid: bool
1552
- """ True when this element is valid (hasnt been removed).
1552
+ """ True when this element is valid (hasn't been removed).
1553
1553
 
1554
1554
  :type: bool
1555
1555
  """
@@ -1573,7 +1573,7 @@ class BMesh:
1573
1573
  """
1574
1574
 
1575
1575
  select_mode: set
1576
- """ The selection mode, values can be {VERT, EDGE, FACE}, cannot be assigned an empty set.
1576
+ """ The selection mode, values can be {'VERT', 'EDGE', 'FACE'}, cannot be assigned an empty set.
1577
1577
 
1578
1578
  :type: set
1579
1579
  """
@@ -737,6 +737,7 @@ def symmetrize(
737
737
  /,
738
738
  *,
739
739
  direction: typing.Literal["NEGATIVE_X", "POSITIVE_X"] | None = "NEGATIVE_X",
740
+ copy_bone_colors: bool | None = False,
740
741
  ) -> None:
741
742
  """Enforce symmetry, make copies of the selection or use existing
742
743
 
@@ -744,4 +745,6 @@ def symmetrize(
744
745
  :type undo: bool | None
745
746
  :param direction: Direction, Which sides to copy from and to (when both are selected)
746
747
  :type direction: typing.Literal['NEGATIVE_X','POSITIVE_X'] | None
748
+ :param copy_bone_colors: Bone Colors, Copy colors to existing bones
749
+ :type copy_bone_colors: bool | None
747
750
  """
@@ -142,7 +142,6 @@ def create_pose_asset(
142
142
  pose_name: str = "",
143
143
  asset_library_reference: str | None = "",
144
144
  catalog_path: str = "",
145
- activate_new_action: bool | None = False,
146
145
  ) -> None:
147
146
  """Create a new asset from the selected bones in the scene
148
147
 
@@ -154,8 +153,6 @@ def create_pose_asset(
154
153
  :type asset_library_reference: str | None
155
154
  :param catalog_path: Catalog, Catalog to use for the new asset
156
155
  :type catalog_path: str
157
- :param activate_new_action: Activate New Action, This property is deprecated and will be removed in the future
158
- :type activate_new_action: bool | None
159
156
  """
160
157
 
161
158
  def paste_asset(
@@ -2271,6 +2271,24 @@ def strip_modifier_move(
2271
2271
  :type direction: typing.Literal['UP','DOWN'] | None
2272
2272
  """
2273
2273
 
2274
+ def strip_modifier_move_to_index(
2275
+ execution_context: int | str | None = None,
2276
+ undo: bool | None = None,
2277
+ /,
2278
+ *,
2279
+ modifier: str = "",
2280
+ index: int | None = 0,
2281
+ ) -> None:
2282
+ """Change the strip modifiers index in the stack so it evaluates after the set number of others
2283
+
2284
+ :type execution_context: int | str | None
2285
+ :type undo: bool | None
2286
+ :param modifier: Modifier, Name of the modifier to edit
2287
+ :type modifier: str
2288
+ :param index: Index, The index to move the modifier to
2289
+ :type index: int | None
2290
+ """
2291
+
2274
2292
  def strip_modifier_remove(
2275
2293
  execution_context: int | str | None = None,
2276
2294
  undo: bool | None = None,
@@ -2286,6 +2304,21 @@ def strip_modifier_remove(
2286
2304
  :type name: str
2287
2305
  """
2288
2306
 
2307
+ def strip_modifier_set_active(
2308
+ execution_context: int | str | None = None,
2309
+ undo: bool | None = None,
2310
+ /,
2311
+ *,
2312
+ modifier: str = "",
2313
+ ) -> None:
2314
+ """Activate the strip modifier to use as the context
2315
+
2316
+ :type execution_context: int | str | None
2317
+ :type undo: bool | None
2318
+ :param modifier: Modifier, Name of the strip modifier to edit
2319
+ :type modifier: str
2320
+ """
2321
+
2289
2322
  def strip_transform_clear(
2290
2323
  execution_context: int | str | None = None,
2291
2324
  undo: bool | None = None,