fake-bpy-module 20250903__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
  """
bpy/app/__init__.pyi CHANGED
@@ -38,6 +38,13 @@ def is_job_running(job_type: bpy.stub_internal.rna_enums.WmJobTypeItems) -> bool
38
38
  :rtype: bool
39
39
  """
40
40
 
41
+ def undo_memory_info() -> int:
42
+ """Get undo memory usage information.
43
+
44
+ :return: total_memory.
45
+ :rtype: int
46
+ """
47
+
41
48
  alembic: typing.Any
42
49
  """ Constant value bpy.app.alembic(supported=True, version=(1, 8, 3), version_string= 1, 8, 3)
43
50
  """
@@ -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(
@@ -1682,6 +1682,45 @@ def select_box(
1682
1682
  :type ignore_connections: bool | None
1683
1683
  """
1684
1684
 
1685
+ def select_circle(
1686
+ execution_context: int | str | None = None,
1687
+ undo: bool | None = None,
1688
+ /,
1689
+ *,
1690
+ x: int | None = 0,
1691
+ y: int | None = 0,
1692
+ radius: int | None = 25,
1693
+ wait_for_input: bool | None = True,
1694
+ mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
1695
+ ignore_connections: bool | None = False,
1696
+ ) -> None:
1697
+ """Select strips using circle selection
1698
+
1699
+ :type execution_context: int | str | None
1700
+ :type undo: bool | None
1701
+ :param x: X
1702
+ :type x: int | None
1703
+ :param y: Y
1704
+ :type y: int | None
1705
+ :param radius: Radius
1706
+ :type radius: int | None
1707
+ :param wait_for_input: Wait for Input
1708
+ :type wait_for_input: bool | None
1709
+ :param mode: Mode
1710
+
1711
+ SET
1712
+ Set -- Set a new selection.
1713
+
1714
+ ADD
1715
+ Extend -- Extend existing selection.
1716
+
1717
+ SUB
1718
+ Subtract -- Subtract existing selection.
1719
+ :type mode: typing.Literal['SET','ADD','SUB'] | None
1720
+ :param ignore_connections: Ignore Connections, Select strips individually whether or not they are connected
1721
+ :type ignore_connections: bool | None
1722
+ """
1723
+
1685
1724
  def select_grouped(
1686
1725
  execution_context: int | str | None = None,
1687
1726
  undo: bool | None = None,
@@ -2232,6 +2271,24 @@ def strip_modifier_move(
2232
2271
  :type direction: typing.Literal['UP','DOWN'] | None
2233
2272
  """
2234
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
+
2235
2292
  def strip_modifier_remove(
2236
2293
  execution_context: int | str | None = None,
2237
2294
  undo: bool | None = None,
@@ -2247,6 +2304,21 @@ def strip_modifier_remove(
2247
2304
  :type name: str
2248
2305
  """
2249
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
+
2250
2322
  def strip_transform_clear(
2251
2323
  execution_context: int | str | None = None,
2252
2324
  undo: bool | None = None,
bpy/ops/uv/__init__.pyi CHANGED
@@ -995,14 +995,44 @@ def select_similar(
995
995
  ) -> None:
996
996
  """Select similar UVs by property types
997
997
 
998
- :type execution_context: int | str | None
999
- :type undo: bool | None
1000
- :param type: Type
1001
- :type type: typing.Literal['PIN','LENGTH','LENGTH_3D','AREA','AREA_3D','MATERIAL','OBJECT','SIDES','WINDING','FACE'] | None
1002
- :param compare: Compare
1003
- :type compare: typing.Literal['EQUAL','GREATER','LESS'] | None
1004
- :param threshold: Threshold
1005
- :type threshold: float | None
998
+ :type execution_context: int | str | None
999
+ :type undo: bool | None
1000
+ :param type: Type
1001
+
1002
+ PIN
1003
+ Pinned.
1004
+
1005
+ LENGTH
1006
+ Length -- Edge length in UV space.
1007
+
1008
+ LENGTH_3D
1009
+ Length 3D -- Length of edge in 3D space.
1010
+
1011
+ AREA
1012
+ Area -- Face area in UV space.
1013
+
1014
+ AREA_3D
1015
+ Area 3D -- Area of face in 3D space.
1016
+
1017
+ MATERIAL
1018
+ Material.
1019
+
1020
+ OBJECT
1021
+ Object.
1022
+
1023
+ SIDES
1024
+ Polygon Sides.
1025
+
1026
+ WINDING
1027
+ Winding -- Face direction defined by (clockwise or anti-clockwise winding (facing up or facing down).
1028
+
1029
+ FACE
1030
+ Amount of Faces in Island.
1031
+ :type type: typing.Literal['PIN','LENGTH','LENGTH_3D','AREA','AREA_3D','MATERIAL','OBJECT','SIDES','WINDING','FACE'] | None
1032
+ :param compare: Compare
1033
+ :type compare: typing.Literal['EQUAL','GREATER','LESS'] | None
1034
+ :param threshold: Threshold
1035
+ :type threshold: float | None
1006
1036
  """
1007
1037
 
1008
1038
  def select_split(
bpy/props/__init__.pyi CHANGED
@@ -69,18 +69,71 @@ of the operator, only its other properties.
69
69
 
70
70
  --------------------
71
71
 
72
- Getter/setter functions can be used for boolean, int, float, string and enum properties.
73
- If these callbacks are defined the property will not be stored in the ID properties
72
+ Accessor functions can be used for boolean, int, float, string and enum properties.
73
+
74
+ If get
75
+
76
+ or set
77
+
78
+ callbacks are defined, the property will not be stored in the ID properties
74
79
  automatically. Instead, the get
75
80
 
76
81
  and set
77
82
 
78
83
  functions will be called when the property
79
- is respectively read or written from the API.
84
+ is respectively read or written from the API, and are responsible to handle the data storage.
85
+
86
+ Note that:
87
+
88
+ * It is illegal to define a set
89
+
90
+ callback without a matching get
91
+
92
+ one.
93
+ * When a get
94
+
95
+ callback is defined but no set
96
+
97
+ one, the property is read-only.
98
+
99
+ get_transform
100
+
101
+ and set_transform
102
+
103
+ can be used when the returned value needs to be modified,
104
+ but the default internal storage is still used. They can only transform the value before it is
105
+ set or returned, but do not control how/where that data is stored.
106
+
107
+ [NOTE]
108
+ It is possible to define both get
109
+
110
+ /set
111
+
112
+ and get_transform
113
+
114
+ /set_transform
115
+
116
+ callbacks
117
+ for a same property. In practice however, this should rarely be needed, as most 'transform'
118
+ operation can also happen within a get
119
+
120
+ /set
121
+
122
+ callback.
80
123
 
81
124
  [WARNING]
82
125
  Remember that these callbacks may be executed in threaded context.
83
126
 
127
+ [WARNING]
128
+ Take care when accessing other properties in these callbacks, as it can easily trigger
129
+ complex issues, such as infinite loops (if e.g. two properties try to also set the other
130
+ property's value in their own set
131
+
132
+ callback), or unexpected side effects due to changes
133
+ in data, caused e.g. by an update
134
+
135
+ callback.
136
+
84
137
  ```../examples/bpy.props.5.py```
85
138
 
86
139
  [NOTE]