summaryrefslogtreecommitdiff
path: root/NW4RTools/Models/Animation/TextureSRTAnim.cs
blob: d033f5fa76ce852c052966400bae0b0921d7a306 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
namespace NW4RTools.Models.Animation {
	public class TextureSRTAnim {
		public Model.TexMatrixModeType MatrixMode;
		public bool Loop;

		public UInt16 FrameCount;

		public ResDict<Node> Nodes;

		public struct Element {
			public bool Exists;

			public KeyframeAnim ScaleS, ScaleT, Rotate, TransS, TransT;
		}

		public class Node {
			public Element[] Textures;
			public Element[] IndirectTextures;
		}

		public TextureSRTAnim() {
		}
	}
}