Hey Xith Team,
first of all I really appreciate your work on Xith3D an I am happy that there was so much effort during the last time.
I develop a little Diablo-Style Maze Game with Xith and have some problems with the switch to version 0.7 or 0.71.
Screens: Screen1 Screen2 (before the switch to 0.71)
The application works but all my Swing GUI windows are vanished.
Of course I properly changed the import to org.xith3d.ui.swingui.UIWindowManager and it compiled without any error.
To solve it I copied the old com.xith3d.userinterface.UIWindowManager structure into the xith3d.jar. Then I got a compile error “setUIWindowmanager: no such function found in com.xith3d.scenegraph.Canvas3D” error. I copied the old canvas3D.class to the xith3d.jar. Then everything compiled fine, but still no GUI.
Also the Xith3DGuiTest.bat Demo doesn’t work anymore.
As you can see I put quite some effort in creating my GUI and I would really appreciate if there was a way to implement the Swing GUI again. I know it is not maintained anymore, but it is the only GUI at the moment and it worked well for me.
Because I switched from C to Java and this is my first project, I am not confident to change the sourcecode on my own.
`UIWindowManager windowMgr;
windowMgr = new UIWindowManager(canvas);
SwingFPSCounter counter = new SwingFPSCounter(windowMgr, canvas, WindowWidth-70, 0, false);`
The SwingFPSCounter class is made out of the Swing GUI demo class. So if someone could make the demo work again it would really help.
Thanks!