Fixed material exporting NPE when the additionalRenderState is null

This commit is contained in:
Nehon 2016-03-17 14:02:12 +01:00
parent ef35af958b
commit 107123820b

View File

@ -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 {
object.write(exporter); if(object != null && !object.equals(defVal)) {
object.write(exporter);
}
} }
} }