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.
...
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.
...
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!!!
...
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() + "...
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...
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...