How to make FrameRate faster

The above comment about the frame rate function is where you should look first, but there is some nuance. If the frame rate function worked, then you don’t need to read further.
(for Java) Depending on your renderer, your frame rate may be limited. If you are using P2D or P3D in a window, your frame rate will be limited to the refresh rate of your monitor, which is commonly 60 fps. If you are using the Java2D (default) renderer or using Fullscreen, there is no frame rate cap besides what your hardware can handle.
This information comes from here.

4 Likes