[SOLVED] Does Lemur have a JDialog like feature?

In my game I’m getting back around to, I’ve been trying to have a popup for example if a connection to the server fails because someone tried to play online when they are offline.
Does Lemur have a JDialog like feature? I havn’t seen one yet but I want to make sure I have not missed anything
I ask because I would prefer to avoid having to embed the jME canvas in a Swing GUI just for something like this

f=new JFrame();  
    JOptionPane.showMessageDialog(f,"Hello, Welcome to Horsepower Racing!");  

Yes it does.

and

Demos can be found here:

2 Likes

Awesome, thanks!

Check out the Lemur demos in the Lemur project for example of popups of different modal varieties.

1 Like