Using the latest version of Spine my animations are not pulling through to AppGameKit anymore. Can anyone confirm or deny using the attached example?
The file contains an animation called "Idle" which is not found by AppGameKit using the following code:
img = LoadImage("Zombie1.png")
SetImageMinFilter(img, 0)
SetImageMagFilter(img, 0)
skl = LoadSkeleton2DFromSpineFile("Zombie1.json", 1.0, img, 0)
SetSkeleton2DPosition(skl, 100, 100)
PlaySkeleton2DAnimation(skl, "Idle", 0.0, 1, 0.0)
I haven't done much in AppGameKit recently so it could be a brain fart but the animation shows in the json file and I can't see any obvious issues...
Using AppGameKit V2 Tier 1