*: move //hexpat to //datadoc/imhex

This commit moves the existing files to better fitting places. It is part of a documentation rework I'm doing.
This commit is contained in:
Lily Tsuru 2025-01-20 00:03:19 -05:00
parent 035f6a040f
commit 2a2d7073a3
4 changed files with 2 additions and 1 deletions

View file

@ -85,7 +85,8 @@ for i in range(0, mesh_count):
# Add it and set everything up, add verts, faces,
# and normals/UV if provided
mesh = mrp.create_mesh(mtlFilename)
mesh.set_vertices(verts[1], tp="Float")
# We set fm="XZY" cause Europa uses a Y-up coordinate system.
mesh.set_vertices(verts[1], fm="XZY", tp="Float")
mesh.set_faces(faces[1], tp="Short")
if normals[0] != 0:
mesh.set_normals(normals[1], tp="Float")