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

@@ -267,6 +267,25 @@ def extrude_move(
267
267
 
268
268
  ...
269
269
 
270
+ def fill(
271
+ override_context: typing.Optional[
272
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
273
+ ] = None,
274
+ execution_context: typing.Optional[typing.Union[str, int]] = None,
275
+ undo: typing.Optional[bool] = None,
276
+ on_back: typing.Optional[typing.Union[bool, typing.Any]] = False,
277
+ ):
278
+ """Fill with color the shape formed by strokes
279
+
280
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
281
+ :type execution_context: typing.Optional[typing.Union[str, int]]
282
+ :type undo: typing.Optional[bool]
283
+ :param on_back: Draw on Back, Send new stroke to back
284
+ :type on_back: typing.Optional[typing.Union[bool, typing.Any]]
285
+ """
286
+
287
+ ...
288
+
270
289
  def insert_blank_frame(
271
290
  override_context: typing.Optional[
272
291
  typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
@@ -1273,6 +1292,28 @@ def stroke_material_set(
1273
1292
 
1274
1293
  ...
1275
1294
 
1295
+ def stroke_merge_by_distance(
1296
+ override_context: typing.Optional[
1297
+ typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
1298
+ ] = None,
1299
+ execution_context: typing.Optional[typing.Union[str, int]] = None,
1300
+ undo: typing.Optional[bool] = None,
1301
+ threshold: typing.Optional[typing.Any] = 0.001,
1302
+ use_unselected: typing.Optional[typing.Union[bool, typing.Any]] = False,
1303
+ ):
1304
+ """Merge points by distance
1305
+
1306
+ :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
1307
+ :type execution_context: typing.Optional[typing.Union[str, int]]
1308
+ :type undo: typing.Optional[bool]
1309
+ :param threshold: Threshold
1310
+ :type threshold: typing.Optional[typing.Any]
1311
+ :param use_unselected: Unselected, Use whole stroke, not only selected points
1312
+ :type use_unselected: typing.Optional[typing.Union[bool, typing.Any]]
1313
+ """
1314
+
1315
+ ...
1316
+
1276
1317
  def stroke_simplify(
1277
1318
  override_context: typing.Optional[
1278
1319
  typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
@@ -184,31 +184,3 @@ def gltf(
184
184
  """
185
185
 
186
186
  ...
187
-
188
- def x3d(
189
- override_context: typing.Optional[
190
- typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
191
- ] = None,
192
- execution_context: typing.Optional[typing.Union[str, int]] = None,
193
- undo: typing.Optional[bool] = None,
194
- filepath: typing.Union[str, typing.Any] = "",
195
- filter_glob: typing.Union[str, typing.Any] = "*.x3d;*.wrl",
196
- axis_forward: typing.Optional[typing.Any] = "Z",
197
- axis_up: typing.Optional[typing.Any] = "Y",
198
- ):
199
- """Import an X3D or VRML2 file
200
-
201
- :type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
202
- :type execution_context: typing.Optional[typing.Union[str, int]]
203
- :type undo: typing.Optional[bool]
204
- :param filepath: File Path, Filepath used for importing the file
205
- :type filepath: typing.Union[str, typing.Any]
206
- :param filter_glob: filter_glob
207
- :type filter_glob: typing.Union[str, typing.Any]
208
- :param axis_forward: Forward
209
- :type axis_forward: typing.Optional[typing.Any]
210
- :param axis_up: Up
211
- :type axis_up: typing.Optional[typing.Any]
212
- """
213
-
214
- ...
bpy/ops/nla/__init__.pyi CHANGED
@@ -114,10 +114,10 @@ def bake(
114
114
  bake_types: typing.Optional[typing.Any] = {'"POSE"'},
115
115
  channel_types: typing.Optional[typing.Any] = {
116
116
  '"PROPS"',
117
- '"ROTATION"',
117
+ '"SCALE"',
118
118
  '"BBONE"',
119
+ '"ROTATION"',
119
120
  '"LOCATION"',
120
- '"SCALE"',
121
121
  },
122
122
  ):
123
123
  """Bake all selected objects location/scale/rotation animation to an action
@@ -53,7 +53,7 @@ def cloth_filter(
53
53
  bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
54
54
  ] = None,
55
55
  type: typing.Optional[typing.Any] = "GRAVITY",
56
- force_axis: typing.Optional[typing.Any] = {'"X"', '"Y"', '"Z"'},
56
+ force_axis: typing.Optional[typing.Any] = {'"Z"', '"X"', '"Y"'},
57
57
  orientation: typing.Optional[typing.Any] = "LOCAL",
58
58
  cloth_mass: typing.Optional[typing.Any] = 1.0,
59
59
  cloth_damping: typing.Optional[typing.Any] = 0.0,
@@ -641,7 +641,7 @@ def mesh_filter(
641
641
  bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
642
642
  ] = None,
643
643
  type: typing.Optional[typing.Any] = "INFLATE",
644
- deform_axis: typing.Optional[typing.Any] = {'"X"', '"Y"', '"Z"'},
644
+ deform_axis: typing.Optional[typing.Any] = {'"Z"', '"X"', '"Y"'},
645
645
  orientation: typing.Optional[typing.Any] = "LOCAL",
646
646
  surface_smooth_shape_preservation: typing.Optional[typing.Any] = 0.5,
647
647
  surface_smooth_current_vertex: typing.Optional[typing.Any] = 0.5,