Unreal Tutorial·

How to show FPS in Unreal Engine

Learn how to display FPS in your Unreal Engine game

There is a simple way to show number of FPS inside UE editor:

  • Press a ~ button on your keyboard. It is located on top left of keyboard, under Esc key
  • Type in: stat FPS Done!

In Unreal Engine 5, it is possible to enable FPS by clicking a checkbox

  • Find an eye icon in your editor: Position of eye icon in Unreal Engine editor.
  • After clicking the eye icon, go to Viewport Stats -> FPS Enable FPS display checkbox in unreal engine 5

What if I want FPS to be visible in development builds, always on start?

In this case, you can create a simple Blueprint, that will run stat FPS command every time when the game starts. This is very useful, for example when you are running game on mobile. Here is the blueprint set up.

  • Create this Blueprint and drop it to your scene (or plug this to existing object on your scene). Screenshot of how to create new blueprint in Unreal Engine
  • Select Actor as Parent class Screenshot of selecting Actor class while creating new Blueprint in Unreal Engine
  • Give your Blueprint name, like FpsDisplayer
  • Go to Event Graph tab Screenshot of Event Graph tab in Unreal blueprint editor, with blue arrow pointing to it
  • Drag a connection from BeginPlay pin, and then type Execture in the search bar. Pick Exectute console command Screenshot of creating new node in UE blueprint editor with execute console command
  • Type stat fps in command field Screenshot of typing stat fps command in the blueprint execute command node console
  • Compile and save the Blueprint Screenshot of a button to compile a blueprint
  • Drag the Blueprint into your scene Screenshot of our blueprint that we need to drag to scene

Done! Now FPS will be displayed in your game development build

  • Make sure that there is only one Blueprint on scene with these nodes, otherwise your command might turn on then off again.

Would you like your FPS to be higher?

You might be interested in our tool that helps you improve frame rate, focused on simplicity of use: FPSify tool