I see only a black screen with the text Counts: nothing displaying.
if I use the option Export selected, I see the terrain but without textures.
public class Teste extends SimpleGame {
@Override
protected void simpleInitGame() {
URL u = Teste.class.getClassLoader().getResource("jmeteste1/imagens/modelos/cenario1.jme");
try {
Node fileJme = (Node) BinaryImporter.getInstance().load(u);
rootNode.attachChild(fileJme);
} catch (IOException ex) {
Logger.getLogger(Teste.class.getName()).log(Level.SEVERE, null, ex);
}
}
public static void main(String[] args) {
Teste app = new Teste();
app.setDialogBehaviour(AbstractGame.ALWAYS_SHOW_PROPS_DIALOG);
app.start();
}
}