I am trying to build a small applet that provides some 3d functionality into a website, and i have selected Ardor3D as it seems to tick the boxes. I have just started going with Java, and everything I have learnt so far has been from the examples files which has been enough to this point. The program is distributed by a JNLP file, that downloads the classes and defines how it starts, but I was wondering how to run it as an applet, so the 3d image output would be displayed in its rectangle at its position in a web browser window?
Thank You
Ardor3D has examples of running as an applet. Your game code will be the same as when running as a standalone app, but you extend an applet class instead. See for example the LwjglBoxApplet.