This page explains how file paths work inside Godot projects. You will learn how to access paths in your projects using the res:// and user:// notations, and where Godot stores project and editor f...| Godot Engine documentation
Inherits: RefCounted< Object Provides methods for file reading and writing operations. Description: This class can be used to permanently store data in the user device's file system and to read fro...| Godot Engine documentation
Inherits: MainLoop< Object Manages the game loop via a hierarchy of nodes. Description: As one of the most important classes, the SceneTree manages the hierarchy of nodes in a scene, as well as sce...| Godot Engine documentation
A packed array of bytes. Description: An array specifically designed to hold bytes. Packs data tightly, so it saves memory for large array sizes. PackedByteArray also provides methods to encode/dec...| Godot Engine documentation
Global scope constants and functions. Description: A list of global scope enumerated constants and built-in functions. This is all that resides in the globals, constants regarding error codes, keyc...| Godot Engine documentation
A built-in type for unique strings. Description: StringName s are immutable strings designed for general-purpose representation of unique names (also called "string interning"). Two StringName s wi...| Godot Engine documentation
Built-in GDScript constants, functions, and annotations. Description: A list of utility functions and annotations accessible from any script written in GDScript. For the list of global functions an...| Godot Engine documentation
A built-in data structure that holds a sequence of elements. Description: An array data structure that can contain a sequence of elements of any Variant type. Elements are accessed by a numerical i...| Godot Engine documentation
Inherits: RefCounted< Object A unit of execution in a process. Description: A unit of execution in a process. Can run methods on Object s simultaneously. The use of synchronization via Mutex or Sem...| Godot Engine documentation