Skip to content

Un-deprecation of 3DTILES_content_gltf results in 'extensionsUsed', but not found warning #349

@bjornblissing

Description

@bjornblissing

The 3DTILES_content_gltf extension have been un-deprecated in 3D Tiles 1.1, per: CesiumGS/3d-tiles#810

According to my interpretation this would make the following tileset valid.

{
  "asset" : {
    "version" : "1.1"
  },
  "extensionsUsed": [
    "3DTILES_content_gltf"
  ],
  "geometricError" : 2.0,
  "root" : {
    "refine": "REPLACE",
    "boundingVolume" : {
      "box" : [ 0.5, 0.5, 0.5, 0.5, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5 ]
    },
    "geometricError" : 1.0,
    "content": {
      "uri": "tiles/glTF/Triangle/Triangle.gltf"
    }
  }
}

However, it currently results in the following output:

Validation result:

{
  "date": "2025-09-01T06:56:36.129Z",
  "numErrors": 0,
  "numWarnings": 1,
  "numInfos": 0,
  "issues": [
    {
      "type": "EXTENSION_USED_BUT_NOT_FOUND",
      "path": "/extensionsUsed",
      "message": "The extension '3DTILES_content_gltf' was declared in 'extensionsUsed', but not found",
      "severity": "WARNING"
    }
  ]
}

One could argue that this tileset definition would be redundant in 3D Tiles 1.1 since glTF content is part of the core behavior and no glTF extensions are specified. However, I see nothing in the current spec if the 3DTILES_content_gltf which states that this is formally incorrect.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions