Can't see any model inside my bounding box

Hello,

I’ve recently started working on a Resium project(Cesium for react). And I’ve been trying to make 3DTiles work. My 3D tiles json looks like this:
{
“asset”: {
“version”: “1.0”
},
“properties”: {
“height”: {
“minimum”: 0.0,
“maximum”: 240.0
}
},
“type”: “3DTILES”,
“root”: {
“children”: [
{
“geometricError”: 8.0,
“refine”: “REPLACE”,
“content”: {
“uri”:“/src/assets/geoJson/deciduous_tree.glb”
},
“boundingVolume”: {
“region”: [
0.3285677492668474,
0.8476523544973099,
0.3285852025593673,
0.84766980778983,
0,
20
]
}
}
],
“type”: “3DTILES”,
“boundingVolume”: {
“region”: [
0.32854027224992954,
0.8476301118987487,
0.3286117609360912,
0.8477016005849105,
0,
100
]
},
“geometricError”: 16.0
},
“geometricError”: 16.0
}

When I run it in debug mode the root boundingBox is in the correct spot and so is the child boundingBox, but I cant see the glb model for some reason as much as I try.

image

Any ide why this may be ?
Thanks in advance !