Normand Briere
2019-08-26 6266c8a4b2485b29a7d5bcb217460d7aad3e1c4a
cTexture.java
....@@ -1,12 +1,5 @@
1
-/*
2
- * To change this template, choose Tools | Templates
3
- * and open the template in the editor.
4
- */
1
+import java.awt.image.BufferedImage;
52
6
-/**
7
- *
8
- * @author nbriere
9
- */
103 public class cTexture implements java.io.Serializable
114 {
125 static final long serialVersionUID = 8278178842384985286L;
....@@ -38,6 +31,13 @@
3831 }
3932
4033 String name;
41
- byte[] pigmentstream;
42
- byte[] bumpstream;
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;
4343 }