fake-bpy-module 20241211__py3-none-any.whl → 20241213__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.
- bl_ui/space_node/__init__.pyi +0 -37
- bpy/ops/file/__init__.pyi +1 -1
- bpy/ops/wm/__init__.pyi +1 -1
- bpy/types/__init__.pyi +517 -23
- {fake_bpy_module-20241211.dist-info → fake_bpy_module-20241213.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241211.dist-info → fake_bpy_module-20241213.dist-info}/RECORD +10 -10
- gpu/types/__init__.pyi +4 -5
- gpu_extras/batch/__init__.pyi +2 -3
- {fake_bpy_module-20241211.dist-info → fake_bpy_module-20241213.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241211.dist-info → fake_bpy_module-20241213.dist-info}/top_level.txt +0 -0
bl_ui/space_node/__init__.pyi
CHANGED
|
@@ -526,43 +526,6 @@ class NODE_PT_backdrop(bpy.types.Panel):
|
|
|
526
526
|
:param context:
|
|
527
527
|
"""
|
|
528
528
|
|
|
529
|
-
class NODE_PT_compositor_debug(bpy.types.Panel):
|
|
530
|
-
bl_category: typing.Any
|
|
531
|
-
bl_label: typing.Any
|
|
532
|
-
bl_options: typing.Any
|
|
533
|
-
bl_parent_id: typing.Any
|
|
534
|
-
bl_region_type: typing.Any
|
|
535
|
-
bl_rna: typing.Any
|
|
536
|
-
bl_space_type: typing.Any
|
|
537
|
-
id_data: typing.Any
|
|
538
|
-
|
|
539
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
540
|
-
"""
|
|
541
|
-
|
|
542
|
-
:return: The RNA type or default when not found.
|
|
543
|
-
:rtype: bpy.types.Struct
|
|
544
|
-
"""
|
|
545
|
-
|
|
546
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
547
|
-
"""
|
|
548
|
-
|
|
549
|
-
:return: The class or default when not found.
|
|
550
|
-
:rtype: typing.Any
|
|
551
|
-
"""
|
|
552
|
-
|
|
553
|
-
def draw(self, context):
|
|
554
|
-
"""
|
|
555
|
-
|
|
556
|
-
:param context:
|
|
557
|
-
"""
|
|
558
|
-
|
|
559
|
-
@classmethod
|
|
560
|
-
def poll(cls, context):
|
|
561
|
-
"""
|
|
562
|
-
|
|
563
|
-
:param context:
|
|
564
|
-
"""
|
|
565
|
-
|
|
566
529
|
class NODE_PT_geometry_node_tool_mode(bpy.types.Panel):
|
|
567
530
|
bl_label: typing.Any
|
|
568
531
|
bl_region_type: typing.Any
|
bpy/ops/file/__init__.pyi
CHANGED
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -5189,7 +5189,7 @@ def usd_export(
|
|
|
5189
5189
|
:type usdz_downscale_size: typing.Literal['KEEP','256','512','1024','2048','4096','CUSTOM'] | None
|
|
5190
5190
|
:param usdz_downscale_custom_size: USDZ Custom Downscale Size, Custom size for downscaling exported textures
|
|
5191
5191
|
:type usdz_downscale_custom_size: int | None
|
|
5192
|
-
:param merge_parent_xform: Merge parent Xform, Merge USD primitives with their Xform parent if possible
|
|
5192
|
+
:param merge_parent_xform: Merge parent Xform, Merge USD primitives with their Xform parent if possible. USD does not allow nested UsdGeomGprims, intermediary Xform prims will be defined to keep the USD file valid when encountering object hierarchies.
|
|
5193
5193
|
:type merge_parent_xform: bool | None
|
|
5194
5194
|
"""
|
|
5195
5195
|
|