Wall materials

Is it possible to have a wall display an image in the material but have the image be opaque? I don’t want the user to look through the wall.

Thanks,

Keith

This looks like an oversight in the Entity API, I’ll try and fix it in the next release. One workaround you can try for now is to add the following line of code to the start of your application:

Cesium.Material._materialCache._materials.Image.translucent = false;

This will make all image materials default opaque instead of all translucent (which is happening right now). If that doesn’t work for you (because some of your image materials need to be translucent), I can probably provide an additional workaround that is slightly more involved. Let me know.

I submitted https://github.com/AnalyticalGraphicsInc/cesium/issues/2871 so we don’t forget about this.