Beispiel #1
0
 public IndirectTexScale(IndirectScale s, IndirectScale t)
 {
     ScaleS = s;
     ScaleT = t;
 }
Beispiel #2
0
 public IndirectTexScale(EndianBinaryReader reader)
 {
     ScaleS = (IndirectScale)reader.ReadByte();
     ScaleT = (IndirectScale)reader.ReadByte();
     reader.SkipInt16();
 }
Beispiel #3
0
 public IndirectTexScale()
 {
     ScaleS = IndirectScale.ITS_1;
     ScaleT = IndirectScale.ITS_1;
 }