Пример #1
0
 public static void WriteAscii(string path, FbxRootNode root)
 {
     using (FbxWriter writer = new FbxWriter(path, root.Version))
         writer.WriteAscii(root);
 }
Пример #2
0
 public static void WriteAscii(string path, Scene scene, FbxVersion version = FbxVersion.v7400)
 {
     using (FbxWriter writer = new FbxWriter(path, version))
         writer.WriteAscii(scene);
 }