mirror of
https://github.com/Dongyifengs/AssetStudio-Genshin-MoYi.git
synced 2025-04-20 11:39:20 +08:00
12 lines
635 B
C#
12 lines
635 B
C#
namespace AssetStudio
|
|
{
|
|
public static class ModelExporter
|
|
{
|
|
public static void ExportFbx(string path, IImported imported, bool eulerFilter, float filterPrecision,
|
|
bool allNodes, bool skins, bool animation, bool blendShape, bool castToBone, float boneSize, bool exportAllUvsAsDiffuseMaps, bool exportUV0UV1, float scaleFactor, int versionIndex, bool isAscii)
|
|
{
|
|
Fbx.Exporter.Export(path, imported, eulerFilter, filterPrecision, allNodes, skins, animation, blendShape, castToBone, boneSize, exportAllUvsAsDiffuseMaps, exportUV0UV1, scaleFactor, versionIndex, isAscii);
|
|
}
|
|
}
|
|
}
|