XJ vertex type 2 is now correctly parsed.

This commit is contained in:
Daan Vanden Bosch 2020-10-01 18:13:24 +02:00
parent bd20d96582
commit b48c06181a

View File

@ -93,6 +93,9 @@ function parse_vertex_info_table(cursor: Cursor, vertex_info_table_offset: numbe
let uv: Vec2 | undefined;
switch (vertex_type) {
case 2:
normal = cursor.vec3_f32();
break;
case 3:
normal = cursor.vec3_f32();
uv = cursor.vec2_f32();