Normand Briere
2019-08-16 83d0c2fa0bd2e96448f776144e1a89cdb1bb6998
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 }