I am having a similar issue reported here (
https://github.com/AnalyticalGraphicsInc/cesium-ion-community/issues/73) where the dev wanted to brighten some tilesets. The advice given was to modify the lightColor attribute. This particular attribute is not well documented, but I tried modifying the values similar to their example and I am seeing no effect.
tileset.lightColor = new Cesium.Cartesian3(3, 2.8, 2.4);
I have also tried creating a Cesium3DTileStyle to modify the colors to have max alpha, and that also has no effect.
tileset.style = new Cesium.Cesium3DTileStyle({ color: { evaluateColor : function(feature, result) {
if (feature && feature.color)
return new Cesium.Color(feature.color.red,feature.color.green,feature.color.blue,1);
else
return Cesium.Color.WHITE;
}
}});
Any guidance or other things I can try?
Thanks