Hi, I’m new here and I’m a beginner in JME, but I think that I found something wrong.
https://wiki.jmonkeyengine.org/legacy/doku.php/jme3:advanced:custom_meshes
Here, in Connecting the Dots we have:
[java]
int [] indexes = { 2,0,1, 1,3,2 };
[/java]
This way it generates pairs: correct triangle and a hole.
The correct version should be:
[java]
int [] indexes = { 2,0,1, 2,3,0 };
[/java]