可以使用 AbcImportAbcExport MEL 命令导入和导出 Alembic 文件。例如,使用以下命令导出多边形圆环:          

AbcExport -j "-frameRange 1 120 -root pTorus1 -file c:/temp/test.abc";          

可以使用 AbcExport -h;AbcImport -h;,在“脚本编辑器”(Script Editor)中查看有关这些命令的帮助信息。          

对于 GPU 缓存,没有输入命令。但是,您可以创建 gpuCache 节点,并设定缓存文件名称和路径的属性。例如:          

createNode -n "mine" gpuCache;          

setAttr -e -type "string" mine.cacheFileName "dd.abc";          

setAttr -e -type "string" mine.cacheGeomPath "|"; // eg the root.          


,