C#を介してUSDをFBXに変換します

.NETフレームワーク、.NETコア、およびMonoを使用してUSDおよびその他の3Dファイルをエクスポートします

USDシーンをC#付きのFBXとしてエクスポート

  1. のコンストラクタを使用してUSDファイルをロードします シーン クラス2.電話する Scene.Save 方法 3.最初のパラメーターとして.fbx拡張子を持つ出力ファイル名を渡します 4.からFBX7700Binaryフィールド値を指定します FileFormat クラス

3Dフォーマット変換APIfor .NET

コマンドラインからnuget install Aspose.3dとしてインストールするか、VisualStudioのパッケージマネージャーコンソールから`` `Install-PackageAspose.3D```を使用してインストールします。

または、オフラインのMSIインストーラーまたはDLLをZIPファイルから取得します。 ダウンロード

C#USDからFBXへの変換のコード

// シーンのオブジェクトにUSDをロードします 
var scene = new Aspose.ThreeD.Scene("template.usd");
// USDをFBXとして保存 
scene.Save("output.fbx", Aspose.ThreeD.FileFormat.FBX7700Binary);

Other Conversion Options

USD TO PLY (Polygon File Format)
USD TO DRC (Google Draco File Format)
USD TO AMF (Additive Manufacturing File)
USD TO OBJ (Wavefront 3D Object File)
USD TO GLTF (GL Transmission Format File)
USD TO DXF (Autodesk Drawing Exchange Format)
USD TO PDF (Portable Document Format)
USD TO FBX (Autodesk FBX Interchange File)

USD What is USD File Format?

A file with .usd extension is a Universal Scene Description file format that encodes data for the purpose of data interchanging and augmenting between digital content creation applications. Developed by Pixar, USD provides the ability to interchange elemental assets (such as models) or animation.

Read More

FBX What is FBX File Format?

FBX, FilmBox, is a popular 3D file format that was originally developed by Kaydara for MotionBuilder. It was acquired by Autodesk Inc in 2006 and is now one of the main 3D exchange formats as used by many 3D tools. FBX is available in both binary and ASCII file format. The format was established to provided interoperability between digital content creation applications. There are many tools available for conversion from/to FBX file format.

Read More