I have some problems with loading from path a model.
axis = Content.Load<Model>("XYZ");
I try to change it to :
axis = Content.Load<Model>("C:\\XYZ");
But it gives me this error :
Error loading "C:\XYZ". Cannot open file.
I also googled that thing, but I found nothing, looked at this question : How Do I Load A XNA Model From A File Path Instead Of From The Content (eg. Model.FromStream but it doesnt exist) , but it didn't help me.