Export objects with Animation

This commit is contained in:
Perfare
2018-04-11 15:52:37 +08:00
parent 8031d1a03f
commit af80b270cf
4 changed files with 70 additions and 19 deletions

View File

@@ -523,5 +523,12 @@ namespace AssetStudio
ProgressBarPerformStep();
});
}
public static void ExportObjectsWithAnimationClip(GameObject gameObject, List<AssetPreloadData> animationList, string exportPath)
{
var result = ExportGameObject(gameObject, animationList, exportPath);
StatusStripUpdate(result ? "Successfully exported" : "Nothing exported.");
ProgressBarPerformStep();
}
}
}