How can I increase the performance for my mobile endless runner game?

I have got quite some problems with the performance of my endless runner game and I already tried multiple things to fix it.

How it works.

I spawn 1 random tile at a time that loops for 10 tile pieces.
After the character leaves one tile the last one gets removed
(So there are 10 tiles at the same time on the screen)

What the Tiles contain
![alt text][1]
The biggest Tile contains 10 400x400 floor meshes and 15 sprites.

The 15 sprite locations are randomized in a box collision.

These sprites rotate with the player character location.

The materials only contain a texture sample to base color.

I have 1 directional light and the default sky sphere(the sphere does not even work on older devices)

**What I tried to fix the performance **

I have given all the meshes and sprites an max draw distance of 5000.

This increased the performance a lot, from 25fps to 50fps and still sometimes drops to 30fps (I am running it on a samsung s5)

I still need to add a exponential height fog/ fog material in the distance to hide the pop in.

But the real issue is that on other lower end devices the performance is lower than 30fps and drops to 25fps.
(Tested on Samsung note 10.1 2010 edition)

So to get to the point, Why am I getting stuttering and low fps in general?

Do I render to many meshes at the same time?

Am I using to much ram? (the random fps drops)

Optional question Is there an easy replacement for exponential height-fog?

Use the profiler to check what takes the execution time the most and try to reduce it, also “stat game” command show summery times. Not sure how profiler works with Android thru, but you can run on PC and try reduce times on PC. Here docs of profiler:

Thanks for your fast respond!

I have found the problem, I am using way to many meshes per tile.
I need to make one mesh in blender or find a way to merge them all into one.

Which one do you suggest?

Using an outer 3d program to combine meshes will be better. You can simply decrease the vertex count as much as you can within.

Also about Fog question, from what I see on the forums, people use a way to change the color of everything depending on the distance of the mesh. For example everything at distance 10.000 is pure black no matter what, and they are lerped to their normal colors as they get closer.

Asking about it as a seperate question might help you on that part, as I have little to no exp on such a thing, but it is possible? Yes.

=)

Thanks for your answer,
I am gonna do as you say and make the tiles pieces as one mesh in blender.
And for the fog part, I will update it here if it worked.

are you sure you DESTROYED the actors?

I Tried By Combine Meshes But It Didn’t Work, Then I Tried Reducing The Vertex But It Didn’t Work,
Then I Used Material As Simple Texture Sample To Base Color And Nothing Else And Now I Am Getting 45+ fps On My 2 GB Ram Mobile, In Previous It Was 19-22 fps

So Basically This Is A Rendering Issue.