I was using the latest stable build so thats probably why
What to do without .jar runtimes?
I think my head is starting to hurt...can someone maybe send me the jar? my attempts aren't working too well...
Here's the jar i'm using, hope it works for you!
Well thanky ou for that although I am getting an error when writing:
SkeletonData skeletonData = json.readSkeletonData(Gdx.files.internal("skeleton.json"));
Exception in thread "LWJGL Application" java.lang.NoSuchMethodError: com.badlogic.gdx.utils.OrderedMap.get(Ljava/lang/Object;Ljava/lang/ObjectLjava/lang/Object;
at com.esotericsoftware.spine.SkeletonJson.readAttachment(SkeletonJson.java:156)
at com.esotericsoftware.spine.SkeletonJson.readSkeletonData(SkeletonJson.java:132)
at com.reed.birdseye.GameScreen.<init>(GameScreen.java:61)
at com.reed.birdseye.BirdsEye.create(BirdsEye.java:11)
at com.badlogic.gdx.backends.lwjgl.LwjglApplication.mainLoop(LwjglApplication.java:144)
at com.badlogic.gdx.backends.lwjgl.LwjglApplication$1.run(LwjglApplication.java:131)
AL lib: ReleaseALC: 1 device not closed
This seems like libgdx but what in it...?
Sorry you are having trouble, but it looks like an outdated libgdx still.
wow, I thought I did that already...But anyhow it works now. Thank you very much for the help Nate! Do you have any idea if this nightly build got rid of the old fps cap? things seem to be going much faster now....
I see that they removed the cpuSync setting, so I think they set it to false, that's why you are seeing everything faster (or smoother).
Yeah, vsync on and cpu sleep off is the default.
erm sorry if this sounds noobish but how do I set it back on?
When you create LwjglApplication pass it an LwjglApplicationConfiguration with foregroundFPS=60. I just made this the default though, so you can get the nightlies again tomorrow and it'll use 61 as the default.
ok awesome, any ideas why this works great when the game window is selected but if i click on another window the fps gets bumped up to the max ammount (aournd 1,000fps)
ohhh wait just took a look at the source code and saw I had to edit background fps too.
Nate लिखाIf Java, you can import spine-libgdx into Eclipse. By default it depends on gdx-backend-lwjgl. To get this, grab libgdx from github and import into Eclipse. Otherwise you can get JARs from the latest libgdx nightly. You can lso copy spine-libgdx source into your project, but you still need the libgdx JARs.
I have Spine runtimes cloned and libgdx one added to eclipse and to main project as dependency. Desktop starter works fine, but android version crashed with following error:
[2013-04-08 16:44:59 - Dex Loader] Unable to execute dex: Multiple dex files define Lcom/badlogic/gdx/Application$ApplicationType;
[2013-04-08 16:44:59 - ProjectRogue-android] Conversion to Dalvik format failed: Unable to execute dex: Multiple dex files define Lcom/badlogic/gdx/Application$ApplicationType;
My suspicion is that lwjgl is exported as well as android backend and it makes it break. Its unchecked in spine project export preferences. Any ideas?
Android projects only export what they have checked. They don't use transitive dependencies. Not sure why your project is broken.
Eh ive fixed it somehow. Checked out older version of android project, played with export checkboxes and it works now.