I added combine mesh script to optimize drawcalls.Drawcalls reduced from 800 to 200 but fps is not increasing.Is there any particular reason or any methods to increase fps of my game.It has to be exported to an android device.Can any one please help me
2 Answers
2Read and follow the advice here:
hello
please don’t render camera with more object.
Use occlusion culling, avoid unnecessary shadow,lighting,fog,and floating value calulations
You need to make the question more specific. People need to know the bottleneck of your game for example. You generally need to find unecessary function calls and remove them. Also reduce the quality settings to minimum, and avoid reflection. These are not great tips, but I don't know more about your game...
– Raiden-Freeman