forked from Sparagas/Silent-Hill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vector.bt
66 lines (57 loc) · 813 Bytes
/
vector.bt
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
//------------------------------------------------
//--- 010 Editor v14.0 Binary Template
//
// File:
// Authors:
// Version:
// Purpose:
// Category:
// File Mask:
// ID Bytes:
// History:
//------------------------------------------------
struct f32x4_geo {
float x;
float y;
float z;
float w;
};
struct f32x3_geo {
float x;
float y;
float z;
};
struct f32x2_geo {
float x;
float y;
};
struct f32x4_tex {
float s;
float t;
float p;
float q;
};
struct f32x3_tex {
float s;
float t;
float p;
};
struct f32x2_tex {
float s;
float t;
};
struct f32x4_clr {
float r;
float g;
float b;
float a;
};
struct f32x3_clr {
float r;
float g;
float b;
};
struct f32x2_clr {
float r;
float g;
};