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

@@ -20,12 +20,12 @@ def fbx(
20
20
  use_space_transform: typing.Union[bool, typing.Any] = True,
21
21
  bake_space_transform: typing.Union[bool, typing.Any] = False,
22
22
  object_types: typing.Any = {
23
- '"EMPTY"',
24
- '"OTHER"',
25
- '"ARMATURE"',
23
+ '"MESH"',
26
24
  '"CAMERA"',
25
+ '"OTHER"',
27
26
  '"LIGHT"',
28
- '"MESH"',
27
+ '"ARMATURE"',
28
+ '"EMPTY"',
29
29
  },
30
30
  use_mesh_modifiers: typing.Union[bool, typing.Any] = True,
31
31
  use_mesh_modifiers_render: typing.Union[bool, typing.Any] = True,
@@ -295,6 +295,7 @@ def gltf(
295
295
  use_active_collection_with_nested: typing.Union[bool, typing.Any] = True,
296
296
  use_active_collection: typing.Union[bool, typing.Any] = False,
297
297
  use_active_scene: typing.Union[bool, typing.Any] = False,
298
+ collection: typing.Union[str, typing.Any] = "",
298
299
  export_extras: typing.Union[bool, typing.Any] = False,
299
300
  export_yup: typing.Union[bool, typing.Any] = True,
300
301
  export_apply: typing.Union[bool, typing.Any] = False,
@@ -502,6 +503,8 @@ def gltf(
502
503
  :type use_active_collection: typing.Union[bool, typing.Any]
503
504
  :param use_active_scene: Active Scene, Export active scene only
504
505
  :type use_active_scene: typing.Union[bool, typing.Any]
506
+ :param collection: Source Collection, Export only objects from this collection (and its children)
507
+ :type collection: typing.Union[str, typing.Any]
505
508
  :param export_extras: Custom Properties, Export custom properties as glTF extras
506
509
  :type export_extras: typing.Union[bool, typing.Any]
507
510
  :param export_yup: +Y Up, Export using glTF convention, +Y up
bpy/ops/nla/__init__.pyi CHANGED
@@ -100,10 +100,10 @@ def bake(
100
100
  clean_curves: typing.Union[bool, typing.Any] = False,
101
101
  bake_types: typing.Any = {'"POSE"'},
102
102
  channel_types: typing.Any = {
103
+ '"BBONE"',
103
104
  '"PROPS"',
104
- '"ROTATION"',
105
105
  '"LOCATION"',
106
- '"BBONE"',
106
+ '"ROTATION"',
107
107
  '"SCALE"',
108
108
  },
109
109
  ):
@@ -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 = {'"Z"', '"X"', '"Y"'},
50
+ force_axis: typing.Any = {'"Z"', '"Y"', '"X"'},
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 = {'"Z"', '"X"', '"Y"'},
602
+ deform_axis: typing.Any = {'"Z"', '"Y"', '"X"'},
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,