From c2e32368b686575a342ba13138d407a211bdeb0d Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Fri, 10 Feb 2023 22:52:19 +0100 Subject: [PATCH 1/2] [godot] Fix Windows template executable names in GH action. --- .github/workflows/spine-godot-v4.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/spine-godot-v4.yml b/.github/workflows/spine-godot-v4.yml index 8627afcda..f842aa0d8 100644 --- a/.github/workflows/spine-godot-v4.yml +++ b/.github/workflows/spine-godot-v4.yml @@ -183,13 +183,13 @@ jobs: uses: actions/upload-artifact@v2 with: name: godot-template-windows-debug.zip - path: spine-godot/godot/bin/windows_debug_x86_64.exe.exe + path: spine-godot/godot/bin/windows_debug_x86_64.exe - name: Upload artifacts release uses: actions/upload-artifact@v2 with: name: godot-template-windows-release.zip - path: spine-godot/godot/bin/windows_debug_x86_64.exe.exe + path: spine-godot/godot/bin/windows_release_x86_64.exe godot-template-android: runs-on: ubuntu-20.04 From bc2a1af417f0e7ee15f8aeff3166ab68d5ff3c51 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Fri, 10 Feb 2023 23:02:42 +0100 Subject: [PATCH 2/2] [godot] Closes #2242, register SpineMesh2D. --- spine-godot/spine_godot/register_types.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/spine-godot/spine_godot/register_types.cpp b/spine-godot/spine_godot/register_types.cpp index 02fa2257b..c1bcd8ff0 100644 --- a/spine-godot/spine_godot/register_types.cpp +++ b/spine-godot/spine_godot/register_types.cpp @@ -93,6 +93,7 @@ void register_spine_godot_types() { GDREGISTER_CLASS(SpineSkeletonDataResource); GDREGISTER_CLASS(SpineAnimationMix); GDREGISTER_CLASS(SpineSprite); + GDREGISTER_CLASS(SpineMesh2D); GDREGISTER_CLASS(SpineSkeleton); GDREGISTER_CLASS(SpineAnimationState); GDREGISTER_CLASS(SpineAnimation);