The Godot Q&A is currently undergoing maintenance!

Your ability to ask and answer questions is temporarily disabled. You can browse existing threads in read-only mode.

We are working on bringing this community platform back to its full functionality, stay tuned for updates.

godotengine.org | Twitter

–1 vote

I started game on another slowish PC, and turned everything off, I have 190k tris without shaders and game runs at 20 fps but cpu and gpu are nowhere near 100% load

in Engine by (138 points)

What are the specifications (CPU, graphics card, screen resolution) of the PC you're getting low FPS on?

1 Answer

0 votes

Make sure that nothing arbitrarily limits your fps, like VSync or the Force Fps in the project settings.

When you see that Godot is using 60% of your CPU, it doesn't mean that it is not using it as much as it could. Your CPU is made of multiple cores, and any program can only use so many at once. If you want Godot to better share the work among your different CPU cores, you can try to set Rendering/Threads/Thread Model to Multi-Threaded.
Also, if you manage to isolate a specific task that takes a lot of time, you can put it on its own Thread. Threads do not necessarily run on different cores from one another, but you are explicitly telling your operating system that it may do so.

Finally, there can be various bottlenecks. If the program is waiting for your storage, the system runs low on RAM, etc, then you will see big slowdowns, even if your program seems idle CPU-wise.

by (2,720 points)

See also the Optimization tutorials in the documentation.

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.