From 1b97c2561c6365a679279ac54e622e88205aba16 Mon Sep 17 00:00:00 2001 From: Nathan Sweet Date: Tue, 16 Aug 2022 23:44:45 +0200 Subject: [PATCH 1/2] Update README.md --- spine-sdl/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spine-sdl/README.md b/spine-sdl/README.md index 5f5292bc3..565a90ac5 100644 --- a/spine-sdl/README.md +++ b/spine-sdl/README.md @@ -2,7 +2,7 @@ The spine-sdl runtime provides functionality to load, manipulate and render [Spine](http://esotericsoftware.com) skeletal animation data using [SDL](https://www.libsdl.org/). spine-sdl is based on [spine-c](../../spine-c) and [spine-cpp](../spine-cpp), depending on whether you want to use a C or C++ implementation. -# See the [spine-godot documentation](http://esotericsoftware.com/spine-sdl) for in-depth information +# See the [spine-sdl documentation](http://esotericsoftware.com/spine-sdl) for in-depth information ## Licensing From 465879f180119d4aeaf4849cc035f7ef88606f20 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Wed, 17 Aug 2022 19:06:17 +0200 Subject: [PATCH 2/2] [godot] Closes #2132, errornous connect call. --- spine-godot/spine_godot/SpineEditorPlugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spine-godot/spine_godot/SpineEditorPlugin.cpp b/spine-godot/spine_godot/SpineEditorPlugin.cpp index e367b37f2..c71424d20 100644 --- a/spine-godot/spine_godot/SpineEditorPlugin.cpp +++ b/spine-godot/spine_godot/SpineEditorPlugin.cpp @@ -217,7 +217,7 @@ void SpineEditorPropertyAnimationMixes::update_property() { hbox->add_child(delete_button); delete_button->set_text("Remove"); #if VERSION_MAJOR > 3 - delete_button->connect("pressed", callable_mp(this, &SpineEditorPropertyAnimationMixes::delete_mix), i); + delete_button->connect("pressed", callable_mp(this, &SpineEditorPropertyAnimationMixes::delete_mix).bind(varray(i))); #else delete_button->connect("pressed", this, "delete_mix", varray(i)); #endif