How many tris/verts is "too many" for a terrain?

Hey all, simple and quick question here.

I made a terrain in blender, exported it as a .obj mesh, then used a script I found online (Object2Terrain) to convert the blender mesh to a unity terrain for painting, etc.

I noticed a HUGE fps drop and suspect the terrain is of extremely high poly but want to make sure with you guys that that is my error before I remake/repaint the entire terrain.

Currently my verts and tri’s are between 500,000 and 3 million, and it changes a lot as I look around at the terrain.

I’m assuming this is too high?

Also, does anyone know of a good way to make a low poly unity terrain mesh from a blender mesh? Otherwise should I just paint the terrain in blender and bake it on / use a blender mesh as my terrain?

Thanks!
Nick

That is pretty high, however usually the FPS drops because of too much real-time lighting and shadows. You should seriously start baking your shadows at that point as it will HUGELY help your scene. Once I made a test project, had 1.5 million tris but because I had baked the lighting the FPS was 35 on my Samsung Tab 3 (crappy tablet). Before light baking if couldn’t get over 5FPS. Proper mixing of baked and real-time light is essential. So if you can lower the poly count, but the shadow calls take MUCH more computing power.

^^ Personal experience, learned the hard way.