Skip to content

Commit

Permalink
[godot] Fixes #2371, crash on window resize
Browse files Browse the repository at this point in the history
This is due to a Godot 4.1.1 bug in combination with the latest MoltenVK release. See godotengine/godot#81219 (comment). We are hardcoding the SDK version for now, until the fix has been merged and released in Godot 4.1.x.
  • Loading branch information
badlogic committed Sep 20, 2023
1 parent b83ee23 commit 4f69cdd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions spine-godot/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"cmake.configureOnOpen": false,
"C_Cpp.intelliSenseEngine": "disabled",
}
"cmake.configureOnOpen": false,
"C_Cpp.intelliSenseEngine": "disabled",
"dotnet.defaultSolution": "disable"
}
2 changes: 1 addition & 1 deletion spine-godot/build/install-macos-vulkan-sdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ set -euo pipefail
IFS=$'\n\t'

# Download and install the Vulkan SDK.
curl -L "https://sdk.lunarg.com/sdk/download/latest/mac/vulkan-sdk.dmg" -o /tmp/vulkan-sdk.dmg
curl -L "https://sdk.lunarg.com/sdk/download/1.2.250/mac/vulkan-sdk.dmg" -o /tmp/vulkan-sdk.dmg
hdiutil attach /tmp/vulkan-sdk.dmg -mountpoint /Volumes/vulkan-sdk
/Volumes/vulkan-sdk/InstallVulkan.app/Contents/MacOS/InstallVulkan \
--accept-licenses --default-answer --confirm-command install
Expand Down

0 comments on commit 4f69cdd

Please sign in to comment.