Normand Briere
2019-08-17 5892f05411c3d4dce2d8a59e0966dc2e1843a971
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 }