I added and attached the following c# script to a SpineSprite node, but got an error: error CS0246: The type or namespace name 'SpineSprite' could not be found)
using Godot;
using System;
public partial class Lizard : SpineSprite
{
}
I added and attached the following c# script to a SpineSprite node, but got an error: error CS0246: The type or namespace name 'SpineSprite' could not be found)
using Godot;
using System;
public partial class Lizard : SpineSprite
{
}
It seem to run the wrong nuget package,
You can try to reinstall the nuget package
I encountered the same problem, RavenMrk helped me solve it just now. You need to delete the four folders that start with godot in the "C:\Users\UerName.nuget\packages" and then restart godot and IDE.
Please follow the instructions in our official spine-godot Runtimes guide. Everything else will lead to errors on your end, and questions directed at us which we can't answer, because you are not using the setup we documented.
You can find the info here:
https://esotericsoftware.com/spine-godot#C%23-Project-Setup
You must follow this exactly, or else you will pull in the official Godot C# .dlls, which do not contain the Spine APIs.
I've justed ported the GDScript example-v4
Godot project to Godot + C#. You can see the full setup there (and see how spine-godot is used with C#):
https://github.com/EsotericSoftware/spine-runtimes/tree/4.1/spine-godot/example-v4-csharp
PORRIDGE RavenMRK Thanks for your reply, but this doesn't work. I can successfully implement it by following the steps in the official documentation.
I'm confused. You say it doesn't work. Then you say you were able to successfully implement it by following the documentation I linked to?
I guess Methionine means reinstalling the nuget package and deleting some folders didn't work, but the following official docs worked.