• 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

GDSCRIPT – Basic Godot Engine

AnonyViet by AnonyViet
November 1, 2024
in Tips
0

Hello friends! Continuing with the Ultimate Guide series Godot Engine. In today's article I will share with you about Godot Engine's GDScript. The article includes 2 parts: Basic GDScript and Object Orientation in GDScript. Before getting into part 1, let's start with a brief understanding of GDScript!

Join the channel Telegram belong to AnonyViet 👉 Link 👈

BRIEF ABOUT GDSCRIPT

GDScript is a high-level programming language. It uses similar syntax to Python (blocks are based on indentation and many keywords are similar). It is optimized and tightly integrated with Godot Engine, allowing great flexibility for creating and integrating game content. If you are familiar with Python, coding with GDScript is extremely easy!

GDSCRIPT - Basic Godot Engine

BASIC GDSCRIPT

1. Structure of a script.gd

GDSCRIPT – Basic Godot Engine

extends Node # Khai báo kế thừa. Phải kế thừa đúng tên lớp (tên Node) mà bạn sử dụng.

var a = 0 # Biến toàn cục

var b = 0 # Biến toàn cục

func _ready(): # Hàm

.     var c = a + b # Biến cục bộ

2. BASIC GDSCRIPT

Main functions on GDScript

extends Node

func _init(): #Thực thi một lần duy nhất khi khởi chạy chương trình.

.     pass

func _ready(): #Thực thi một lần duy nhất khi Node sẵn sàng hoạt động.

.     pass

func _process(delta): #Hàm luôn thực thi lặp lại trong mỗi thời gian delta bằng nhau (không phùhợp cho các hoạt động vật lí)

.     pass

func _physics_process(delta): #Hàm thực thi lặp lại trong mỗi thời gian delta tăng dần (thích hợpcho hoạt động vật lí)

.     pass

Debug print command on Console window

func _ready():

.     var a = 4

.     print(a);

.     print("\nHello World")

Output:

4

Hello Word

Data types, variables, constants and declarations

Data types on GDScript are similar to those on Python, with two types: primitive types (without capitalizing the first letter) and class types (with the first letter capitalized).

extends Node

#var : [kiểu dữ liệu] (có thể "=" để gán giá trị trực tiếp mà không cần khai báo kiểu dữ kiệu (ép kiểu ngầm))

var a = 4

var a: int = 4

var a

a = 4

#các kiểu khai báo trên là tương tự như nhau. Ngoài ra ta còn có thể khai báo var a:=4.

const a = 4 #khai báo hằng. Lưu ý phải gán giá trị cho hằng.

var ab = Vecto2(0,0) # Biến kiểu lớp

var arr = [1, 2, 3] #khai báo mảng

var d = {2: 3, 4: "Hello"} #khai báo từ điển

Conditional structure IF…THEN…ELSE

func _ready():

#     if(<điều kiện>):

#          [tập lệnh phía sau dấu tab phải thẳng hàng]

#     else:

#          [tập lệnh phía sau dấu tab phải thẳng hàng]

.     var a = false

.     var b = 0

.     if(a):

.          b = 1

.     else:

.          b = 2

Match structure

func _ready():

.     var a = 0

.     Match(a):

.          1:

.               [tập lệnh phía sau dấu tab phải thẳng hàng]

.          2:

.               [tập lệnh phía sau dấu tab phải thẳng hàng]

For loop

func _ready():

.     for i in 5:

.          [tập lệnh phía sau dấu tab phải thẳng hàng]

.     for i in range(5):

.          [tập lệnh phía sau dấu tab phải thẳng hàng]

#i chạy từ 0 đến 5-1

While loop

func _ready():

.     while(<điều kiện>):

.          [tập lệnh phía sau dấu tab phải thẳng hàng]

OBJECT ORIENTATION IN GDSCRIPT

Creating and using classes are two essential tasks in object-oriented programming. Below is the formula for creating and using the class on GDScript.

Create class

Build properties (variables) and methods (initialization functions for objects)

class Math: #tên lớp

