@janine Thank you for your reply. Would it be possible to email this data instead of making public?
There’s no draco compression, the 3d tile is created manually and has a tileset.json, a subtree.json, and all the glb for all lods and all parts of each lod (it’s essentially a hierarchical lod using implicit tiling). This is the folder i upload to Ion (or load locally).
The mesh renders fine in both Ion and Unreal Engine, it’s just the UVs on everything other than the lowest lod (i.e. everything that’s split into more than one mesh) that seem to be broken. Unfortunately it’s not trivial to verify with Ion as a test because as it stands, the tile itself doesn’t have any textures. In both Ion and Unreal it just displays as black by default until a material is added, making it difficult to verify if the UVs are correct or not in Ion.
@Marco13 all glbs show up as green in the glTF validator and there’s no errors reported by the 3d tileset validator either. Here’s an example of the validator for one of the glbs:
{
"uri": "0.glb",
"mimeType": "model/gltf-binary",
"validatorVersion": "2.0.0-dev.3.10",
"validatedAt": "2025-03-11T15:44:17.869Z",
"issues": {
"numErrors": 0,
"numWarnings": 0,
"numInfos": 2,
"numHints": 0,
"messages": [
{
"code": "UNUSED_MESH_TANGENT",
"message": "Tangents are not used because the material has no normal texture.",
"severity": 2,
"pointer": "/meshes/0/primitives/0/attributes/TANGENT"
},
{
"code": "UNUSED_OBJECT",
"message": "This object may be unused.",
"severity": 2,
"pointer": "/meshes/0/primitives/0/attributes/TEXCOORD_0"
}
],
"truncated": false
},
"info": {
"version": "2.0",
"generator": "Houdini GLTF 2.0 Exporter",
"resources": [
{
"pointer": "/buffers/0",
"mimeType": "application/gltf-buffer",
"storage": "glb",
"byteLength": 357164
}
],
"animationCount": 0,
"materialCount": 0,
"hasMorphTargets": false,
"hasSkins": false,
"hasTextures": false,
"hasDefaultScene": true,
"drawCallCount": 1,
"totalVertexCount": 5169,
"totalTriangleCount": 7837,
"maxUVs": 1,
"maxInfluences": 0,
"maxAttributes": 5
}
}
I assume the two infos shouldn’t cause any issues.
Please note, if I just import this glb as a static mesh into Unreal, it shows the UVs I expect. It only seems to render with bad UVs when loaded and rendered as part of a 3d tile.
Since I can reproduce this when loading the 3d tile from a local URL as well, we can likely safely assume it’s not caused in any way by Ion anymore, which means this thread is probably in the wrong subforum now. Apologies.