《Cesium 基础知识点》- Cesium.Color 的使用(小技巧)
程序员文章站
2022-05-27 16:25:57
...
一、颜色全透明
例如:设置球的基础色,默认颜色是 Cesium.Color.BLUE
// 方式一
viewer.scene.globe.baseColor = new Cesium.Color(0, 0, 0, 0);
// 方式二(推荐)
viewer.scene.globe.baseColor = Cesium.Color.TRANSPARENT;
二、颜色半透明
例如:设置球的地下色,默认是 Cesium.Color.BLACK
// 方式一
viewer.scene.globe.undergroundColor= new Cesium.Color(0, 0, 0, 0.5);
// 方式二(推荐)
viewer.scene.globe.undergroundColor= Cesium.Color.BLACK.withAlpha(0.5);
三、其它颜色
此处 查看 Cesium.Color