I downloaded the FBX of this free model:
http://www.turbosquid.com/FullPreview/Index.cfm/ID/485548
Yet when i try and display it in my project
foreach (ModelMesh mesh in player.Meshes)
{
foreach (BasicEffect beffect in mesh.Effects)
{
beffect.View = view;
beffect.Projection = projection;
beffect.EnableDefaultLighting();
}
mesh.Draw();
}
I end up with the teeth of the model way out from the body, and the eyes expanded so large they stick out the sides of the model.
Could someone tell me what i am doing wrong? Or is the model the issue?