xna orbit camera troubles
- by user17753
I have a Model named cube to which I load in LoadContent(): cube = Content.Load<Model>("untitled");.
In the Draw Method I call DrawModel:
private void DrawModel(Model m, Matrix world)
{
foreach (ModelMesh mesh in m.Meshes)
{
foreach (BasicEffect effect in mesh.Effects)
{
…