首页 / 浏览问题 / 三维GIS / 问题详情
webgl设置三维模型透明度
39EXP 2018年09月30日

webGL加载三维数据,怎样设置模型透明度。我的代码如下:

var promise = scene.addS3MTilesLayerByScp(url,{name:dataName});
Cesium.when(promise,function(layer){
    var camera = scene.camera;
    camera.setView({
        destination : new Cesium.Cartesian3(111.925299785, 33.741228442, 8102242.4502545)
    });
    layer.visible = isShow;
}

1个回答

您好,可以直接设置对应的layer的style3D中的属性即可:layer[0].style3D.fillForeColor.alpha = 0.8;

可以参考在线范例:http://support.supermap.com.cn:8090/webgl/examples/editor.html#aftertreatment

1,695EXP 2018年09月30日
...