You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//Create the Cesium viewer
var viewer = new Cesium.Viewer('cesiumContainer', {
skyBox : false,
skyAtmosphere: false,
contextOptions : {
webgl: {
alpha: true
}
}
});
//Set the background of the scene to transparent
viewer.scene.backgroundColor = Cesium.Color.TRANSPARENT;
//HDR needs to be disable for transparent backgrounds
viewer.scene.highDynamicRange = false;
The text was updated successfully, but these errors were encountered:
@bagnell could you look into this? It seems like it would be a quick fix.
Borrowing the Sandcastle example from @mramato in #2866 (comment)
The text was updated successfully, but these errors were encountered: