XNA File Load - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T14:59:09Zhttp://stackoverflow.com/feeds/question/95606http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/95606/xna-file-load0XNA File LoadJake Pearson2008-09-18T18:49:37Z2009-01-15T22:20:03Z
<p>Hi,
In XNA, how do I load in a texture or mesh from a file without using the content pipeline?</p>
http://stackoverflow.com/questions/95606/xna-file-load/95678#956780Answer by Cory for XNA File LoadCory2008-09-18T18:55:51Z2008-09-18T18:55:51Z<p>I believe Texture2D.FromFile(); is what you are looking for.</p>
<p>It does not look like you can do this with a Model though.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/microsoft.xna.framework.graphics.texture2d.fromfile.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/microsoft.xna.framework.graphics.texture2d.fromfile.aspx</a></p>
http://stackoverflow.com/questions/95606/xna-file-load/97353#973531Answer by Joel Martinez for XNA File LoadJoel Martinez2008-09-18T21:48:51Z2008-09-18T21:48:51Z<p>The .FromFile method will not work on xbox or zune. You have two choices:</p>
<ol>
<li>Just use the content pipeline ... on xbox or zune (if you care about them), you can't have user-supplied content anyways, so it doesn't matter if you only use the content pipeline.</li>
<li>Write code to load the texture (using .SetData), or of course to parse the model file and load the appropriate vertexbuffers, etc.</li>
</ol>
http://stackoverflow.com/questions/95606/xna-file-load/448709#4487090Answer by Taylor for XNA File LoadTaylor2009-01-15T22:20:03Z2009-01-15T22:20:03Z<p>For anyone interested in loading a model from a file check out this tutorial:</p>
<p><a href="http://creators.xna.com/en-us/sample/winforms_series2" rel="nofollow">http://creators.xna.com/en-us/sample/winforms_series2</a></p>