Reducing Draw Calls for iPhone - I don't get it...

Hey folks!

I thought I understood but it seems that I missed sopmething... I have a big number of balls flying around in my game and I thought if they share the same material and belog to the same parent gameobject the also share one draw call. but my statistics window still count the same amount of draw calls like there are bally flying around...

what did i got wrong?

thx!!

Make sure your material is using the same texture on all the objects. (may need to create a texture atlas)

Don't modify "Renderer.material" which will create a new copy of the material.

Make sure your objects have less than 300 vertices, otherwise they won't be batched.

beware of scaling objects within unity transformation! scale does also increase the number of draw calls. :(

Use this script link text. You must have the same material on the objects. Not only will you have your draw calls with those objects reduced to 1 they will also be batched as 1.

Hmm.. Why is the batched 15, when my draw calls is only 1?