mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
XJ vertex type 2 is now correctly parsed.
This commit is contained in:
parent
bd20d96582
commit
b48c06181a
@ -93,6 +93,9 @@ function parse_vertex_info_table(cursor: Cursor, vertex_info_table_offset: numbe
|
|||||||
let uv: Vec2 | undefined;
|
let uv: Vec2 | undefined;
|
||||||
|
|
||||||
switch (vertex_type) {
|
switch (vertex_type) {
|
||||||
|
case 2:
|
||||||
|
normal = cursor.vec3_f32();
|
||||||
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
normal = cursor.vec3_f32();
|
normal = cursor.vec3_f32();
|
||||||
uv = cursor.vec2_f32();
|
uv = cursor.vec2_f32();
|
||||||
|
Loading…
Reference in New Issue
Block a user