AssetStudio/AssetStudioUtility/ModelExporter.cs

12 lines
543 B
C#
Raw Permalink Normal View History

2018-11-18 22:48:06 +00:00
namespace AssetStudio
{
public static class ModelExporter
{
2019-07-28 10:55:08 +00:00
public static void ExportFbx(string path, IImported imported, bool eulerFilter, float filterPrecision,
bool allNodes, bool skins, bool animation, bool blendShape, bool castToBone, float boneSize, float scaleFactor, int versionIndex, bool isAscii)
2018-11-18 22:48:06 +00:00
{
2019-07-28 10:55:08 +00:00
Fbx.Exporter.Export(path, imported, eulerFilter, filterPrecision, allNodes, skins, animation, blendShape, castToBone, boneSize, scaleFactor, versionIndex, isAscii);
2018-11-18 22:48:06 +00:00
}
}
}