Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
What models are supported by XNA?
What 3d model formats are supported by XNA version 4.0?
1 Answer
- 1 decade agoFavorite Answer
by default, provided xna importer support:
.x (directX)
.fbx
however some people tend to chose to create their custom model importer so they can import more general file format. (you need to dive into content importer programming)
I prefer using .fbx since its commonly used. By default, you will need to apply your texture and shader in your XNA code (You cant just export shader properties from your 3d package). Shader language used by XNA is HLSL.
You can do googling to know how to import 3d model to XNA game. Its so basic in 3D so it will be easy to find the reference.
Good Luck!
Thanks
Source(s): personal experience