Reputation: 11
Today I decided to start developing a 3D game , I googled and found JMonkey. I installed it and it successfully installed but when run, I can't create a project rather it is continuously showing this two message in message box.
i am using DELL vostro 1014 and no any extra graphics card.
Upvotes: 1
Views: 534
Reputation: 1618
That usually happens if you are trying to run a fullscreen mode that your computer does not support.
To find which modes are supported, do this:
GraphicsDevice device =
GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
DisplayMode[] modes = device.getDisplayModes();
Upvotes: 2