If I call the ContentManager Load method with the same info multiple times does it return muliple copies of the data, or multiple references to the same data?
For example:
Model model1 = contentManager.Load<Model>( ".\\content\\models\\box" );
Model model2 = contentManager.Load<Model>( ".\\content\\models\\box" );
Would the above store 2 independent copies of the box model in memory, or one copy in memory with 2 references to it?
Or, to put it another way... if after executing the above code I modified model1's vertex buffer, would it affect model2's vertex buffer too?
Thanks for your help
Ben