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

@@ -129,6 +129,8 @@ def gltf(
129
129
  merge_vertices: bool | typing.Any | None = False,
130
130
  import_shading: str | None = "NORMALS",
131
131
  bone_heuristic: str | None = "BLENDER",
132
+ disable_bone_shape: bool | typing.Any | None = False,
133
+ bone_shape_scale_factor: typing.Any | None = 1.0,
132
134
  guess_original_bind_pose: bool | typing.Any | None = True,
133
135
  import_webp_texture: bool | typing.Any | None = False,
134
136
  ):
@@ -173,6 +175,10 @@ def gltf(
173
175
  FORTUNE
174
176
  Fortune (may look better, less accurate) -- Might look better than Temperance, but also might have errors. A bone with one child has its tip placed at its child's root. Non-uniform scalings may get messed up though, so beware.
175
177
  :type bone_heuristic: str | None
178
+ :param disable_bone_shape: Disable Bone Shape, Do not create bone shapes
179
+ :type disable_bone_shape: bool | typing.Any | None
180
+ :param bone_shape_scale_factor: Bone Shape Scale, Scale factor for bone shapes
181
+ :type bone_shape_scale_factor: typing.Any | None
176
182
  :param guess_original_bind_pose: Guess Original Bind Pose, Try to guess the original bind pose for skinned meshes from the inverse bind matrices. When off, use default/rest pose as bind pose
177
183
  :type guess_original_bind_pose: bool | typing.Any | None
178
184
  :param import_webp_texture: Import WebP textures, If a texture exists in WebP format, loads the WebP texture instead of the fallback PNG/JPEG one
@@ -5833,21 +5833,6 @@ def volume_import(
5833
5833
  Thumbnails -- Display files as thumbnails.
5834
5834
  :type display_type: str | None
5835
5835
  :param sort_method: File sorting mode
5836
-
5837
- DEFAULT
5838
- Default -- Automatically determine sort method for files.
5839
-
5840
- FILE_SORT_ALPHA
5841
- Name -- Sort the file list alphabetically.
5842
-
5843
- FILE_SORT_EXTENSION
5844
- Extension -- Sort the file list by extension/type.
5845
-
5846
- FILE_SORT_TIME
5847
- Modified Date -- Sort files by modification time.
5848
-
5849
- FILE_SORT_SIZE
5850
- Size -- Sort files by size.
5851
5836
  :type sort_method: str | None
5852
5837
  :param use_sequence_detection: Detect Sequences, Automatically detect animated sequences in selected volume files (based on file names)
5853
5838
  :type use_sequence_detection: bool | typing.Any | None
bpy/ops/wm/__init__.pyi CHANGED
@@ -202,6 +202,9 @@ def alembic_import(
202
202
  undo: bool | None = None,
203
203
  *,
204
204
  filepath: str | typing.Any = "",
205
+ directory: str | typing.Any = "",
206
+ files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
207
+ | None = None,
205
208
  check_existing: bool | typing.Any | None = False,
206
209
  filter_blender: bool | typing.Any | None = False,
207
210
  filter_backup: bool | typing.Any | None = False,
@@ -239,6 +242,10 @@ def alembic_import(
239
242
  :type undo: bool | None
240
243
  :param filepath: File Path, Path to file
241
244
  :type filepath: str | typing.Any
245
+ :param directory: Directory, Directory of the file
246
+ :type directory: str | typing.Any
247
+ :param files: Files
248
+ :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
242
249
  :param check_existing: Check Existing, Check and warn on overwriting existing files
243
250
  :type check_existing: bool | typing.Any | None
244
251
  :param filter_blender: Filter .blend files
@@ -4958,6 +4965,7 @@ def usd_export(
4958
4965
  use_instancing: bool | typing.Any | None = False,
4959
4966
  evaluation_mode: str | None = "RENDER",
4960
4967
  generate_preview_surface: bool | typing.Any | None = True,
4968
+ generate_materialx_network: bool | typing.Any | None = False,
4961
4969
  convert_orientation: bool | typing.Any | None = False,
4962
4970
  export_global_forward_selection: str | None = "NEGATIVE_Z",
4963
4971
  export_global_up_selection: str | None = "Y",
@@ -5087,8 +5095,10 @@ def usd_export(
5087
5095
  VIEWPORT
5088
5096
  Viewport -- Use Viewport settings for object visibility, modifier settings, etc.
5089
5097
  :type evaluation_mode: str | None
5090
- :param generate_preview_surface: To USD Preview Surface, Generate an approximate USD Preview Surface shader representation of a Principled BSDF node network
5098
+ :param generate_preview_surface: USD Preview Surface Network, Generate an approximate USD Preview Surface shader representation of a Principled BSDF node network
5091
5099
  :type generate_preview_surface: bool | typing.Any | None
5100
+ :param generate_materialx_network: MaterialX Network, Generate a MaterialX network representation of the materials
5101
+ :type generate_materialx_network: bool | typing.Any | None
5092
5102
  :param convert_orientation: Convert Orientation, The USD exporter will convert scene orientation axis
5093
5103
  :type convert_orientation: bool | typing.Any | None
5094
5104
  :param export_global_forward_selection: Forward Axis
bpy/props/__init__.pyi CHANGED
@@ -100,8 +100,8 @@ def BoolProperty(
100
100
  translation_context: str | None = "*",
101
101
  default=False,
102
102
  options: set | None = {"ANIMATABLE"},
103
- override: set | None = None(),
104
- tags: set | None = None(),
103
+ override: set | None = set(),
104
+ tags: set | None = set(),
105
105
  subtype: str | None = "NONE",
106
106
  update: typing.Any | None = None,
107
107
  get: typing.Any | None = None,
@@ -144,8 +144,8 @@ def BoolVectorProperty(
144
144
  translation_context: str | None = "*",
145
145
  default: collections.abc.Sequence | None = (False, False, False),
146
146
  options: set | None = {"ANIMATABLE"},
147
- override: set | None = None(),
148
- tags: set | None = None(),
147
+ override: set | None = set(),
148
+ tags: set | None = set(),
149
149
  subtype: str | None = "NONE",
150
150
  size: collections.abc.Sequence[int] | int | None = 3,
151
151
  update: typing.Any | None = None,
@@ -193,8 +193,8 @@ def CollectionProperty(
193
193
  description: str | None = "",
194
194
  translation_context: str | None = "*",
195
195
  options: set | None = {"ANIMATABLE"},
196
- override: set | None = None(),
197
- tags: set | None = None(),
196
+ override: set | None = set(),
197
+ tags: set | None = set(),
198
198
  ):
199
199
  """Returns a new collection property definition.
200
200
 
@@ -225,8 +225,8 @@ def EnumProperty(
225
225
  translation_context: str | None = "*",
226
226
  default: int | set | str | None = None,
227
227
  options: set | None = {"ANIMATABLE"},
228
- override: set | None = None(),
229
- tags: set | None = None(),
228
+ override: set | None = set(),
229
+ tags: set | None = set(),
230
230
  update: typing.Any | None = None,
231
231
  get: typing.Any | None = None,
232
232
  set: typing.Any | None = None,
@@ -316,8 +316,8 @@ def FloatProperty(
316
316
  step: int | None = 3,
317
317
  precision: int | None = 2,
318
318
  options: set | None = {"ANIMATABLE"},
319
- override: set | None = None(),
320
- tags: set | None = None(),
319
+ override: set | None = set(),
320
+ tags: set | None = set(),
321
321
  subtype: str | None = "NONE",
322
322
  unit: str | None = "NONE",
323
323
  update: typing.Any | None = None,
@@ -381,8 +381,8 @@ def FloatVectorProperty(
381
381
  step: int | None = 3,
382
382
  precision: int | None = 2,
383
383
  options: set | None = {"ANIMATABLE"},
384
- override: set | None = None(),
385
- tags: set | None = None(),
384
+ override: set | None = set(),
385
+ tags: set | None = set(),
386
386
  subtype: str | None = "NONE",
387
387
  unit: str | None = "NONE",
388
388
  size: collections.abc.Sequence[int] | int | None = 3,
@@ -450,8 +450,8 @@ def IntProperty(
450
450
  soft_max: int | None = None,
451
451
  step: int | None = 1,
452
452
  options: set | None = {"ANIMATABLE"},
453
- override: set | None = None(),
454
- tags: set | None = None(),
453
+ override: set | None = set(),
454
+ tags: set | None = set(),
455
455
  subtype: str | None = "NONE",
456
456
  update: typing.Any | None = None,
457
457
  get: typing.Any | None = None,
@@ -509,8 +509,8 @@ def IntVectorProperty(
509
509
  soft_max: int | None = None,
510
510
  step: int | None = 1,
511
511
  options: set | None = {"ANIMATABLE"},
512
- override: set | None = None(),
513
- tags: set | None = None(),
512
+ override: set | None = set(),
513
+ tags: set | None = set(),
514
514
  subtype: str | None = "NONE",
515
515
  size: collections.abc.Sequence[int] | int | None = 3,
516
516
  update: typing.Any | None = None,
@@ -568,8 +568,8 @@ def PointerProperty(
568
568
  description: str | None = "",
569
569
  translation_context: str | None = "*",
570
570
  options: set | None = {"ANIMATABLE"},
571
- override: set | None = None(),
572
- tags: set | None = None(),
571
+ override: set | None = set(),
572
+ tags: set | None = set(),
573
573
  poll: typing.Any | None = None,
574
574
  update: typing.Any | None = None,
575
575
  ):
@@ -618,8 +618,8 @@ def StringProperty(
618
618
  default: str | None = "",
619
619
  maxlen: int | None = 0,
620
620
  options: set | None = {"ANIMATABLE"},
621
- override: set | None = None(),
622
- tags: set | None = None(),
621
+ override: set | None = set(),
622
+ tags: set | None = set(),
623
623
  subtype: str | None = "NONE",
624
624
  update: typing.Any | None = None,
625
625
  get: typing.Any | None = None,