Threads
Thread is short for thread execution. It is a way for a program to divide itself into two or more simultaneously running tasks.
Threads are a form of concurrent processing, often referred to as multi-tasking. They are used to balance the processing power across CPU’s and cores.
Concurrency is when the execution of multiple tasks is interleaved. Compared to being executed sequentially one after another.
To create a thread, you will need to instantiate a class from the Thread
global class.
To start a thread, you will need to use the threads start
method.
var thread = Thread.new()
thread.start(<Object Instance>, <String Method>)
Resources
Github Project:
Godot Tutorials Resources