summaryrefslogtreecommitdiff
path: root/NW4RTools/Models/TextureInfo.cs
diff options
context:
space:
mode:
authorTreeki <treeki@gmail.com>2011-02-10 05:03:53 +0100
committerTreeki <treeki@gmail.com>2011-02-10 05:03:53 +0100
commit58dead7b909861732011325f5d4844eae21a9bc2 (patch)
tree1ae61678c8df37c245eabdc443a275fccaa53516 /NW4RTools/Models/TextureInfo.cs
parent58f30cf003a6b7b3686f70fa0539aa45d126b457 (diff)
downloadnw4rtools-58dead7b909861732011325f5d4844eae21a9bc2.tar.gz
nw4rtools-58dead7b909861732011325f5d4844eae21a9bc2.zip
more stuff. added shapes and texture/material pairs and refactored Logger a bit
Diffstat (limited to 'NW4RTools/Models/TextureInfo.cs')
-rw-r--r--NW4RTools/Models/TextureInfo.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/NW4RTools/Models/TextureInfo.cs b/NW4RTools/Models/TextureInfo.cs
new file mode 100644
index 0000000..c8bc9a4
--- /dev/null
+++ b/NW4RTools/Models/TextureInfo.cs
@@ -0,0 +1,21 @@
+using System;
+
+namespace NW4RTools.Models {
+ public class TextureInfo {
+ public string TextureName, PaletteName;
+ public UInt32 TexMapID, TlutID, WrapS, WrapT, MinFilt, MagFilt;
+ public float LODBias;
+ public UInt32 MaxAniso;
+ public bool BiasClamp, DoEdgeLOD;
+
+ public TextureInfo() {
+ }
+ }
+
+
+ public class TexMatPairing {
+ public TextureInfo Texture;
+ public Material Material;
+ }
+}
+