Wandeln Sie USD über C# in FBX um
Exportieren Sie USD- und andere 3D-Dateien mit .NET Framework, .NET Core und Mono
Exportiere USD Szene als FBX mit C#
- Laden Sie die USD-Datei mit einem Konstruktor von Szene Klasse2. Anruf Szene.Speichern Methode
- Übergeben Sie den Namen der Ausgabedatei mit der Erweiterung .fbx als ersten Parameter
- Geben Sie den Feldwert „FBX7700Binary“ an Datei Format Klasse
3D Formatkonvertierung API for .NET
Installieren Sie von der Befehlszeile als nuget install Aspose.3d
oder über die Package Manager Console von Visual Studio mit Install-Package Aspose.3D
.
Alternativ können Sie das Offline-MSI-Installationsprogramm oder DLLs in einer ZIP-Datei herunterladen Downloads .
C# Code für Umwandlung von USD in FBX
// Laden Sie die USD in ein Objekt der Szene
var scene = new Aspose.ThreeD.Scene("template.usd");
// speichere USD als FBX
scene.Save("output.fbx", Aspose.ThreeD.FileFormat.FBX7700Binary);
Other Conversion Options
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 MoreFBX 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