Sagar Patil
Sagar Patil

Reputation: 1400

Factors that affect FPS on mobile device in Unity

I am developing a simple player shooting game. It worked fine for me. But when I tried deploying it on the device the FPS reduced to almost 3-4FPS. Can anyone list out what are the factors that reduces the FPS in unity game.

Upvotes: 6

Views: 4005

Answers (1)

Hamdullah shah
Hamdullah shah

Reputation: 804

Minimize the Draw calls, optimize the shaders and Reduce the number of vertices.

Graphic Optimization

iOS specific Optimiztion

This article may help

And try deep profiling of game using Unity Profiler to find the memory overhead.

Upvotes: 3

Related Questions