This site is currently in read-only mode during migration to a new platform.
You cannot post questions, answers or comments, as they would be lost during the migration otherwise.
0 votes

Hi.

I recently tried upping the physics FPS to 120 (from default 60) in my 3d game. The game now looks and feels much smoother but ...

What if someone runs the game on an older PC that is unable to run it above 120 fps?
I can't test it myself as I only have one PC and it runs the game at approx. 150fps on average and my display refresh rate is 240hz so things are nice and smooth.
But what if someone's PC runs the game at, say, 70fps at most? What will happen to physics when it's unable to execute its fixed FPS of 120? Will there be frame drops? Errors?

Godot version 3.4
in Engine by (516 points)

When you say runs at 70fps, do you mean refresh rate? That's separate from the physics step used to calculate things that must happen at fixed intervals.The default is 60 which is trivial, unless you're doing something insane - attempting 120 is fine and if there are skipped steps it will just slow physics calculations that may effect what's seen on screen. As you're already asking the engine calculate physics above its default, there's margin for error.

As with anything, your individual game results may vary and you're just going to have to try it if it is an important factor of your game.

I can't test it myself as I only have one PC and it runs the game at approx. 150fps on average and my display refresh rate is 240hz so things are nice and smooth.

You can both lower your physical monitor framerate (in OS' monitor settings) and simulate low end computer, by introducing delay in Godot's CLI debug options godot --frame-delay 123

1 Answer

0 votes

Using physics FPS greater than rendering FPS works just fine, at least until you reach a framerate lower than physics_fps / 8. If the rendering framerate reaches a lower value, then the game will appear to slow down because only 8 physics ticks may be run per rendered frame (this is currently hardcoded).

For instance, if you set Physics Fps to 240 in the Project Settings, the game will still run at the intended speed at framerates greater than or equal to 30.

by (12,908 points)
Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.