codex
March 20, 2021, 3:13pm
1
I’ve downloaded lemur-1.14.0-sources.jar
java archive off GitHub
This is the first time I’ve done something like this, and I’m not sure what to do now.
Was I supposed to download some other file as well?
What do I do with the file now that I have it?
How do I do I implement Lemur stuff into my program?
And finally, where can I find some coding tutorials on Lemur?
1 Like
Pavl_G
March 20, 2021, 3:35pm
2
I am using the JMonkey Engine for the first time yesterday. And trying to use LemurGUI. I am trying to run the code given here:
When trying to run the project, I get this errors:
EVERE: Uncaught exception thrown in Thread[jME3 Main,5,main]
java.lang.NoClassDefFoundError: com/google/common/io/Resources
at com.simsilica.lemur.GuiGlobals.logBuildInfo(GuiGlobals.java:223)
at com.simsilica.lemur.GuiGlobals.setInstance(GuiGlobals.java:131)
at com.simsilica.lemur.GuiGlobals.initialize(GuiGlobals…
This would be applied if it’s ANT if you are using jar files , otherwise gradle dependencies are found on Lemur git.
codex
March 20, 2021, 3:43pm
3
So I need to also download Guava, slf4j, and Groovy?
1 Like
Pavl_G
March 20, 2021, 5:38pm
5
Since , Lemur code uses classes of guava (they are google core libraries for java , ie google java utilities), Groovy for styling , slf4j then you must add them as dependencies or jar files so that their code would be accessible via Lemur.
Notice : if you donot add them , you will get java.lang.UnSatisfiedLinkErrorException
or java.lang.ClassNotFoundException
or java.lang.NoClassDefFoundError
pspeed
March 20, 2021, 6:27pm
6
Edit: and some examples here:
And some actual game/tools/etc. examples all over the place here:
Complicated UI example here:
2 Likes