mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-05-25 05:40:21 -04:00
12 lines
602 B
C#
12 lines
602 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, float scaleFactor, int versionIndex, bool isAscii)
|
|
{
|
|
Fbx.Exporter.Export(path, imported, eulerFilter, filterPrecision, allNodes, skins, animation, blendShape, castToBone, boneSize, exportAllUvsAsDiffuseMaps, scaleFactor, versionIndex, isAscii);
|
|
}
|
|
}
|
|
}
|