Fixed material exporting NPE when the additionalRenderState is null

cleanup_build_scripts
Nehon 9 years ago
parent ef35af958b
commit 107123820b
  1. 2
      jme3-plugins/src/main/java/com/jme3/material/plugin/export/material/J3MRootOutputCapsule.java

@ -91,7 +91,9 @@ public class J3MRootOutputCapsule extends J3MOutputCapsule {
@Override @Override
public void write(Savable object, String name, Savable defVal) throws IOException { public void write(Savable object, String name, Savable defVal) throws IOException {
if(object != null && !object.equals(defVal)) {
object.write(exporter); object.write(exporter);
} }
}
} }

Loading…
Cancel
Save