Reputation: 1400
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
Reputation: 804
Minimize the Draw calls, optimize the shaders and Reduce the number of vertices.
And try deep profiling of game using Unity Profiler to find the memory overhead.
Upvotes: 3