hi
i’ve seen your project (when there was webstart), what I want do is the same, but I started from the physic (only 2d) and network layer. I’m very interessed to your code, but i can’t find any repo link
ah, for your native problem, here some code that will autoload your native (just change the relative path according your library location):
static {
System.out.println(System.getProperty("java.library.path"));
System.out.println("Loading native library from: " + new File(new File(System.getProperty("user.dir"), "lib" + File.separator + "lwjgl2.8.1" + File.separator + "native"), LWJGLUtil.getPlatformName()).getAbsolutePath());
System.setProperty("org.lwjgl.librarypath", new File(new File(System.getProperty("user.dir"), "lib" + File.separator + "lwjgl2.8.1" + File.separator + "native"), LWJGLUtil.getPlatformName()).getAbsolutePath());
String jinput = System.getProperty("user.dir").toString()+ File.separator+"lib" + File.separator + "dist";
System.out.println("Loading jinput native library from: " + jinput);
System.setProperty("net.java.games.input.librarypath", jinput);
}