jmonkeyengine

In java JMonkeyEngine, public GameSettings getNewSettings()? How do I fill it out?

I'm trying to change a BaseGame to a FixedFrameRateGame, and It's saying I need a public GameSettings getNewSettings() method. Now I tried filling out like this: public GameSettings getNewSettings(){ return null; } it gives me a nullpointerexception when I try to run it. ...

Anaglyph 3D rendering with JMonkeyEngine

How to do an Anaglyph 3D rendering with JMonkeyEngine ? I tested the StereoRenderPass class : http://www.jmonkeyengine.com/forum/index.php?topic=7168.30 but it makes error when compiling. ...

Can i use jmonkeyengine on android?

Hi, i', trying to make a simple 3d game for android, and i want to use jmonkeyengine, Can i do this? How can i do it? Someboy can show me an example? thanks!!! ...

In JMonkeyEngine, how can I update Text in HUDs more efficiently?

I'm trying to create a HUD that basically displays 'debugging' information. One of these is the location of a the camera. Whenever there's a change in cam.getLocation(), I would call an updateHUD. Snippet of this is below: String s8 = "Cam Coordinate: (" + cam_location.getX() + ", " + cam_location.getY() + ", " + cam_location.getZ() + "...

Something similar to jMonkey Engine for C#

I prefer C# as a language over Java, but I have been unable to find anything similar to the jMonkey Engine for Java. I want the feature of just being able to simply add blocks (called Box in jMonkey Engine) to my world instead of loading models. Maybe I am just missing something, but I haven't found anything similar in any of the C# th...

Suitable platform for a 2D simulator using java

Hi, I have to do my final year project and I'm planning to use a visual simulator to simulate it. So I have to create a basic simulator and the program would be run in java. But I have a problem as to what to use to create the simulator. Should I use jmonkey or java2D or java 3D. What I would want is a basic 2d simulator. Please help me...