• Home
  • News
  • Software
  • Knowledge
  • MMO
  • Tips
  • Security
  • Network
  • Office
AnonyViet - English Version
  • Home
  • News
  • Software
  • Knowledge
  • MMO
  • Tips
  • Security
  • Network
  • Office
No Result
View All Result
  • Home
  • News
  • Software
  • Knowledge
  • MMO
  • Tips
  • Security
  • Network
  • Office
No Result
View All Result
AnonyViet - English Version
No Result
View All Result

[Lập Trình Game] Display FPS for games using Godot Engine

AnonyViet by AnonyViet
February 2, 2023
in Tips
0

FPS (frames per second) aka frames per second. The more frames your computer displays in a second, the smoother the game will be. FPS depends on network speed and computer hardware. To display the FPS of the Game programmed by you with Godot Engine, please follow the instructions below.

Join the channel Telegram belong to AnonyViet 👉 Link 👈

Display FPS for games using Godot Engine

FPS

First of all, you have to create 2 Nodes for yourself CanvasLayer and label. Label is a child node of canvaslayer

And I renamed the label -> fps label

Display FPS for games using Godot Engine

You create yourself a script in Node World

In the declaration section, you declare yourself as follows:

onready var fps_label = get_node("CanvasLayer/fps_label")

get_node() is to get your node address

onready var is to declare a variable that is always available eg like this:

  • The normal var is a gun without ammo
  • Onready var is a gun that is ready to be loaded
  • Declare var in _physical_process then only when physical_process works then var it works

Add yourself a function func _process(delta):

_process(delta): is the function called on every idle frame

_ physical _process: is 1 function call on every physical frame

You can look it up in godot’s documentation: https://docs.godotengine.org/en/3.0/classes/class_node.html#class-node-process

And if you use the function _process(delta): you need to enable it in func _ready function with command set_process(true)

And back to the main part.

LIVE _process you guys type yourself

programming code to display FPS Godot Engine

func _process(delta):

fps_label.set_text("FPS: " + str(Engine.get_frames_per_second()))

After typing and running the game, the fps will be displayed

[Lập Trình Game] Display FPS for games using Godot Engine

Note: You have to change the position of the label if you want to see the fps

And you can also print FPS to debug by the following way

Project > Project Setting > Find FPS > click Debug Settings > Click Print FPS On > run the game and notice the debug will see the fps displayed

debug game godot engine

The article achieved: 5/5 – (100 votes)

Tags: displayEngineFPSGamegamesGodotlậptrình
Previous Post

[Lập Trình Game] Lesson 9: Create MENU for Game when programming with Godot

Next Post

AV VoizGame v6 Full Key – Voice changer software for Gamers

AnonyViet

AnonyViet

Related Posts

How to record reaction videos with Android phones, no app needed
Tips

How to record reaction videos with Android phones, no app needed

June 1, 2026
Instructions on how to get Google AI Pro 1 year for free for new accounts
Tips

Instructions on how to get Google AI Pro 1 year for free for new accounts

June 1, 2026
Top free AI tools to help write, test and optimize content
Tips

Top free AI tools to help write, test and optimize content

June 1, 2026
Instructions for receiving Lovable Pro 12 months for free
Tips

Instructions for receiving Lovable Pro 12 months for free

May 29, 2026
Instructions for receiving 1 month of ElevenLabs Creator for free worth
Tips

Instructions for receiving 1 month of ElevenLabs Creator for free worth $22

May 25, 2026
How to create beautiful studio-like preschool graduation photos for your child
Tips

How to create beautiful studio-like preschool graduation photos for your child

May 21, 2026
Next Post
AV VoizGame v6 Full Key – Voice changer software for Gamers

AV VoizGame v6 Full Key - Voice changer software for Gamers

0 0 votes
Article Rating
Subscribe
Login
Notify of
guest

guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments

Recent News

Instructions on how to prevent acquaintances from seeing your Tiktok

Instructions on how to prevent acquaintances from seeing your Tiktok

June 2, 2026
How to record reaction videos with Android phones, no app needed

How to record reaction videos with Android phones, no app needed

June 1, 2026
Instructions on how to get Google AI Pro 1 year for free for new accounts

Instructions on how to get Google AI Pro 1 year for free for new accounts

June 1, 2026
Top free AI tools to help write, test and optimize content

Top free AI tools to help write, test and optimize content

June 1, 2026
Instructions on how to prevent acquaintances from seeing your Tiktok

Instructions on how to prevent acquaintances from seeing your Tiktok

June 2, 2026
How to record reaction videos with Android phones, no app needed

How to record reaction videos with Android phones, no app needed

June 1, 2026
Instructions on how to get Google AI Pro 1 year for free for new accounts

Instructions on how to get Google AI Pro 1 year for free for new accounts

June 1, 2026
AnonyViet - English Version

AnonyViet

AnonyViet is a website share knowledge that you have never learned in school!

We are ready to welcome your comments, as well as your articles sent to AnonyViet.

Follow Us

Contact:

Email: anonyviet.com[@]gmail.com

Main Website: https://anonyviet.com

Recent News

Instructions on how to prevent acquaintances from seeing your Tiktok

Instructions on how to prevent acquaintances from seeing your Tiktok

June 2, 2026
How to record reaction videos with Android phones, no app needed

How to record reaction videos with Android phones, no app needed

June 1, 2026
No Result
View All Result
  • Home
  • News
  • Software
  • Knowledge
  • MMO
  • Tips
  • Security
  • Network
  • Office

wpDiscuz
0
0
Would love your thoughts, please comment.x
()
x
| Reply