Ali-RS

Results 157 comments of Ali-RS

Glad it solved the issue. Does it detect joystick correctly when plugged in?

Maybe it is intended to generate the terrain heightmap tiles via external tools (e.g. Gimp, Blender,...) and load them in JME. (See:https://hub.jmonkeyengine.org/t/terraingridtileloadertest-confusion/26569/6) Btw, I also found this old SDK plugin...

Is this only an issue with hardware skinning?

What about adding them to the [User Made Utilities](https://wiki.jmonkeyengine.org/docs/3.4/contributions/contributions.html) page instead of making a new page?

The problem is that you have parented a geometry to another geometry in Blender. In JME you can only parent a geometry to a node. ![](https://i.imgur.com/eKgPf0l.png) In Blender, select `FactionColor.Cannon`...

Hmm... I see what you mean. I do not know if gltf allows it or not.

>There's also a WARNING: JmeDialogsFactory implementation not found. Both for the first exception and the second. Presumably jme want's to show the exceptions in a dialog and fails. This warning...

I think the `waitFor` flag has no effect on mac https://github.com/jMonkeyEngine/jmonkeyengine/blob/a0c2c5ee74f87f588e539531a5c535b77b9ea4b3/jme3-lwjgl3/src/main/java/com/jme3/system/lwjgl/LwjglWindow.java#L533-L555

In the below link, you can find out why direct byte buffers allocated via JNI `(env->NewDirectByteBuffer())` are not cleaned when GCed but the ones created with `ByteBuffer.allocateDirect()` are cleaned with...