Hi All,
I would like to apply verticalExaggeration to a 3dtileset serving terrain, while not applying it to a 3dTileset serving a point cloud.
The setting seems to be applied to both and messes up the location of the pointcloud as the globe is panned.
terrain is loaded with:
const terrainProvider = await Cesium.CesiumTerrainProvider.fromUrl(
resource, {
ClassificationType: 'TERRAIN'
}
);
point cloud is loaded with:
const cesium3dTileset = await Cesium.Cesium3DTileset.fromUrl(
resource,
{
ClassificationType: 'CESIUM_3D_TILE'
}
);
vertical exaggeration is set:
scene.verticalExaggeration = exaggeration
pointcloud positions with 0 exaggeration
pointcloud position with 2 exaggeration
Is there a way to exclude a 3d tileset from the scene exaggeration?
Thanks