vote up 0 vote down star

Hi, In XNA, how do I load in a texture or mesh from a file without using the content pipeline?

flag

3 Answers

vote up 0 vote down check

I believe Texture2D.FromFile(); is what you are looking for.

It does not look like you can do this with a Model though.

http://msdn.microsoft.com/en-us/library/microsoft.xna.framework.graphics.texture2d.fromfile.aspx

link|flag
vote up 0 vote down

For anyone interested in loading a model from a file check out this tutorial:

http://creators.xna.com/en-us/sample/winforms_series2

link|flag
vote up 1 vote down

The .FromFile method will not work on xbox or zune. You have two choices:

  1. 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.
  2. Write code to load the texture (using .SetData), or of course to parse the model file and load the appropriate vertexbuffers, etc.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.