mirror of
https://github.com/godotengine/godot-cpp.git
synced 2026-01-01 05:48:37 +03:00
Compare commits
7 Commits
godot-4.0.
...
4.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
65dc2f1265 | ||
|
|
469d65d951 | ||
|
|
597ae98f44 | ||
|
|
c8096d4668 | ||
|
|
2fdac1c9a9 | ||
|
|
d479df19f7 | ||
|
|
3a9118cb0d |
35
.github/workflows/ci.yml
vendored
35
.github/workflows/ci.yml
vendored
@@ -48,7 +48,7 @@ jobs:
|
||||
cache-name: windows-x86_64-mingw
|
||||
|
||||
- name: 🍎 macOS (universal)
|
||||
os: macos-11
|
||||
os: macos-latest
|
||||
platform: macos
|
||||
artifact-name: godot-cpp-macos-universal-release
|
||||
artifact-path: bin/libgodot-cpp.macos.template_release.universal.a
|
||||
@@ -60,11 +60,12 @@ jobs:
|
||||
platform: android
|
||||
artifact-name: godot-cpp-android-arm64-release
|
||||
artifact-path: bin/libgodot-cpp.android.template_release.arm64.a
|
||||
flags: ANDROID_NDK_ROOT=$ANDROID_NDK_LATEST_HOME arch=arm64
|
||||
flags: arch=arm64
|
||||
run-tests: false
|
||||
cache-name: android-arm64
|
||||
|
||||
- name: 🍏 iOS (arm64)
|
||||
os: macos-11
|
||||
os: macos-latest
|
||||
platform: ios
|
||||
artifact-name: godot-cpp-ios-arm64-release
|
||||
artifact-path: bin/libgodot-cpp.ios.template_release.arm64.a
|
||||
@@ -73,6 +74,8 @@ jobs:
|
||||
|
||||
env:
|
||||
SCONS_CACHE: ${{ github.workspace }}/.scons-cache/
|
||||
EM_VERSION: 3.1.39
|
||||
EM_CACHE_FOLDER: "emsdk-cache"
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
@@ -91,19 +94,29 @@ jobs:
|
||||
with:
|
||||
python-version: '3.x'
|
||||
|
||||
- name: Linux dependencies
|
||||
if: ${{ matrix.platform == 'linux' }}
|
||||
run: |
|
||||
sudo apt-get update -qq
|
||||
sudo apt-get install -qqq build-essential pkg-config
|
||||
- name: Android dependencies
|
||||
if: ${{ matrix.platform == 'android' }}
|
||||
uses: nttld/setup-ndk@v1
|
||||
with:
|
||||
ndk-version: r23c
|
||||
link-to-sdk: true
|
||||
|
||||
- name: Install scons
|
||||
run: |
|
||||
python -m pip install scons==4.0.0
|
||||
- name: Web dependencies
|
||||
if: ${{ matrix.platform == 'web' }}
|
||||
uses: mymindstorm/setup-emsdk@v13
|
||||
with:
|
||||
version: ${{env.EM_VERSION}}
|
||||
actions-cache-folder: ${{env.EM_CACHE_FOLDER}}
|
||||
|
||||
- name: Setup MinGW for Windows/MinGW build
|
||||
if: ${{ matrix.platform == 'windows' && matrix.flags == 'use_mingw=yes' }}
|
||||
uses: egor-tensin/setup-mingw@v2
|
||||
with:
|
||||
version: 12.2.0
|
||||
|
||||
- name: Install scons
|
||||
run: |
|
||||
python -m pip install scons==4.0.0
|
||||
|
||||
- name: Generate godot-cpp sources only
|
||||
run: |
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
"header": {
|
||||
"version_major": 4,
|
||||
"version_minor": 0,
|
||||
"version_patch": 2,
|
||||
"version_patch": 4,
|
||||
"version_status": "stable",
|
||||
"version_build": "official",
|
||||
"version_full_name": "Godot Engine v4.0.2.stable.official"
|
||||
"version_full_name": "Godot Engine v4.0.4.stable.official"
|
||||
},
|
||||
"builtin_class_sizes": [
|
||||
{
|
||||
@@ -12366,7 +12366,7 @@
|
||||
"hash": 88913544,
|
||||
"arguments": [
|
||||
{
|
||||
"name": "with",
|
||||
"name": "to",
|
||||
"type": "Vector4"
|
||||
}
|
||||
]
|
||||
@@ -108638,6 +108638,14 @@
|
||||
{
|
||||
"name": "COMPRESS_BPTC",
|
||||
"value": 3
|
||||
},
|
||||
{
|
||||
"name": "COMPRESS_ASTC",
|
||||
"value": 4
|
||||
},
|
||||
{
|
||||
"name": "COMPRESS_MAX",
|
||||
"value": 5
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -127884,6 +127892,27 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "_get_packet_channel",
|
||||
"is_const": true,
|
||||
"is_static": false,
|
||||
"is_vararg": false,
|
||||
"is_virtual": true,
|
||||
"return_value": {
|
||||
"type": "int",
|
||||
"meta": "int32"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "_get_packet_mode",
|
||||
"is_const": true,
|
||||
"is_static": false,
|
||||
"is_vararg": false,
|
||||
"is_virtual": true,
|
||||
"return_value": {
|
||||
"type": "enum::MultiplayerPeer.TransferMode"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "_set_transfer_channel",
|
||||
"is_const": false,
|
||||
@@ -128033,6 +128062,16 @@
|
||||
"type": "bool"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "_is_server_relay_supported",
|
||||
"is_const": true,
|
||||
"is_static": false,
|
||||
"is_vararg": false,
|
||||
"is_virtual": true,
|
||||
"return_value": {
|
||||
"type": "bool"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "_get_connection_status",
|
||||
"is_const": true,
|
||||
@@ -128883,6 +128922,56 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "set_pathfinding_algorithm",
|
||||
"is_const": false,
|
||||
"is_vararg": false,
|
||||
"is_static": false,
|
||||
"is_virtual": false,
|
||||
"hash": 2783519915,
|
||||
"arguments": [
|
||||
{
|
||||
"name": "pathfinding_algorithm",
|
||||
"type": "enum::NavigationPathQueryParameters2D.PathfindingAlgorithm"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "get_pathfinding_algorithm",
|
||||
"is_const": true,
|
||||
"is_vararg": false,
|
||||
"is_static": false,
|
||||
"is_virtual": false,
|
||||
"hash": 3000421146,
|
||||
"return_value": {
|
||||
"type": "enum::NavigationPathQueryParameters2D.PathfindingAlgorithm"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "set_path_postprocessing",
|
||||
"is_const": false,
|
||||
"is_vararg": false,
|
||||
"is_static": false,
|
||||
"is_virtual": false,
|
||||
"hash": 2864409082,
|
||||
"arguments": [
|
||||
{
|
||||
"name": "path_postprocessing",
|
||||
"type": "enum::NavigationPathQueryParameters2D.PathPostProcessing"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "get_path_postprocessing",
|
||||
"is_const": true,
|
||||
"is_vararg": false,
|
||||
"is_static": false,
|
||||
"is_virtual": false,
|
||||
"hash": 3798118993,
|
||||
"return_value": {
|
||||
"type": "enum::NavigationPathQueryParameters2D.PathPostProcessing"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "set_path_metadata_flags",
|
||||
"is_const": false,
|
||||
@@ -129272,6 +129361,18 @@
|
||||
"setter": "set_navigation_layers",
|
||||
"getter": "get_navigation_layers"
|
||||
},
|
||||
{
|
||||
"type": "int",
|
||||
"name": "pathfinding_algorithm",
|
||||
"setter": "set_pathfinding_algorithm",
|
||||
"getter": "get_pathfinding_algorithm"
|
||||
},
|
||||
{
|
||||
"type": "int",
|
||||
"name": "path_postprocessing",
|
||||
"setter": "set_path_postprocessing",
|
||||
"getter": "get_path_postprocessing"
|
||||
},
|
||||
{
|
||||
"type": "int",
|
||||
"name": "path_metadata_flags",
|
||||
@@ -129721,6 +129822,56 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "set_pathfinding_algorithm",
|
||||
"is_const": false,
|
||||
"is_vararg": false,
|
||||
"is_static": false,
|
||||
"is_virtual": false,
|
||||
"hash": 394560454,
|
||||
"arguments": [
|
||||
{
|
||||
"name": "pathfinding_algorithm",
|
||||
"type": "enum::NavigationPathQueryParameters3D.PathfindingAlgorithm"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "get_pathfinding_algorithm",
|
||||
"is_const": true,
|
||||
"is_vararg": false,
|
||||
"is_static": false,
|
||||
"is_virtual": false,
|
||||
"hash": 3398491350,
|
||||
"return_value": {
|
||||
"type": "enum::NavigationPathQueryParameters3D.PathfindingAlgorithm"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "set_path_postprocessing",
|
||||
"is_const": false,
|
||||
"is_vararg": false,
|
||||
"is_static": false,
|
||||
"is_virtual": false,
|
||||
"hash": 2267362344,
|
||||
"arguments": [
|
||||
{
|
||||
"name": "path_postprocessing",
|
||||
"type": "enum::NavigationPathQueryParameters3D.PathPostProcessing"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "get_path_postprocessing",
|
||||
"is_const": true,
|
||||
"is_vararg": false,
|
||||
"is_static": false,
|
||||
"is_virtual": false,
|
||||
"hash": 3883858360,
|
||||
"return_value": {
|
||||
"type": "enum::NavigationPathQueryParameters3D.PathPostProcessing"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "set_path_metadata_flags",
|
||||
"is_const": false,
|
||||
@@ -130089,6 +130240,18 @@
|
||||
"setter": "set_navigation_layers",
|
||||
"getter": "get_navigation_layers"
|
||||
},
|
||||
{
|
||||
"type": "int",
|
||||
"name": "pathfinding_algorithm",
|
||||
"setter": "set_pathfinding_algorithm",
|
||||
"getter": "get_pathfinding_algorithm"
|
||||
},
|
||||
{
|
||||
"type": "int",
|
||||
"name": "path_postprocessing",
|
||||
"setter": "set_path_postprocessing",
|
||||
"getter": "get_path_postprocessing"
|
||||
},
|
||||
{
|
||||
"type": "int",
|
||||
"name": "path_metadata_flags",
|
||||
@@ -137952,6 +138115,17 @@
|
||||
"is_virtual": false,
|
||||
"hash": 3218959716
|
||||
},
|
||||
{
|
||||
"name": "is_node_ready",
|
||||
"is_const": true,
|
||||
"is_vararg": false,
|
||||
"is_static": false,
|
||||
"is_virtual": false,
|
||||
"hash": 36873697,
|
||||
"return_value": {
|
||||
"type": "bool"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "set_multiplayer_authority",
|
||||
"is_const": false,
|
||||
@@ -180951,6 +181125,27 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "sampler_is_format_supported_for_filter",
|
||||
"is_const": true,
|
||||
"is_vararg": false,
|
||||
"is_static": false,
|
||||
"is_virtual": false,
|
||||
"hash": 2247922238,
|
||||
"return_value": {
|
||||
"type": "bool"
|
||||
},
|
||||
"arguments": [
|
||||
{
|
||||
"name": "format",
|
||||
"type": "enum::RenderingDevice.DataFormat"
|
||||
},
|
||||
{
|
||||
"name": "sampler_filter",
|
||||
"type": "enum::RenderingDevice.SamplerFilter"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "vertex_buffer_create",
|
||||
"is_const": false,
|
||||
@@ -189075,6 +189270,23 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "viewport_get_render_target",
|
||||
"is_const": true,
|
||||
"is_vararg": false,
|
||||
"is_static": false,
|
||||
"is_virtual": false,
|
||||
"hash": 3814569979,
|
||||
"return_value": {
|
||||
"type": "RID"
|
||||
},
|
||||
"arguments": [
|
||||
{
|
||||
"name": "viewport",
|
||||
"type": "RID"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "viewport_get_texture",
|
||||
"is_const": true,
|
||||
@@ -225051,6 +225263,10 @@
|
||||
{
|
||||
"name": "GRAPHEME_IS_SAFE_TO_INSERT_TATWEEL",
|
||||
"value": 2048
|
||||
},
|
||||
{
|
||||
"name": "GRAPHEME_IS_EMBEDDED_OBJECT",
|
||||
"value": 4096
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user