Normand Briere
2019-08-26 6266c8a4b2485b29a7d5bcb217460d7aad3e1c4a
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 }