.      var total #thuộc tính

.      static func _sum(a: int, b: int) -> int: #phương thức

.          return a+b

Use class (create object corresponding to class)

#var = preload("đường dẫn script")

var MathGD = preload("Math.gd")

func _ready():

#     var = ..new()

.     var a = MathGD.Math.new()

.     print(a.sum(1,2))

Output: 3

In addition, we can also use classes using inheritance with extends. Note: If you create a class that inherits the default class in Godot, there is script uses class must be assigned Node has the same type as the class you previously instantiated and used.

In today's article, I introduced and shared with you basic GDScript on Godot Engine. If you have any questions, please leave a comment or suggestion! To better understand, you can refer to the basic videos at https://www.youtube.com/playlist?list=PLOk8LhtEwUVn8e3RUfk-rX_RB3f9_ulYg. Thank you for following the article! ?

Previous Post

7 reasons why sales staff become an indispensable part of businesses

Next Post

How to skip the Microsoft login step when installing Windows 11

AnonyViet

AnonyViet

Related Posts

Windows 7/8.1/10 users will be upgraded to Windows 11 for free
Tips

Windows 7/8.1/10 users will be upgraded to Windows 11 for free

July 30, 2026
Instructions for receiving ChatGPT Plus for 1 month for free in 2026
Tips

Instructions for receiving ChatGPT Plus for 1 month for free in 2026

July 28, 2026
Some reasons I don’t like Windows 11
Tips

Some reasons I don’t like Windows 11

July 27, 2026
Instructions on how to get free Facebook white ticks
Tips

Instructions on how to get free Facebook white ticks

July 27, 2026
Collection of Windows 11 wallpapers for computers and phones
Tips

Collection of Windows 11 wallpapers for computers and phones

July 26, 2026
Don’t install leaked Windows 11
Tips

Don’t install leaked Windows 11

July 25, 2026
Next Post
How to skip the Microsoft login step when installing Windows 11

How to skip the Microsoft login step when installing Windows 11

0 0 votes
Article Rating
Subscribe
Login
Notify of
guest

guest

0 Comments
Oldest
Newest Most Voted

Recent News

Windows 7/8.1/10 users will be upgraded to Windows 11 for free

Windows 7/8.1/10 users will be upgraded to Windows 11 for free

July 30, 2026
Instructions for receiving the free Certified LLM Security Expert certificate

Instructions for receiving the free Certified LLM Security Expert certificate

July 30, 2026
MSI laptops are not just for gamers: Which line is suitable for students, office workers and creative people?

MSI laptops are not just for gamers: Which line is suitable for students, office workers and creative people?

July 29, 2026
What is quantum resistant cryptography? Why must the Internet change?

What is quantum resistant cryptography? Why must the Internet change?

July 29, 2026
Windows 7/8.1/10 users will be upgraded to Windows 11 for free

Windows 7/8.1/10 users will be upgraded to Windows 11 for free

July 30, 2026
Instructions for receiving the free Certified LLM Security Expert certificate

Instructions for receiving the free Certified LLM Security Expert certificate

July 30, 2026
MSI laptops are not just for gamers: Which line is suitable for students, office workers and creative people?

MSI laptops are not just for gamers: Which line is suitable for students, office workers and creative people?

July 29, 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

Windows 7/8.1/10 users will be upgraded to Windows 11 for free

Windows 7/8.1/10 users will be upgraded to Windows 11 for free

July 30, 2026
Instructions for receiving the free Certified LLM Security Expert certificate

Instructions for receiving the free Certified LLM Security Expert certificate

July 30, 2026
  • Home
  • Home 2
  • Home 3
  • Home 4
  • Home 5
  • Home 6
  • Next Dest Page
  • Sample Page

say88 tỷ lệ kèo nhà cái kèo nhà cái 5 febet

No Result
View All Result
  • Home
  • News
  • Software
  • Knowledge
  • MMO
  • Tips
  • Security
  • Network
  • Office

say88 tỷ lệ kèo nhà cái kèo nhà cái 5 febet

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