6
votes
4answers
3k views

Looking for JMonkeyEngine tutorials and documentation

I'm looking for tutorials and documentation for JMonkeyEngine, beside the material on the official website. Any clue?
5
votes
1answer
792 views

Method of terrain in a 3d RPG

I am working on a RPG using the JMonkey engine. While I was conceptualizing the map, I realized I would have a problem with the terrain. My problem is this: I want to have a click to move interface, ...
4
votes
1answer
1k views

How to invert background pixel's color

I'm writing a game and map editor using Java and jMonkeyEngine. In the map editor, I've got a brush done by wireframed sphere. My problem is: I want to make it visible everywhere, so I want to invert ...
2
votes
2answers
227 views

Convenience of mySQL over xml

Currently I use XML to store specific information to correctly load a few things such as a list of specfied characters, scenes and music, Once more I use JAXB in combination with standard ...
2
votes
2answers
343 views

jMonkey Quest Database

I am building a game in jMonkey (Java) and I have so far only used default quest text. But now I need to start populating a lot of quests with text. My design requires A LOT of quests texts. What is ...
1
vote
0answers
130 views

JMonkey - Create health bar?

How can I create a health bar in JMonkey? Is there some documentation that can help? I am working on a game, specifically “Battleship”, using the JMonkey Engine (JME3). I want to add health bars on ...
1
vote
1answer
241 views

How do I export my Blender model to OGRE XML format for jMonkeyEngine 3?

I'm an amateur software engineer with several simple 2D-game projects under my belt. I'v recently turned my attention towards creating a basic 3D game, nothing too fancy, just to get a grip on things. ...
1
vote
0answers
160 views

When attaching AI to a vehicle should I define all steps or try Line of Sight?

This problem is related to an intersection simulation I am building for university. I will try to make it as general as possible. I am trying to assign AI to a vehicle using the JMonkeyEngine ...
0
votes
3answers
732 views

How can I get rid of the diagonal wires in wireframe boxes?

I create a box with a material and set that material to be wire framed. Box b1 = new Box(new Vector3f(1.0f, -2.0f, 1.0f), 1.0f, 1.0f, 1.0f); Geometry geom1 = new Geometry("Box", b1); Material mat1 = ...
0
votes
1answer
53 views

Endless terrain in jMonkey using TerrainGrid fails to render

I have started to learn game development using jMonkey engine. I am able to create single tile of terrain using TerrainQuad but as the next step I'm stuck at making it infinite. I have gone through ...
0
votes
0answers
78 views

java find intersection of a block with a surface in 3D space

This question is a copy of the following question on SO. I posted it here after a suggestion from guys at SO. Hi, At the moment we have a bunch of 3d blocks (think cubes) that are imported in a ...
-3
votes
0answers
47 views

How to make my jme3 character walk over slopes and stairs instead of sliding? [closed]

In jme3 there was a class called CharacterControl which could be used to set the max slope with the method setMaxSlope for setting so that the character could walk stairs and uneven surfaces without ...
-4
votes
1answer
410 views

How to make NPC AI for my jme3 ninja game

My scene has a main character who is a ninja and an enemy which is a goblin and one monster but the monster has no animation so we can wait with him: How can I make the goblin actually move instead ...