help with iphone 3GS performance (polys and audio)

I’m developing a game for iPhone 3GS but i need to know basic stuff for the best performance on the iPhone, and what’s the best choice for my needs, for example I’ve got a wall as a background but the theme of the games is kind of toyish so should i create a texture uncluding the art or should i place the art on a polygon and addit at the scene on Unity?

There are quite a few articles out there that cover optimization in a lot of detail, but in general, you want to stay under 7.5k triangles in your scene, stay under 20 draw calls & atlas your textures. You could batch draw calls too, and you can also use object occlusion culling, so it will disable objects that aren’t in view, occluded by other objects.

couple of places to start for optimizing are here and here but your best bet is googling iphone optimization unity.

Not sure I understand the question about the texture, but here are instructions on how to add a gui texture as a background.

tnkx taters, the thing that i’m really looking for is the size of the type of files that iphone 3GS can handle for a best performance, but your info has been really helpful!