When we use the following code, why do we loop through the effects in the mesh. I don't really need to know this but I feel like learning a bit more. If you can help, I'm all two ears. Thanks☺
foreach (ModelMesh mesh in myModel.Meshes){ foreach (BasicEffect effect in mesh.Effects) { //Draw code } mesh.Draw();}