Games for Windows and the DirectX SDK blog

Technical tips, tricks, and news about game development for Microsoft platforms including desktop, Xbox, and UWP


Project maintained by walbourn Hosted on GitHub Pages — Theme by mattgraham
Home | Posts by Tag | Posts by Month

Samples Content Exporter

dxsdk, github

Originally posted to Chuck Walbourn's Blog on MSDN,

The legacy DirectX SDK (June 2010) included the Samples Content Exporter utility for creating .sdkmesh data files using Autodesk’s FBX SDK library. At the time, this utility used the 2010.2 version of the Autodesk FBX SDK which did not have support for Visual Studio 2010, and only worked with the VS 2008 toolset.

The latest version of this sample is now hosted on GitHub under the MIT license.

You can build this version of the utility using VS 2013 and Autodesk FBX SDK 2015.1 or 2016.0; VS 2012 and Autodesk FBX SDK 2014.1 or later; or VS 2010 with the standalone Windows 8.1 SDK and Autodesk FBX SDK 2013.3.1 or later.

For the latest documentation on the Samples Content Exporter, see the wiki on GitHub.

Disclaimer: .SDKMESH has been our long-time samples runtime geometry format since the retiring of the legacy .X file format. It has a number of limitations, and we don’t recommend using it as a your production solution for meshes. It is, however, very useful for samples and itself serves as an example of such file containers. Support for loading this file format can be found in DirectX Tool Kit library and the DXUT for Direct3D 11 framework. The documentation on the format can be found here.

Related: Samples Content Exporter Update (April 2012)