• 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 change the default font on Windows 10
Tips

How to change the default font on Windows 10

April 13, 2026
5 tips for using a Browser to replace an App (helps save RAM, time and money)
Tips

5 tips for using a Browser to replace an App (helps save RAM, time and money)

April 13, 2026
How to make funny MeMe photos without Photoshop within 10 seconds
Tips

How to make funny MeMe photos without Photoshop within 10 seconds

April 11, 2026
How to quickly design your own Logo without Photoshop
Tips

How to quickly design your own Logo without Photoshop

April 10, 2026
How to convert Website into App on Windows
Tips

How to convert Website into App on Windows

April 9, 2026
Instructions for getting 3 months of Adobe Express Pro for free
Tips

Instructions for getting 3 months of Adobe Express Pro for free

April 9, 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

How to add Watermark to Google Docs to protect copyright

How to add Watermark to Google Docs to protect copyright

April 19, 2026
How to intercept traffic using Burp Suite to analyze HTTP/HTTPS

How to intercept traffic using Burp Suite to analyze HTTP/HTTPS

April 18, 2026
How to avoid Adblock detection on Youtube with 4 good tips

How to avoid Adblock detection on Youtube with 4 good tips

April 17, 2026
How to transfer ChatGPT data to Claude is extremely simple

How to transfer ChatGPT data to Claude is extremely simple

April 16, 2026
How to add Watermark to Google Docs to protect copyright

How to add Watermark to Google Docs to protect copyright

April 19, 2026
How to intercept traffic using Burp Suite to analyze HTTP/HTTPS

How to intercept traffic using Burp Suite to analyze HTTP/HTTPS

April 18, 2026
How to avoid Adblock detection on Youtube with 4 good tips

How to avoid Adblock detection on Youtube with 4 good tips

April 17, 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

How to add Watermark to Google Docs to protect copyright

How to add Watermark to Google Docs to protect copyright

April 19, 2026
How to intercept traffic using Burp Suite to analyze HTTP/HTTPS

How to intercept traffic using Burp Suite to analyze HTTP/HTTPS

April 18, 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