For some reason the J3MLoader never loads the material name. Not that it's really important, but since we have the name field... let's read it...

cleanup_build_scripts
Nehon 9 years ago
parent f83c7006f0
commit cb56fd88eb
  1. 1
      jme3-core/src/plugins/java/com/jme3/material/plugins/J3MLoader.java

@ -637,6 +637,7 @@ public class J3MLoader implements AssetLoader {
material = new Material(def);
material.setKey(key);
material.setName(split[0].trim());
// material.setAssetName(fileName);
}else if (split.length == 1){
if (extending){

Loading…
Cancel
Save