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

@@ -66,6 +66,37 @@ def convert_to_particle_system(
66
66
 
67
67
  ...
68
68
 
69
+ def curve_type_set(
70
+ override_context: typing.Union[dict, bpy.types.Context] = None,
71
+ execution_context: str = None,
72
+ undo: bool = None,
73
+ type: typing.Union[str, int] = "POLY",
74
+ ):
75
+ """Set type of selected curves
76
+
77
+ :type override_context: typing.Union[dict, bpy.types.Context]
78
+ :type execution_context: str
79
+ :type undo: bool
80
+ :param type: Type, Curve type
81
+ :type type: typing.Union[str, int]
82
+ """
83
+
84
+ ...
85
+
86
+ def cyclic_toggle(
87
+ override_context: typing.Union[dict, bpy.types.Context] = None,
88
+ execution_context: str = None,
89
+ undo: bool = None,
90
+ ):
91
+ """Make active curve closed/opened loop
92
+
93
+ :type override_context: typing.Union[dict, bpy.types.Context]
94
+ :type execution_context: str
95
+ :type undo: bool
96
+ """
97
+
98
+ ...
99
+
69
100
  def delete(
70
101
  override_context: typing.Union[dict, bpy.types.Context] = None,
71
102
  execution_context: str = None,
@@ -351,6 +382,23 @@ def snap_curves_to_surface(
351
382
 
352
383
  ...
353
384
 
385
+ def subdivide(
386
+ override_context: typing.Union[dict, bpy.types.Context] = None,
387
+ execution_context: str = None,
388
+ undo: bool = None,
389
+ number_cuts: typing.Any = 1,
390
+ ):
391
+ """Subdivide selected curve segments
392
+
393
+ :type override_context: typing.Union[dict, bpy.types.Context]
394
+ :type execution_context: str
395
+ :type undo: bool
396
+ :param number_cuts: Number of Cuts
397
+ :type number_cuts: typing.Any
398
+ """
399
+
400
+ ...
401
+
354
402
  def surface_set(
355
403
  override_context: typing.Union[dict, bpy.types.Context] = None,
356
404
  execution_context: str = None,
@@ -365,6 +413,20 @@ def surface_set(
365
413
 
366
414
  ...
367
415
 
416
+ def switch_direction(
417
+ override_context: typing.Union[dict, bpy.types.Context] = None,
418
+ execution_context: str = None,
419
+ undo: bool = None,
420
+ ):
421
+ """Reverse the direction of the selected curves
422
+
423
+ :type override_context: typing.Union[dict, bpy.types.Context]
424
+ :type execution_context: str
425
+ :type undo: bool
426
+ """
427
+
428
+ ...
429
+
368
430
  def tilt_clear(
369
431
  override_context: typing.Union[dict, bpy.types.Context] = None,
370
432
  execution_context: str = None,
@@ -20,11 +20,11 @@ def fbx(
20
20
  bake_space_transform: typing.Union[bool, typing.Any] = False,
21
21
  object_types: typing.Any = {
22
22
  '"CAMERA"',
23
- '"EMPTY"',
24
- '"OTHER"',
25
23
  '"ARMATURE"',
26
- '"LIGHT"',
24
+ '"EMPTY"',
27
25
  '"MESH"',
26
+ '"LIGHT"',
27
+ '"OTHER"',
28
28
  },
29
29
  use_mesh_modifiers: typing.Union[bool, typing.Any] = True,
30
30
  use_mesh_modifiers_render: typing.Union[bool, typing.Any] = True,
bpy/ops/nla/__init__.pyi CHANGED
@@ -101,10 +101,10 @@ def bake(
101
101
  bake_types: typing.Any = {'"POSE"'},
102
102
  channel_types: typing.Any = {
103
103
  '"LOCATION"',
104
- '"ROTATION"',
105
- '"PROPS"',
106
104
  '"SCALE"',
105
+ '"ROTATION"',
107
106
  '"BBONE"',
107
+ '"PROPS"',
108
108
  },
109
109
  ):
110
110
  """Bake all selected objects location/scale/rotation animation to an action
@@ -350,7 +350,7 @@ def make_single_user(
350
350
  undo: bool = None,
351
351
  confirm: typing.Union[bool, typing.Any] = True,
352
352
  ):
353
- """Ensure that each action is only used once in the set of strips selected
353
+ """Make linked action local to each strip
354
354
 
355
355
  :type override_context: typing.Union[dict, bpy.types.Context]
356
356
  :type execution_context: str
@@ -47,7 +47,7 @@ def cloth_filter(
47
47
  bpy.types.OperatorStrokeElement
48
48
  ] = None,
49
49
  type: typing.Any = "GRAVITY",
50
- force_axis: typing.Any = {'"Y"', '"X"', '"Z"'},
50
+ force_axis: typing.Any = {'"X"', '"Z"', '"Y"'},
51
51
  orientation: typing.Any = "LOCAL",
52
52
  cloth_mass: typing.Any = 1.0,
53
53
  cloth_damping: typing.Any = 0.0,
@@ -599,7 +599,7 @@ def mesh_filter(
599
599
  bpy.types.OperatorStrokeElement
600
600
  ] = None,
601
601
  type: typing.Any = "INFLATE",
602
- deform_axis: typing.Any = {'"Y"', '"X"', '"Z"'},
602
+ deform_axis: typing.Any = {'"X"', '"Z"', '"Y"'},
603
603
  orientation: typing.Any = "LOCAL",
604
604
  surface_smooth_shape_preservation: typing.Any = 0.5,
605
605
  surface_smooth_current_vertex: typing.Any = 0.5,