Hi,
using the Cesium World Terrain, we can request vertexNormals:
const viewer1 = new Cesium.Viewer('cesiumContainer', {
terrainProvider : Cesium.createWorldTerrain({
requestWaterMask : true,
requestVertexNormals : true
});
});
The same if I use the CesiumTerrainProvider
// Create Arctic DEM terrain with normals.
const viewer = new Cesium.Viewer('cesiumContainer', {
terrainProvider : new Cesium.CesiumTerrainProvider({
url : Cesium.IonResource.fromAssetId(3956),
requestVertexNormals : true
})
});
I have generated a terraindb (quantized mesh) with Cesium Terrain Tiler - but the terrainDb doesn’t have vertexNormals.
In which way do I have to generate a terrain, that I can request vertex Normals ?
Rüdiger