Normand Briere
2019-08-15 7f97054d681518416a4ee1c1548ad42cfb489a8f
cTexture.java
....@@ -31,6 +31,13 @@
3131 }
3232
3333 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;
3643 }