XNA File Load - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T14:59:09Z http://stackoverflow.com/feeds/question/95606 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/95606/xna-file-load 0 XNA File Load Jake Pearson 2008-09-18T18:49:37Z 2009-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#95678 0 Answer by Cory for XNA File Load Cory 2008-09-18T18:55:51Z 2008-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#97353 1 Answer by Joel Martinez for XNA File Load Joel Martinez 2008-09-18T21:48:51Z 2008-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#448709 0 Answer by Taylor for XNA File Load Taylor 2009-01-15T22:20:03Z 2009-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>