2

I wanted to cap FPS in cryengine. I was advised to use commands r_Vsync 0 and sys_maxfps 30 (I could make a mistake, but in console I used the correct ones), but FPS is still over 360. How can I fix this?

kalabalik
  • 3,792
  • 2
  • 21
  • 50
user9102437
  • 600
  • 1
  • 10
  • 24

1 Answers1

0

To limit the framerate in the exported game (GameLauncher), you have to enter these two commands in order

  • r_VSync = 0
  • sys_MaxFps = 60 (if you want to cap it to 60 fps)

Unfortunately is not possible to limit your fps in the editor because of a design choice. If you really want to limit them, you could check this out, though you would have to recompile the engine.

Here you can also find a complete list of all the console commands with their possible values and effects.

I hope I helped you :)

Lorenzo Montanari
  • 958
  • 1
  • 15
  • 19