cTexture.java
.. .. @@ -31,6 +31,13 @@ 31 31 } 32 32 33 33 String name; 34 - BufferedImage pigmenttexture;35 - BufferedImage bumptexture;34 +35 + transient String pigment;36 + transient String bump;37 +38 + int pw, ph;39 + byte[] pigmentdata;40 +41 + int bw, bh;42 + byte[] bumpdata;36 43 }