Home > other >  I have an existing .apk of game and it is 30fps, how can i change from 30 to 60 fps?
I have an existing .apk of game and it is 30fps, how can i change from 30 to 60 fps?

Time:01-24

Developers. I am new to Android Studio, is there anyway to change framerate of choppy 30fps limited game? It is not made by Unity. I decompiled .apk also.

CodePudding user response:

You can use Application.targetFrameRate = 30;.

https://docs.unity3d.com/ScriptReference/Application-targetFrameRate.html

CodePudding user response:

You can use setFrameRate function if the device supports 60fps you can get 60 fps.

  •  Tags:  
  • Related