I want to change FPS for my game.

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By aNamee

I am trying Godot 4.0 and want to change my game’s FPS. If I did this, I could test if I am using delta correctly. I don’t need to be able to change it in code. This could make testing faster though. Please help.

1 Like
:bust_in_silhouette: Reply From: Adam_S

In the Project Settings, activate “Advanced Settings” then Application->Run->Max FPS.
This property is read only when the project is started.

To change the FPS cap at runtime use:

Engine.max_fps = 60

Thank you so much.

aNamee | 2023-02-26 15:45

Thank you. This is very helpful.

aNamee | 2023-03-11 02:28

2 Likes