FPS count is going less than 20 by increasing the number of 2D sprites

Hi,
In our game we have the following game objects and the game objects count will increase with game play.

  1. 4 game objects with box collider and each having a 2d sprite as a child to create lines
  2. 4 game objects with sphere collider and each having a 2d sprite as a child to create a circle
  3. 4 game objects with mesh collider and each having a 2d sprite as a child to create respective shapes

As i told game objects count will increase with the game play, becomes more sprites, leads to decrease in fps.

I am enabling and disabling the gameobjects based on whether gameobjects is on srceen or not but still i am facing the same problem.

Here i have attached an screenshot of the game for further details.

Please help me out in this, any help is appreciated.

It would be the amount of colliders and the physics processing maybe.

Do they have all rigidbodies and are they static or dynamic rigidbodies?
If you are creating dynamically then make sure they are not static, as it will slow things down heaps.

Otherwise maybe look at writing the code to join verticies together to make less colliders, and reuse the same images or sprites as much as possible.

I can get some 650,000 sprites and still have 70fps+, so look into your colliders and whether or not they are static or dynamic.

Yeah other wise you will need to find ways of loading and unloading things that are off camera maybe.

Hope this helps.