mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-05-25 05:40:21 -04:00
11 lines
473 B
C#
11 lines
473 B
C#
namespace AssetStudio
|
|
{
|
|
public static class ModelExporter
|
|
{
|
|
public static void ExportFbx(string path, IImported imported, bool eulerFilter, float filterPrecision, bool allFrames, bool allBones, bool skins, float boneSize, float scaleFactor, int versionIndex, bool isAscii)
|
|
{
|
|
Fbx.Exporter.Export(path, imported, eulerFilter, filterPrecision, allFrames, allBones, skins, boneSize, scaleFactor, versionIndex, isAscii);
|
|
}
|
|
}
|
|
}
|