Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ env:
# Only used for the cache key. Increment version to force clean build.
GODOT_BASE_BRANCH: master
# Used to select the version of Redot to run the tests with.
REDOT_TEST_VERSION: master
REDOT_TEST_VERSION: 4.4-alpha.2
# Use UTF-8 on Linux.
LANG: en_US.UTF-8
LC_ALL: en_US.UTF-8
Expand Down
82 changes: 71 additions & 11 deletions gdextension/extension_api.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
"version_minor": 4,
"version_patch": 0,
"version_status": "alpha",
"version_status_version": 0,
"version_build": "custom_build",
"version_full_name": "Redot Engine v4.4.alpha.custom_build"
"version_status_version": 2,
"version_build": "official",
"version_full_name": "Redot Engine v4.4.alpha.2.official"
},
"header": {
"version_major": 4,
"version_minor": 3,
"version_minor": 4,
"version_patch": 1,
"version_status": "dev",
"version_build": "redot.custom_build",
"version_full_name": "Godot Engine v4.3.1.dev.redot.custom_build"
"version_status": "stable",
"version_build": "redot.official",
"version_full_name": "Godot Engine v4.4.1.stable.redot.official"
},
"builtin_class_sizes": [
{
Expand Down Expand Up @@ -166128,6 +166128,10 @@
"name": "NOTIFICATION_VP_MOUSE_EXIT",
"value": 1011
},
{
"name": "NOTIFICATION_WM_POSITION_CHANGED",
"value": 1012
},
{
"name": "NOTIFICATION_OS_MEMORY_WARNING",
"value": 2009
Expand Down Expand Up @@ -174938,7 +174942,7 @@
"is_refcounted": false,
"is_instantiable": true,
"inherits": "PanelContainer",
"api_type": "core",
"api_type": "editor",
"methods": [
{
"name": "get_binding_modifier",
Expand Down Expand Up @@ -177171,14 +177175,14 @@
"is_refcounted": false,
"is_instantiable": true,
"inherits": "OpenXRInteractionProfileEditorBase",
"api_type": "core"
"api_type": "editor"
},
{
"name": "OpenXRInteractionProfileEditorBase",
"is_refcounted": false,
"is_instantiable": false,
"inherits": "HBoxContainer",
"api_type": "core",
"api_type": "editor",
"methods": [
{
"name": "setup",
Expand Down Expand Up @@ -219010,8 +219014,64 @@
"value": 217
},
{
"name": "DATA_FORMAT_MAX",
"name": "DATA_FORMAT_ASTC_4x4_SFLOAT_BLOCK",
"value": 218
},
{
"name": "DATA_FORMAT_ASTC_5x4_SFLOAT_BLOCK",
"value": 219
},
{
"name": "DATA_FORMAT_ASTC_5x5_SFLOAT_BLOCK",
"value": 220
},
{
"name": "DATA_FORMAT_ASTC_6x5_SFLOAT_BLOCK",
"value": 221
},
{
"name": "DATA_FORMAT_ASTC_6x6_SFLOAT_BLOCK",
"value": 222
},
{
"name": "DATA_FORMAT_ASTC_8x5_SFLOAT_BLOCK",
"value": 223
},
{
"name": "DATA_FORMAT_ASTC_8x6_SFLOAT_BLOCK",
"value": 224
},
{
"name": "DATA_FORMAT_ASTC_8x8_SFLOAT_BLOCK",
"value": 225
},
{
"name": "DATA_FORMAT_ASTC_10x5_SFLOAT_BLOCK",
"value": 226
},
{
"name": "DATA_FORMAT_ASTC_10x6_SFLOAT_BLOCK",
"value": 227
},
{
"name": "DATA_FORMAT_ASTC_10x8_SFLOAT_BLOCK",
"value": 228
},
{
"name": "DATA_FORMAT_ASTC_10x10_SFLOAT_BLOCK",
"value": 229
},
{
"name": "DATA_FORMAT_ASTC_12x10_SFLOAT_BLOCK",
"value": 230
},
{
"name": "DATA_FORMAT_ASTC_12x12_SFLOAT_BLOCK",
"value": 231
},
{
"name": "DATA_FORMAT_MAX",
"value": 232
}
]
},
Expand Down
Loading