-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfxm.ksy
79 lines (63 loc) · 1.12 KB
/
fxm.ksy
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
67
68
69
70
71
72
73
74
75
76
77
78
79
meta:
id: fxm
endian: le
application: Nosferatu The wrath of Malachi
file-extension: fxm
seq:
- id: unknown0
size: 44
- id: submesh_count
type: u4
- id: submeshes
type: submesh
repeat: expr
repeat-expr: submesh_count
types:
submesh:
seq:
- id: texture_name_length
type: u4
- id: texture_name
type: str
size: texture_name_length
encoding: ASCII
- id: unknown1
size: 24
- id: face_count
type: u4
- id: vertex_count
type: u4
- id: faces
type: face
repeat: expr
repeat-expr: face_count
- id: vertices
type: vertex
repeat: expr
repeat-expr: vertex_count
face:
seq:
- id: vi0
type: u2
- id: vi1
type: u2
- id: vi2
type: u2
vertex:
seq:
- id: x
type: f4
- id: y
type: f4
- id: z
type: f4
- id: vn1
type: f4
- id: vn2
type: f4
- id: vn3
type: f4
- id: u
type: f4
- id: v
type: f4