A built-in type for strings. Description: This is the built-in string Variant type (and the one used by GDScript). Strings may contain any number of Unicode characters, and expose methods useful fo...| 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
A color represented in RGBA format. Description: A color represented in RGBA format by a red ( r), green ( g), blue ( b), and alpha ( a) component. Each component is a 32-bit floating-point value, ...| 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
Inherits: Object Inherited By: AnimationMixer, AudioStreamPlayer, CanvasItem, CanvasLayer, EditorFileSystem, EditorPlugin, EditorResourcePreview, HTTPRequest, InstancePlaceholder, MissingNode, Mult...| Godot Engine documentation
A built-in data structure that holds key-value pairs. Description: Dictionaries are associative containers that contain values referenced by unique keys. Dictionaries will preserve the insertion or...| Godot Engine documentation
Inherited By: AudioServer, CameraServer, ClassDB, DisplayServer, EditorFileSystemDirectory, EditorInterface, EditorPaths, EditorSelection, EditorUndoRedoManager, EditorVCSInterface, Engine, EngineD...| 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
A packed array of 64-bit integers. Description: An array specifically designed to hold 64-bit integer values. Packs data tightly, so it saves memory for large array sizes. Note: This type stores si...| Godot Engine documentation
A built-in type for integers. Description: Signed 64-bit integer type. This means that it can take values from-2^63 to 2^63 - 1, i.e. from-9223372036854775808 to 9223372036854775807. When it exceed...| Godot Engine documentation
A built-in type for floating-point numbers. Description: The float built-in type is a 64-bit double-precision floating-point number, equivalent to double in C++. This type has 14 reliable decimal d...| Godot Engine documentation
A built-in type representing a method or a standalone function. Description: Callable is a built-in Variant type that represents a function. It can either be a method within an Object instance, or ...| Godot Engine documentation