mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-02-04 15:20:04 +00:00
* feat(comfy_api): add basic 3D Model file types * update Tripo nodes to use File3DGLB * update Rodin3D nodes to use File3DGLB * address PR review feedback: - Rename File3D parameter 'path' to 'source' - Convert File3D.data property to get_data() - Make .glb extension check case-insensitive in nodes_rodin.py - Restrict SaveGLB node to only accept File3DGLB * Fixed a bug in the Meshy Rig and Animation nodes * Fix backward compatability
15 lines
294 B
Python
15 lines
294 B
Python
from .video_types import VideoContainer, VideoCodec, VideoComponents
|
|
from .geometry_types import VOXEL, MESH, File3D
|
|
from .image_types import SVG
|
|
|
|
__all__ = [
|
|
# Utility Types
|
|
"VideoContainer",
|
|
"VideoCodec",
|
|
"VideoComponents",
|
|
"VOXEL",
|
|
"MESH",
|
|
"File3D",
|
|
"SVG",
|
|
]
|