On my game I am doing some a grid based dungeony thing and I am creating lots of duplicate models. when doing a larger grid my create method was spending all its time in InstantiateXML. So I made prototypes of each object and executed Clone on each of the nodes. This was wonderfully fast but now i have 2200 draw calls for 5 objects I was wondering what the pro way of doing this is?
Thanks