Exemplo n.º 1
0
 /// <inheritdoc/>
 public void WriteAscii(FbxRootNode root)
 {
     using (FbxAsciiWriter writer = new FbxAsciiWriter(this._stream))
         writer.Write(root);
 }
Exemplo n.º 2
0
 /// <inheritdoc/>
 public void WriteAscii(Scene scene)
 {
     using (FbxAsciiWriter writer = new FbxAsciiWriter(this._stream))
         writer.Write(FbxRootNode.CreateFromScene(scene, this.Version));
 }