Skip to content

Commit

Permalink
Sync with tag redot-4.3-beta.2 (Redot-Engine/redot-engine@92225b3)
Browse files Browse the repository at this point in the history
  • Loading branch information
Spartan322 committed Oct 31, 2024
1 parent c6246a1 commit e3a3d4c
Show file tree
Hide file tree
Showing 2 changed files with 178 additions and 4 deletions.
176 changes: 174 additions & 2 deletions gdextension/extension_api.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
"version_major": 4,
"version_minor": 3,
"version_patch": 0,
"version_status": "stable",
"version_status": "beta",
"version_status_version": 2,
"version_build": "official",
"version_full_name": "Godot Engine v4.3.stable.official"
"version_full_name": "Redot Engine v4.3.beta.2.official"
},
"builtin_class_sizes": [
{
Expand Down Expand Up @@ -26339,6 +26340,33 @@
"type": "bool"
}
},
{
"name": "set_max_traversals",
"is_const": false,
"is_vararg": false,
"is_static": false,
"is_virtual": false,
"hash": 1286410249,
"arguments": [
{
"name": "max_traversals",
"type": "int",
"meta": "int64"
}
]
},
{
"name": "get_max_traversals",
"is_const": true,
"is_vararg": false,
"is_static": false,
"is_virtual": false,
"hash": 3905245786,
"return_value": {
"type": "int",
"meta": "int64"
}
},
{
"name": "set_diagonal_mode",
"is_const": false,
Expand Down Expand Up @@ -26652,6 +26680,12 @@
"setter": "set_jumping_enabled",
"getter": "is_jumping_enabled"
},
{
"type": "int",
"name": "max_traversals",
"setter": "set_max_traversals",
"getter": "get_max_traversals"
},
{
"type": "int",
"name": "default_compute_heuristic",
Expand Down Expand Up @@ -92577,6 +92611,17 @@
"type": "Dictionary"
}
},
{
"name": "get_godot_compatible_version_info",
"is_const": true,
"is_vararg": false,
"is_static": false,
"is_virtual": false,
"hash": 3102165223,
"return_value": {
"type": "Dictionary"
}
},
{
"name": "get_author_info",
"is_const": true,
Expand All @@ -92588,6 +92633,17 @@
"type": "Dictionary"
}
},
{
"name": "get_godot_author_info",
"is_const": true,
"is_vararg": false,
"is_static": false,
"is_virtual": false,
"hash": 3102165223,
"return_value": {
"type": "Dictionary"
}
},
{
"name": "get_copyright_info",
"is_const": true,
Expand All @@ -92610,6 +92666,17 @@
"type": "Dictionary"
}
},
{
"name": "get_godot_donor_info",
"is_const": true,
"is_vararg": false,
"is_static": false,
"is_virtual": false,
"hash": 3102165223,
"return_value": {
"type": "Dictionary"
}
},
{
"name": "get_license_info",
"is_const": true,
Expand Down Expand Up @@ -145865,6 +145932,31 @@
"type": "bool"
}
},
{
"name": "set_navigation_map",
"is_const": false,
"is_vararg": false,
"is_static": false,
"is_virtual": false,
"hash": 2722037293,
"arguments": [
{
"name": "navigation_map",
"type": "RID"
}
]
},
{
"name": "get_navigation_map",
"is_const": true,
"is_vararg": false,
"is_static": false,
"is_virtual": false,
"hash": 2944877500,
"return_value": {
"type": "RID"
}
},
{
"name": "set_bidirectional",
"is_const": false,
Expand Down Expand Up @@ -146197,6 +146289,31 @@
"type": "bool"
}
},
{
"name": "set_navigation_map",
"is_const": false,
"is_vararg": false,
"is_static": false,
"is_virtual": false,
"hash": 2722037293,
"arguments": [
{
"name": "navigation_map",
"type": "RID"
}
]
},
{
"name": "get_navigation_map",
"is_const": true,
"is_vararg": false,
"is_static": false,
"is_virtual": false,
"hash": 2944877500,
"return_value": {
"type": "RID"
}
},
{
"name": "set_bidirectional",
"is_const": false,
Expand Down Expand Up @@ -156628,6 +156745,19 @@
}
]
},
{
"name": "_unhandled_picking_input",
"is_const": false,
"is_static": false,
"is_vararg": false,
"is_virtual": true,
"arguments": [
{
"name": "event",
"type": "InputEvent"
}
]
},
{
"name": "print_orphan_nodes",
"is_const": false,
Expand Down Expand Up @@ -157527,6 +157657,31 @@
"type": "bool"
}
},
{
"name": "set_process_unhandled_picking_input",
"is_const": false,
"is_vararg": false,
"is_static": false,
"is_virtual": false,
"hash": 2586408642,
"arguments": [
{
"name": "enable",
"type": "bool"
}
]
},
{
"name": "is_processing_unhandled_picking_input",
"is_const": true,
"is_vararg": false,
"is_static": false,
"is_virtual": false,
"hash": 36873697,
"return_value": {
"type": "bool"
}
},
{
"name": "set_process_mode",
"is_const": false,
Expand Down Expand Up @@ -231816,6 +231971,23 @@
"is_vararg": false,
"is_virtual": true
},
{
"name": "_reload_scripts",
"is_const": false,
"is_static": false,
"is_vararg": false,
"is_virtual": true,
"arguments": [
{
"name": "scripts",
"type": "Array"
},
{
"name": "soft_reload",
"type": "bool"
}
]
},
{
"name": "_reload_tool_script",
"is_const": false,
Expand Down
6 changes: 4 additions & 2 deletions gdextension/gdextension_interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
/* gdextension_interface.h */
/**************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
/* REDOT ENGINE */
/* https://redotengine.org */
/**************************************************************************/
/* Copyright (c) 2024-present Redot Engine contributors */
/* (see REDOT_AUTHORS.md) */
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
/* */
Expand Down

0 comments on commit e3a3d4c

Please sign in to comment.