Compare commits

...

4 Commits

Author SHA1 Message Date
George Marques
75d6c51496 Update files to Godot 3.1.2-stable 2021-01-12 14:56:51 -03:00
Bastiaan Olij
98ee82599d Fixed upstream issue with api.json and json is now sorted 2019-05-02 22:54:39 +10:00
Bastiaan Olij
be9e5aeafd Updated to Godot 3.1.1 2019-05-02 21:35:45 +10:00
Bastiaan Olij
489db2761c Fixed empty types 2019-04-07 17:56:48 +10:00
2 changed files with 156252 additions and 155213 deletions

311459
api.json

File diff suppressed because it is too large Load Diff

View File

@@ -67,7 +67,7 @@ extern "C" {
////// Error
typedef enum {
GODOT_OK,
GODOT_OK, // (0)
GODOT_FAILED, ///< Generic fail error
GODOT_ERR_UNAVAILABLE, ///< What is requested is unsupported/unavailable
GODOT_ERR_UNCONFIGURED, ///< The object being used hasn't been properly set up yet
@@ -97,12 +97,12 @@ typedef enum {
GODOT_ERR_CONNECTION_ERROR,
GODOT_ERR_CANT_ACQUIRE_RESOURCE,
GODOT_ERR_CANT_FORK,
GODOT_ERR_INVALID_DATA, ///< Data passed is invalid (30)
GODOT_ERR_INVALID_DATA, ///< Data passed is invalid (30)
GODOT_ERR_INVALID_PARAMETER, ///< Parameter passed is invalid
GODOT_ERR_ALREADY_EXISTS, ///< When adding, item already exists
GODOT_ERR_DOES_NOT_EXIST, ///< When retrieving/erasing, it item does not exist
GODOT_ERR_DATABASE_CANT_READ, ///< database is full
GODOT_ERR_DATABASE_CANT_WRITE, ///< database is full (35)
GODOT_ERR_DATABASE_CANT_WRITE, ///< database is full (35)
GODOT_ERR_COMPILATION_FAILED,
GODOT_ERR_METHOD_NOT_FOUND,
GODOT_ERR_LINK_FAILED,